survey-react 1.9.118 → 1.9.119
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/defaultV2.css +112 -39
- package/defaultV2.css.map +1 -1
- package/defaultV2.min.css +2 -2
- package/modern.css +1 -1
- package/modern.css.map +1 -1
- package/modern.min.css +1 -1
- package/package.json +1 -1
- package/survey.css +1 -1
- package/survey.css.map +1 -1
- package/survey.min.css +1 -1
- package/survey.react.d.ts +80 -19
- package/survey.react.js +430 -226
- package/survey.react.js.map +1 -1
- package/survey.react.min.js +3 -3
package/survey.react.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* surveyjs - Survey JavaScript library v1.9.
|
2
|
+
* surveyjs - Survey JavaScript library v1.9.119
|
3
3
|
* Copyright (c) 2015-2023 Devsoft Baltic OÜ - http://surveyjs.io/
|
4
4
|
* License: MIT (http://www.opensource.org/licenses/mit-license.php)
|
5
5
|
*/
|
@@ -2137,7 +2137,7 @@ var Base = /** @class */ (function () {
|
|
2137
2137
|
Base.prototype.resetPropertyValue = function (name) {
|
2138
2138
|
var locStr = this.localizableStrings ? this.localizableStrings[name] : undefined;
|
2139
2139
|
if (locStr) {
|
2140
|
-
locStr.
|
2140
|
+
locStr.clear();
|
2141
2141
|
}
|
2142
2142
|
else {
|
2143
2143
|
this.setPropertyValue(name, undefined);
|
@@ -3969,7 +3969,20 @@ var ProcessValue = /** @class */ (function () {
|
|
3969
3969
|
return res;
|
3970
3970
|
};
|
3971
3971
|
ProcessValue.prototype.getNonNestedObject = function (obj, text, createPath) {
|
3972
|
-
var
|
3972
|
+
var checkedKeys = new Array();
|
3973
|
+
var len = 0;
|
3974
|
+
var res = this.getNonNestedObjectCore(obj, text, createPath, checkedKeys);
|
3975
|
+
while (!res && len < checkedKeys.length) {
|
3976
|
+
len = checkedKeys.length;
|
3977
|
+
res = this.getNonNestedObjectCore(obj, text, createPath, checkedKeys);
|
3978
|
+
}
|
3979
|
+
return res;
|
3980
|
+
};
|
3981
|
+
ProcessValue.prototype.getNonNestedObjectCore = function (obj, text, createPath, checkedKeys) {
|
3982
|
+
var curName = this.getFirstPropertyName(text, obj, createPath, checkedKeys);
|
3983
|
+
if (!!curName) {
|
3984
|
+
checkedKeys.push(curName);
|
3985
|
+
}
|
3973
3986
|
var path = !!curName ? [curName] : null;
|
3974
3987
|
while (text != curName && !!obj) {
|
3975
3988
|
var isArray = text[0] == "[";
|
@@ -3992,7 +4005,7 @@ var ProcessValue = /** @class */ (function () {
|
|
3992
4005
|
if (!!text && text[0] == ".") {
|
3993
4006
|
text = text.substring(1);
|
3994
4007
|
}
|
3995
|
-
curName = this.getFirstPropertyName(text, obj, createPath);
|
4008
|
+
curName = this.getFirstPropertyName(text, obj, createPath, checkedKeys);
|
3996
4009
|
if (!!curName) {
|
3997
4010
|
path.push(curName);
|
3998
4011
|
}
|
@@ -4014,8 +4027,9 @@ var ProcessValue = /** @class */ (function () {
|
|
4014
4027
|
return null;
|
4015
4028
|
return { value: curValue[index], text: text, index: index };
|
4016
4029
|
};
|
4017
|
-
ProcessValue.prototype.getFirstPropertyName = function (name, obj, createProp) {
|
4030
|
+
ProcessValue.prototype.getFirstPropertyName = function (name, obj, createProp, checkedKeys) {
|
4018
4031
|
if (createProp === void 0) { createProp = false; }
|
4032
|
+
if (checkedKeys === void 0) { checkedKeys = undefined; }
|
4019
4033
|
if (!name)
|
4020
4034
|
return name;
|
4021
4035
|
if (!obj)
|
@@ -4026,6 +4040,8 @@ var ProcessValue = /** @class */ (function () {
|
|
4026
4040
|
var A = nameInLow[0];
|
4027
4041
|
var a = A.toUpperCase();
|
4028
4042
|
for (var key in obj) {
|
4043
|
+
if (Array.isArray(checkedKeys) && checkedKeys.indexOf(key) > -1)
|
4044
|
+
continue;
|
4029
4045
|
var first = key[0];
|
4030
4046
|
if (first === a || first === A) {
|
4031
4047
|
var keyName = key.toLowerCase();
|
@@ -5365,7 +5381,8 @@ var defaultV2Css = {
|
|
5365
5381
|
nested: "sd-element--nested sd-element--nested-with-borders",
|
5366
5382
|
invisible: "sd-element--invisible",
|
5367
5383
|
navigationButton: "",
|
5368
|
-
compact: "sd-element--with-frame sd-element--compact"
|
5384
|
+
compact: "sd-element--with-frame sd-element--compact",
|
5385
|
+
errorsContainer: "sd-panel__errbox sd-element__erbox sd-element__erbox--above-element"
|
5369
5386
|
},
|
5370
5387
|
paneldynamic: {
|
5371
5388
|
mainRoot: "sd-element sd-question sd-question--paneldynamic sd-element--complex sd-question--complex sd-row__question",
|
@@ -5431,7 +5448,8 @@ var defaultV2Css = {
|
|
5431
5448
|
root: "sd-page sd-body__page",
|
5432
5449
|
emptyHeaderRoot: "sd-page__empty-header",
|
5433
5450
|
title: "sd-title sd-page__title",
|
5434
|
-
description: "sd-description sd-page__description"
|
5451
|
+
description: "sd-description sd-page__description",
|
5452
|
+
errorsContainer: "sd-page__errbox"
|
5435
5453
|
},
|
5436
5454
|
pageTitle: "sd-title sd-page__title",
|
5437
5455
|
pageDescription: "sd-description sd-page__description",
|
@@ -5486,6 +5504,9 @@ var defaultV2Css = {
|
|
5486
5504
|
invisible: "sd-element--invisible",
|
5487
5505
|
composite: "sd-element--complex",
|
5488
5506
|
disabled: "sd-question--disabled",
|
5507
|
+
errorsContainer: "sd-element__erbox sd-question__erbox",
|
5508
|
+
errorsContainerTop: "sd-element__erbox--above-element sd-question__erbox--above-question",
|
5509
|
+
errorsContainerBottom: "sd-question__erbox--below-question"
|
5489
5510
|
},
|
5490
5511
|
image: {
|
5491
5512
|
mainRoot: "sd-question sd-question--image",
|
@@ -5502,14 +5523,11 @@ var defaultV2Css = {
|
|
5502
5523
|
withFrame: ""
|
5503
5524
|
},
|
5504
5525
|
error: {
|
5505
|
-
root: "sd-
|
5526
|
+
root: "sd-error",
|
5506
5527
|
icon: "",
|
5507
5528
|
item: "",
|
5508
|
-
|
5509
|
-
|
5510
|
-
belowQuestion: "sd-question__erbox--below-question",
|
5511
|
-
locationTop: "sd-question__erbox--location--top",
|
5512
|
-
locationBottom: "sd-question__erbox--location--bottom"
|
5529
|
+
locationTop: "",
|
5530
|
+
locationBottom: ""
|
5513
5531
|
},
|
5514
5532
|
checkbox: {
|
5515
5533
|
root: "sd-selectbase",
|
@@ -5728,6 +5746,8 @@ var defaultV2Css = {
|
|
5728
5746
|
rowHasEndActions: "sd-table__row--has-end-actions",
|
5729
5747
|
headerCell: "sd-table__cell sd-table__cell--header",
|
5730
5748
|
rowTextCell: "sd-table__cell sd-table__cell--row-text",
|
5749
|
+
footerCell: "sd-table__cell sd-table__cell--footer",
|
5750
|
+
footerTotalCell: "sd-table__cell sd-table__cell--footer-total",
|
5731
5751
|
columnTitleCell: "sd-table__cell--column-title",
|
5732
5752
|
cellRequiredText: "sd-question__required-text",
|
5733
5753
|
detailButton: "sd-table__cell--detail-button",
|
@@ -5763,6 +5783,7 @@ var defaultV2Css = {
|
|
5763
5783
|
itemCell: "sd-table__cell--item",
|
5764
5784
|
headerCell: "sd-table__cell sd-table__cell--header",
|
5765
5785
|
rowTextCell: "sd-table__cell sd-table__cell--row-text",
|
5786
|
+
footerCell: "sd-table__cell sd-table__cell--footer",
|
5766
5787
|
columnTitleCell: "sd-table__cell--column-title",
|
5767
5788
|
cellRequiredText: "sd-question__required-text",
|
5768
5789
|
button: "sd-action sd-matrixdynamic__btn",
|
@@ -9398,8 +9419,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
9398
9419
|
//import "../../modern.scss";
|
9399
9420
|
var Version;
|
9400
9421
|
var ReleaseDate;
|
9401
|
-
Version = "" + "1.9.
|
9402
|
-
ReleaseDate = "" + "2023-11-
|
9422
|
+
Version = "" + "1.9.119";
|
9423
|
+
ReleaseDate = "" + "2023-11-28";
|
9403
9424
|
function checkLibraryVersion(ver, libraryName) {
|
9404
9425
|
if (Version != ver) {
|
9405
9426
|
var str = "survey-core has version '" + Version + "' and " + libraryName
|
@@ -10522,7 +10543,7 @@ var defaultBootstrapMaterialCss = _plugins_themes_bootstrapmaterial_cssbootstrap
|
|
10522
10543
|
/*!***************************************!*\
|
10523
10544
|
!*** ./src/entries/react-ui-model.ts ***!
|
10524
10545
|
\***************************************/
|
10525
|
-
/*! exports provided: Survey, attachKey2click, ReactSurveyElementsWrapper, SurveyNavigationBase, SurveyTimerPanel, SurveyPage, SurveyRow, SurveyPanel, SurveyFlowPanel, SurveyQuestion, SurveyElementErrors, SurveyQuestionAndErrorsCell, ReactSurveyElement, SurveyElementBase, SurveyQuestionElementBase, SurveyQuestionCommentItem, SurveyQuestionComment, SurveyQuestionCheckbox, SurveyQuestionCheckboxItem, SurveyQuestionRanking, SurveyQuestionRankingItem, RatingItem, RatingItemStar, RatingItemSmiley, TagboxFilterString, SurveyQuestionOptionItem, SurveyQuestionDropdownBase, SurveyQuestionDropdown, SurveyQuestionTagboxItem, SurveyQuestionTagbox, SurveyQuestionDropdownSelect, SurveyQuestionMatrix, SurveyQuestionMatrixRow, SurveyQuestionHtml, SurveyQuestionFile, SurveyFileChooseButton, SurveyFilePreview, SurveyQuestionMultipleText, SurveyQuestionRadiogroup, SurveyQuestionRadioItem, SurveyQuestionText, SurveyQuestionBoolean, SurveyQuestionBooleanCheckbox, SurveyQuestionBooleanRadio, SurveyQuestionEmpty, SurveyQuestionMatrixDropdownCell, SurveyQuestionMatrixDropdownBase, SurveyQuestionMatrixDropdown, SurveyQuestionMatrixDynamic, SurveyQuestionMatrixDynamicAddButton, SurveyQuestionPanelDynamic, SurveyProgress, SurveyProgressButtons, SurveyProgressToc, SurveyQuestionRating, SurveyQuestionRatingDropdown, SurveyQuestionExpression, PopupSurvey, SurveyWindow, ReactQuestionFactory, ReactElementFactory, SurveyQuestionImagePicker, SurveyQuestionImage, SurveyQuestionSignaturePad, SurveyQuestionButtonGroup, SurveyQuestionCustom, SurveyQuestionComposite, Popup, List, TitleActions, TitleElement, SurveyActionBar, LogoImage, SurveyHeader, SvgIcon, SurveyQuestionMatrixDynamicRemoveButton, SurveyQuestionMatrixDetailButton, SurveyQuestionMatrixDynamicDragDropIcon, SurveyQuestionPanelDynamicAddButton, SurveyQuestionPanelDynamicRemoveButton, SurveyQuestionPanelDynamicPrevButton, SurveyQuestionPanelDynamicNextButton, SurveyQuestionPanelDynamicProgressText, SurveyNavigationButton, MatrixRow, Skeleton, NotifierComponent, ComponentsContainer, CharacterCounterComponent, HeaderMobile, HeaderCell, Header, SurveyLocStringViewer, SurveyLocStringEditor, LoadingIndicatorComponent */
|
10546
|
+
/*! exports provided: Survey, attachKey2click, ReactSurveyElementsWrapper, SurveyNavigationBase, SurveyTimerPanel, SurveyPage, SurveyRow, SurveyPanel, SurveyFlowPanel, SurveyQuestion, SurveyElementErrors, SurveyQuestionAndErrorsCell, ReactSurveyElement, SurveyElementBase, SurveyQuestionElementBase, SurveyQuestionCommentItem, SurveyQuestionComment, SurveyQuestionCheckbox, SurveyQuestionCheckboxItem, SurveyQuestionRanking, SurveyQuestionRankingItem, RatingItem, RatingItemStar, RatingItemSmiley, RatingDropdownItem, TagboxFilterString, SurveyQuestionOptionItem, SurveyQuestionDropdownBase, SurveyQuestionDropdown, SurveyQuestionTagboxItem, SurveyQuestionTagbox, SurveyQuestionDropdownSelect, SurveyQuestionMatrix, SurveyQuestionMatrixRow, SurveyQuestionHtml, SurveyQuestionFile, SurveyFileChooseButton, SurveyFilePreview, SurveyQuestionMultipleText, SurveyQuestionRadiogroup, SurveyQuestionRadioItem, SurveyQuestionText, SurveyQuestionBoolean, SurveyQuestionBooleanCheckbox, SurveyQuestionBooleanRadio, SurveyQuestionEmpty, SurveyQuestionMatrixDropdownCell, SurveyQuestionMatrixDropdownBase, SurveyQuestionMatrixDropdown, SurveyQuestionMatrixDynamic, SurveyQuestionMatrixDynamicAddButton, SurveyQuestionPanelDynamic, SurveyProgress, SurveyProgressButtons, SurveyProgressToc, SurveyQuestionRating, SurveyQuestionRatingDropdown, SurveyQuestionExpression, PopupSurvey, SurveyWindow, ReactQuestionFactory, ReactElementFactory, SurveyQuestionImagePicker, SurveyQuestionImage, SurveyQuestionSignaturePad, SurveyQuestionButtonGroup, SurveyQuestionCustom, SurveyQuestionComposite, Popup, List, TitleActions, TitleElement, SurveyActionBar, LogoImage, SurveyHeader, SvgIcon, SurveyQuestionMatrixDynamicRemoveButton, SurveyQuestionMatrixDetailButton, SurveyQuestionMatrixDynamicDragDropIcon, SurveyQuestionPanelDynamicAddButton, SurveyQuestionPanelDynamicRemoveButton, SurveyQuestionPanelDynamicPrevButton, SurveyQuestionPanelDynamicNextButton, SurveyQuestionPanelDynamicProgressText, SurveyNavigationButton, MatrixRow, Skeleton, NotifierComponent, ComponentsContainer, CharacterCounterComponent, HeaderMobile, HeaderCell, Header, SurveyLocStringViewer, SurveyLocStringEditor, LoadingIndicatorComponent */
|
10526
10547
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
10527
10548
|
|
10528
10549
|
"use strict";
|
@@ -10591,210 +10612,213 @@ __webpack_require__.r(__webpack_exports__);
|
|
10591
10612
|
/* harmony import */ var _react_components_rating_rating_item_smiley__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ../react/components/rating/rating-item-smiley */ "./src/react/components/rating/rating-item-smiley.tsx");
|
10592
10613
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "RatingItemSmiley", function() { return _react_components_rating_rating_item_smiley__WEBPACK_IMPORTED_MODULE_15__["RatingItemSmiley"]; });
|
10593
10614
|
|
10594
|
-
/* harmony import */ var
|
10595
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10615
|
+
/* harmony import */ var _react_components_rating_rating_dropdown_item__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ../react/components/rating/rating-dropdown-item */ "./src/react/components/rating/rating-dropdown-item.tsx");
|
10616
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "RatingDropdownItem", function() { return _react_components_rating_rating_dropdown_item__WEBPACK_IMPORTED_MODULE_16__["RatingDropdownItem"]; });
|
10596
10617
|
|
10597
|
-
/* harmony import */ var
|
10598
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10618
|
+
/* harmony import */ var _react_tagbox_filter__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ../react/tagbox-filter */ "./src/react/tagbox-filter.tsx");
|
10619
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "TagboxFilterString", function() { return _react_tagbox_filter__WEBPACK_IMPORTED_MODULE_17__["TagboxFilterString"]; });
|
10599
10620
|
|
10600
|
-
/* harmony import */ var
|
10601
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10621
|
+
/* harmony import */ var _react_dropdown_item__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ../react/dropdown-item */ "./src/react/dropdown-item.tsx");
|
10622
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionOptionItem", function() { return _react_dropdown_item__WEBPACK_IMPORTED_MODULE_18__["SurveyQuestionOptionItem"]; });
|
10602
10623
|
|
10603
|
-
/* harmony import */ var
|
10604
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10624
|
+
/* harmony import */ var _react_dropdown_base__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ../react/dropdown-base */ "./src/react/dropdown-base.tsx");
|
10625
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionDropdownBase", function() { return _react_dropdown_base__WEBPACK_IMPORTED_MODULE_19__["SurveyQuestionDropdownBase"]; });
|
10605
10626
|
|
10606
|
-
/* harmony import */ var
|
10607
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10627
|
+
/* harmony import */ var _react_reactquestion_dropdown__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ../react/reactquestion_dropdown */ "./src/react/reactquestion_dropdown.tsx");
|
10628
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionDropdown", function() { return _react_reactquestion_dropdown__WEBPACK_IMPORTED_MODULE_20__["SurveyQuestionDropdown"]; });
|
10608
10629
|
|
10609
|
-
/* harmony import */ var
|
10610
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10630
|
+
/* harmony import */ var _react_tagbox_item__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ../react/tagbox-item */ "./src/react/tagbox-item.tsx");
|
10631
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionTagboxItem", function() { return _react_tagbox_item__WEBPACK_IMPORTED_MODULE_21__["SurveyQuestionTagboxItem"]; });
|
10611
10632
|
|
10612
|
-
/* harmony import */ var
|
10613
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10633
|
+
/* harmony import */ var _react_reactquestion_tagbox__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ../react/reactquestion_tagbox */ "./src/react/reactquestion_tagbox.tsx");
|
10634
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionTagbox", function() { return _react_reactquestion_tagbox__WEBPACK_IMPORTED_MODULE_22__["SurveyQuestionTagbox"]; });
|
10614
10635
|
|
10615
|
-
/* harmony import */ var
|
10616
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10636
|
+
/* harmony import */ var _react_dropdown_select__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ../react/dropdown-select */ "./src/react/dropdown-select.tsx");
|
10637
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionDropdownSelect", function() { return _react_dropdown_select__WEBPACK_IMPORTED_MODULE_23__["SurveyQuestionDropdownSelect"]; });
|
10617
10638
|
|
10618
|
-
/* harmony
|
10639
|
+
/* harmony import */ var _react_reactquestion_matrix__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ../react/reactquestion_matrix */ "./src/react/reactquestion_matrix.tsx");
|
10640
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMatrix", function() { return _react_reactquestion_matrix__WEBPACK_IMPORTED_MODULE_24__["SurveyQuestionMatrix"]; });
|
10619
10641
|
|
10620
|
-
/* harmony
|
10621
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionHtml", function() { return _react_reactquestion_html__WEBPACK_IMPORTED_MODULE_24__["SurveyQuestionHtml"]; });
|
10642
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMatrixRow", function() { return _react_reactquestion_matrix__WEBPACK_IMPORTED_MODULE_24__["SurveyQuestionMatrixRow"]; });
|
10622
10643
|
|
10623
|
-
/* harmony import */ var
|
10624
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10644
|
+
/* harmony import */ var _react_reactquestion_html__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ../react/reactquestion_html */ "./src/react/reactquestion_html.tsx");
|
10645
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionHtml", function() { return _react_reactquestion_html__WEBPACK_IMPORTED_MODULE_25__["SurveyQuestionHtml"]; });
|
10625
10646
|
|
10626
|
-
/* harmony import */ var
|
10627
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10647
|
+
/* harmony import */ var _react_reactquestion_file__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ../react/reactquestion_file */ "./src/react/reactquestion_file.tsx");
|
10648
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionFile", function() { return _react_reactquestion_file__WEBPACK_IMPORTED_MODULE_26__["SurveyQuestionFile"]; });
|
10628
10649
|
|
10629
|
-
/* harmony import */ var
|
10630
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10650
|
+
/* harmony import */ var _react_components_file_file_choose_button__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ../react/components/file/file-choose-button */ "./src/react/components/file/file-choose-button.tsx");
|
10651
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyFileChooseButton", function() { return _react_components_file_file_choose_button__WEBPACK_IMPORTED_MODULE_27__["SurveyFileChooseButton"]; });
|
10631
10652
|
|
10632
|
-
/* harmony import */ var
|
10633
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10653
|
+
/* harmony import */ var _react_components_file_file_preview__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ../react/components/file/file-preview */ "./src/react/components/file/file-preview.tsx");
|
10654
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyFilePreview", function() { return _react_components_file_file_preview__WEBPACK_IMPORTED_MODULE_28__["SurveyFilePreview"]; });
|
10634
10655
|
|
10635
|
-
/* harmony import */ var
|
10636
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10656
|
+
/* harmony import */ var _react_reactquestion_multipletext__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ../react/reactquestion_multipletext */ "./src/react/reactquestion_multipletext.tsx");
|
10657
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMultipleText", function() { return _react_reactquestion_multipletext__WEBPACK_IMPORTED_MODULE_29__["SurveyQuestionMultipleText"]; });
|
10637
10658
|
|
10638
|
-
/* harmony
|
10659
|
+
/* harmony import */ var _react_reactquestion_radiogroup__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ../react/reactquestion_radiogroup */ "./src/react/reactquestion_radiogroup.tsx");
|
10660
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionRadiogroup", function() { return _react_reactquestion_radiogroup__WEBPACK_IMPORTED_MODULE_30__["SurveyQuestionRadiogroup"]; });
|
10639
10661
|
|
10640
|
-
/* harmony
|
10641
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionText", function() { return _react_reactquestion_text__WEBPACK_IMPORTED_MODULE_30__["SurveyQuestionText"]; });
|
10662
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionRadioItem", function() { return _react_reactquestion_radiogroup__WEBPACK_IMPORTED_MODULE_30__["SurveyQuestionRadioItem"]; });
|
10642
10663
|
|
10643
|
-
/* harmony import */ var
|
10644
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10664
|
+
/* harmony import */ var _react_reactquestion_text__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ../react/reactquestion_text */ "./src/react/reactquestion_text.tsx");
|
10665
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionText", function() { return _react_reactquestion_text__WEBPACK_IMPORTED_MODULE_31__["SurveyQuestionText"]; });
|
10645
10666
|
|
10646
|
-
/* harmony import */ var
|
10647
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10667
|
+
/* harmony import */ var _react_boolean__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ../react/boolean */ "./src/react/boolean.tsx");
|
10668
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionBoolean", function() { return _react_boolean__WEBPACK_IMPORTED_MODULE_32__["SurveyQuestionBoolean"]; });
|
10648
10669
|
|
10649
|
-
/* harmony import */ var
|
10650
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10670
|
+
/* harmony import */ var _react_boolean_checkbox__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ../react/boolean-checkbox */ "./src/react/boolean-checkbox.tsx");
|
10671
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionBooleanCheckbox", function() { return _react_boolean_checkbox__WEBPACK_IMPORTED_MODULE_33__["SurveyQuestionBooleanCheckbox"]; });
|
10651
10672
|
|
10652
|
-
/* harmony import */ var
|
10653
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10673
|
+
/* harmony import */ var _react_boolean_radio__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ../react/boolean-radio */ "./src/react/boolean-radio.tsx");
|
10674
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionBooleanRadio", function() { return _react_boolean_radio__WEBPACK_IMPORTED_MODULE_34__["SurveyQuestionBooleanRadio"]; });
|
10654
10675
|
|
10655
|
-
/* harmony import */ var
|
10656
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10676
|
+
/* harmony import */ var _react_reactquestion_empty__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ../react/reactquestion_empty */ "./src/react/reactquestion_empty.tsx");
|
10677
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionEmpty", function() { return _react_reactquestion_empty__WEBPACK_IMPORTED_MODULE_35__["SurveyQuestionEmpty"]; });
|
10657
10678
|
|
10658
|
-
/* harmony
|
10679
|
+
/* harmony import */ var _react_reactquestion_matrixdropdownbase__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ../react/reactquestion_matrixdropdownbase */ "./src/react/reactquestion_matrixdropdownbase.tsx");
|
10680
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMatrixDropdownCell", function() { return _react_reactquestion_matrixdropdownbase__WEBPACK_IMPORTED_MODULE_36__["SurveyQuestionMatrixDropdownCell"]; });
|
10659
10681
|
|
10660
|
-
/* harmony
|
10661
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMatrixDropdown", function() { return _react_reactquestion_matrixdropdown__WEBPACK_IMPORTED_MODULE_36__["SurveyQuestionMatrixDropdown"]; });
|
10682
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMatrixDropdownBase", function() { return _react_reactquestion_matrixdropdownbase__WEBPACK_IMPORTED_MODULE_36__["SurveyQuestionMatrixDropdownBase"]; });
|
10662
10683
|
|
10663
|
-
/* harmony import */ var
|
10664
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10684
|
+
/* harmony import */ var _react_reactquestion_matrixdropdown__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ../react/reactquestion_matrixdropdown */ "./src/react/reactquestion_matrixdropdown.tsx");
|
10685
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMatrixDropdown", function() { return _react_reactquestion_matrixdropdown__WEBPACK_IMPORTED_MODULE_37__["SurveyQuestionMatrixDropdown"]; });
|
10665
10686
|
|
10666
|
-
/* harmony
|
10687
|
+
/* harmony import */ var _react_reactquestion_matrixdynamic__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ../react/reactquestion_matrixdynamic */ "./src/react/reactquestion_matrixdynamic.tsx");
|
10688
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMatrixDynamic", function() { return _react_reactquestion_matrixdynamic__WEBPACK_IMPORTED_MODULE_38__["SurveyQuestionMatrixDynamic"]; });
|
10667
10689
|
|
10668
|
-
/* harmony
|
10669
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionPanelDynamic", function() { return _react_reactquestion_paneldynamic__WEBPACK_IMPORTED_MODULE_38__["SurveyQuestionPanelDynamic"]; });
|
10690
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMatrixDynamicAddButton", function() { return _react_reactquestion_matrixdynamic__WEBPACK_IMPORTED_MODULE_38__["SurveyQuestionMatrixDynamicAddButton"]; });
|
10670
10691
|
|
10671
|
-
/* harmony import */ var
|
10672
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10692
|
+
/* harmony import */ var _react_reactquestion_paneldynamic__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ../react/reactquestion_paneldynamic */ "./src/react/reactquestion_paneldynamic.tsx");
|
10693
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionPanelDynamic", function() { return _react_reactquestion_paneldynamic__WEBPACK_IMPORTED_MODULE_39__["SurveyQuestionPanelDynamic"]; });
|
10673
10694
|
|
10674
|
-
/* harmony import */ var
|
10675
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10695
|
+
/* harmony import */ var _react_reactSurveyProgress__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ../react/reactSurveyProgress */ "./src/react/reactSurveyProgress.tsx");
|
10696
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyProgress", function() { return _react_reactSurveyProgress__WEBPACK_IMPORTED_MODULE_40__["SurveyProgress"]; });
|
10676
10697
|
|
10677
|
-
/* harmony import */ var
|
10678
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10698
|
+
/* harmony import */ var _react_reactSurveyProgressButtons__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ../react/reactSurveyProgressButtons */ "./src/react/reactSurveyProgressButtons.tsx");
|
10699
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyProgressButtons", function() { return _react_reactSurveyProgressButtons__WEBPACK_IMPORTED_MODULE_41__["SurveyProgressButtons"]; });
|
10679
10700
|
|
10680
|
-
/* harmony import */ var
|
10681
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10701
|
+
/* harmony import */ var _react_reactSurveyProgressToc__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ../react/reactSurveyProgressToc */ "./src/react/reactSurveyProgressToc.tsx");
|
10702
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyProgressToc", function() { return _react_reactSurveyProgressToc__WEBPACK_IMPORTED_MODULE_42__["SurveyProgressToc"]; });
|
10682
10703
|
|
10683
|
-
/* harmony import */ var
|
10684
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10704
|
+
/* harmony import */ var _react_reactquestion_rating__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ../react/reactquestion_rating */ "./src/react/reactquestion_rating.tsx");
|
10705
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionRating", function() { return _react_reactquestion_rating__WEBPACK_IMPORTED_MODULE_43__["SurveyQuestionRating"]; });
|
10685
10706
|
|
10686
|
-
/* harmony import */ var
|
10687
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10707
|
+
/* harmony import */ var _react_rating_dropdown__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ../react/rating-dropdown */ "./src/react/rating-dropdown.tsx");
|
10708
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionRatingDropdown", function() { return _react_rating_dropdown__WEBPACK_IMPORTED_MODULE_44__["SurveyQuestionRatingDropdown"]; });
|
10688
10709
|
|
10689
|
-
/* harmony import */ var
|
10690
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10710
|
+
/* harmony import */ var _react_reactquestion_expression__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ../react/reactquestion_expression */ "./src/react/reactquestion_expression.tsx");
|
10711
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionExpression", function() { return _react_reactquestion_expression__WEBPACK_IMPORTED_MODULE_45__["SurveyQuestionExpression"]; });
|
10691
10712
|
|
10692
|
-
/* harmony
|
10713
|
+
/* harmony import */ var _react_react_popup_survey__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ../react/react-popup-survey */ "./src/react/react-popup-survey.tsx");
|
10714
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PopupSurvey", function() { return _react_react_popup_survey__WEBPACK_IMPORTED_MODULE_46__["PopupSurvey"]; });
|
10693
10715
|
|
10694
|
-
/* harmony
|
10695
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ReactQuestionFactory", function() { return _react_reactquestion_factory__WEBPACK_IMPORTED_MODULE_46__["ReactQuestionFactory"]; });
|
10716
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyWindow", function() { return _react_react_popup_survey__WEBPACK_IMPORTED_MODULE_46__["SurveyWindow"]; });
|
10696
10717
|
|
10697
|
-
/* harmony import */ var
|
10698
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10718
|
+
/* harmony import */ var _react_reactquestion_factory__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ../react/reactquestion_factory */ "./src/react/reactquestion_factory.tsx");
|
10719
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ReactQuestionFactory", function() { return _react_reactquestion_factory__WEBPACK_IMPORTED_MODULE_47__["ReactQuestionFactory"]; });
|
10699
10720
|
|
10700
|
-
/* harmony import */ var
|
10701
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10721
|
+
/* harmony import */ var _react_element_factory__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ../react/element-factory */ "./src/react/element-factory.tsx");
|
10722
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ReactElementFactory", function() { return _react_element_factory__WEBPACK_IMPORTED_MODULE_48__["ReactElementFactory"]; });
|
10702
10723
|
|
10703
|
-
/* harmony import */ var
|
10704
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10724
|
+
/* harmony import */ var _react_imagepicker__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ../react/imagepicker */ "./src/react/imagepicker.tsx");
|
10725
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionImagePicker", function() { return _react_imagepicker__WEBPACK_IMPORTED_MODULE_49__["SurveyQuestionImagePicker"]; });
|
10705
10726
|
|
10706
|
-
/* harmony import */ var
|
10707
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10727
|
+
/* harmony import */ var _react_image__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ../react/image */ "./src/react/image.tsx");
|
10728
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionImage", function() { return _react_image__WEBPACK_IMPORTED_MODULE_50__["SurveyQuestionImage"]; });
|
10708
10729
|
|
10709
|
-
/* harmony import */ var
|
10710
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10730
|
+
/* harmony import */ var _react_signaturepad__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ../react/signaturepad */ "./src/react/signaturepad.tsx");
|
10731
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionSignaturePad", function() { return _react_signaturepad__WEBPACK_IMPORTED_MODULE_51__["SurveyQuestionSignaturePad"]; });
|
10711
10732
|
|
10712
|
-
/* harmony import */ var
|
10713
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10733
|
+
/* harmony import */ var _react_reactquestion_buttongroup__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ../react/reactquestion_buttongroup */ "./src/react/reactquestion_buttongroup.tsx");
|
10734
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionButtonGroup", function() { return _react_reactquestion_buttongroup__WEBPACK_IMPORTED_MODULE_52__["SurveyQuestionButtonGroup"]; });
|
10714
10735
|
|
10715
|
-
/* harmony
|
10736
|
+
/* harmony import */ var _react_reactquestion_custom__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ../react/reactquestion_custom */ "./src/react/reactquestion_custom.tsx");
|
10737
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionCustom", function() { return _react_reactquestion_custom__WEBPACK_IMPORTED_MODULE_53__["SurveyQuestionCustom"]; });
|
10716
10738
|
|
10717
|
-
/* harmony
|
10718
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Popup", function() { return _react_components_popup_popup__WEBPACK_IMPORTED_MODULE_53__["Popup"]; });
|
10739
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionComposite", function() { return _react_reactquestion_custom__WEBPACK_IMPORTED_MODULE_53__["SurveyQuestionComposite"]; });
|
10719
10740
|
|
10720
|
-
/* harmony import */ var
|
10721
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10741
|
+
/* harmony import */ var _react_components_popup_popup__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ../react/components/popup/popup */ "./src/react/components/popup/popup.tsx");
|
10742
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Popup", function() { return _react_components_popup_popup__WEBPACK_IMPORTED_MODULE_54__["Popup"]; });
|
10722
10743
|
|
10723
|
-
/* harmony import */ var
|
10724
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10744
|
+
/* harmony import */ var _react_components_list_list__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ../react/components/list/list */ "./src/react/components/list/list.tsx");
|
10745
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "List", function() { return _react_components_list_list__WEBPACK_IMPORTED_MODULE_55__["List"]; });
|
10725
10746
|
|
10726
|
-
/* harmony import */ var
|
10727
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10747
|
+
/* harmony import */ var _react_components_title_title_actions__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ../react/components/title/title-actions */ "./src/react/components/title/title-actions.tsx");
|
10748
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "TitleActions", function() { return _react_components_title_title_actions__WEBPACK_IMPORTED_MODULE_56__["TitleActions"]; });
|
10728
10749
|
|
10729
|
-
/* harmony import */ var
|
10730
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10750
|
+
/* harmony import */ var _react_components_title_title_element__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ../react/components/title/title-element */ "./src/react/components/title/title-element.tsx");
|
10751
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "TitleElement", function() { return _react_components_title_title_element__WEBPACK_IMPORTED_MODULE_57__["TitleElement"]; });
|
10731
10752
|
|
10732
|
-
/* harmony import */ var
|
10733
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10753
|
+
/* harmony import */ var _react_components_action_bar_action_bar__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ../react/components/action-bar/action-bar */ "./src/react/components/action-bar/action-bar.tsx");
|
10754
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyActionBar", function() { return _react_components_action_bar_action_bar__WEBPACK_IMPORTED_MODULE_58__["SurveyActionBar"]; });
|
10734
10755
|
|
10735
|
-
/* harmony import */ var
|
10736
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10756
|
+
/* harmony import */ var _react_components_survey_header_logo_image__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ../react/components/survey-header/logo-image */ "./src/react/components/survey-header/logo-image.tsx");
|
10757
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "LogoImage", function() { return _react_components_survey_header_logo_image__WEBPACK_IMPORTED_MODULE_59__["LogoImage"]; });
|
10737
10758
|
|
10738
|
-
/* harmony import */ var
|
10739
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10759
|
+
/* harmony import */ var _react_components_survey_header_survey_header__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ../react/components/survey-header/survey-header */ "./src/react/components/survey-header/survey-header.tsx");
|
10760
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyHeader", function() { return _react_components_survey_header_survey_header__WEBPACK_IMPORTED_MODULE_60__["SurveyHeader"]; });
|
10740
10761
|
|
10741
|
-
/* harmony import */ var
|
10742
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10762
|
+
/* harmony import */ var _react_components_svg_icon_svg_icon__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ../react/components/svg-icon/svg-icon */ "./src/react/components/svg-icon/svg-icon.tsx");
|
10763
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SvgIcon", function() { return _react_components_svg_icon_svg_icon__WEBPACK_IMPORTED_MODULE_61__["SvgIcon"]; });
|
10743
10764
|
|
10744
|
-
/* harmony import */ var
|
10745
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10765
|
+
/* harmony import */ var _react_components_matrix_actions_remove_button_remove_button__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ../react/components/matrix-actions/remove-button/remove-button */ "./src/react/components/matrix-actions/remove-button/remove-button.tsx");
|
10766
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMatrixDynamicRemoveButton", function() { return _react_components_matrix_actions_remove_button_remove_button__WEBPACK_IMPORTED_MODULE_62__["SurveyQuestionMatrixDynamicRemoveButton"]; });
|
10746
10767
|
|
10747
|
-
/* harmony import */ var
|
10748
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10768
|
+
/* harmony import */ var _react_components_matrix_actions_detail_button_detail_button__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! ../react/components/matrix-actions/detail-button/detail-button */ "./src/react/components/matrix-actions/detail-button/detail-button.tsx");
|
10769
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMatrixDetailButton", function() { return _react_components_matrix_actions_detail_button_detail_button__WEBPACK_IMPORTED_MODULE_63__["SurveyQuestionMatrixDetailButton"]; });
|
10749
10770
|
|
10750
|
-
/* harmony import */ var
|
10751
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10771
|
+
/* harmony import */ var _react_components_matrix_actions_drag_drop_icon_drag_drop_icon__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ../react/components/matrix-actions/drag-drop-icon/drag-drop-icon */ "./src/react/components/matrix-actions/drag-drop-icon/drag-drop-icon.tsx");
|
10772
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMatrixDynamicDragDropIcon", function() { return _react_components_matrix_actions_drag_drop_icon_drag_drop_icon__WEBPACK_IMPORTED_MODULE_64__["SurveyQuestionMatrixDynamicDragDropIcon"]; });
|
10752
10773
|
|
10753
|
-
/* harmony import */ var
|
10754
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10774
|
+
/* harmony import */ var _react_components_paneldynamic_actions_paneldynamic_add_btn__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ../react/components/paneldynamic-actions/paneldynamic-add-btn */ "./src/react/components/paneldynamic-actions/paneldynamic-add-btn.tsx");
|
10775
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionPanelDynamicAddButton", function() { return _react_components_paneldynamic_actions_paneldynamic_add_btn__WEBPACK_IMPORTED_MODULE_65__["SurveyQuestionPanelDynamicAddButton"]; });
|
10755
10776
|
|
10756
|
-
/* harmony import */ var
|
10757
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10777
|
+
/* harmony import */ var _react_components_paneldynamic_actions_paneldynamic_remove_btn__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ../react/components/paneldynamic-actions/paneldynamic-remove-btn */ "./src/react/components/paneldynamic-actions/paneldynamic-remove-btn.tsx");
|
10778
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionPanelDynamicRemoveButton", function() { return _react_components_paneldynamic_actions_paneldynamic_remove_btn__WEBPACK_IMPORTED_MODULE_66__["SurveyQuestionPanelDynamicRemoveButton"]; });
|
10758
10779
|
|
10759
|
-
/* harmony import */ var
|
10760
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10780
|
+
/* harmony import */ var _react_components_paneldynamic_actions_paneldynamic_prev_btn__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(/*! ../react/components/paneldynamic-actions/paneldynamic-prev-btn */ "./src/react/components/paneldynamic-actions/paneldynamic-prev-btn.tsx");
|
10781
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionPanelDynamicPrevButton", function() { return _react_components_paneldynamic_actions_paneldynamic_prev_btn__WEBPACK_IMPORTED_MODULE_67__["SurveyQuestionPanelDynamicPrevButton"]; });
|
10761
10782
|
|
10762
|
-
/* harmony import */ var
|
10763
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10783
|
+
/* harmony import */ var _react_components_paneldynamic_actions_paneldynamic_next_btn__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(/*! ../react/components/paneldynamic-actions/paneldynamic-next-btn */ "./src/react/components/paneldynamic-actions/paneldynamic-next-btn.tsx");
|
10784
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionPanelDynamicNextButton", function() { return _react_components_paneldynamic_actions_paneldynamic_next_btn__WEBPACK_IMPORTED_MODULE_68__["SurveyQuestionPanelDynamicNextButton"]; });
|
10764
10785
|
|
10765
|
-
/* harmony import */ var
|
10766
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10786
|
+
/* harmony import */ var _react_components_paneldynamic_actions_paneldynamic_progress_text__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(/*! ../react/components/paneldynamic-actions/paneldynamic-progress-text */ "./src/react/components/paneldynamic-actions/paneldynamic-progress-text.tsx");
|
10787
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionPanelDynamicProgressText", function() { return _react_components_paneldynamic_actions_paneldynamic_progress_text__WEBPACK_IMPORTED_MODULE_69__["SurveyQuestionPanelDynamicProgressText"]; });
|
10767
10788
|
|
10768
|
-
/* harmony import */ var
|
10769
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10789
|
+
/* harmony import */ var _react_components_survey_actions_survey_nav_button__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(/*! ../react/components/survey-actions/survey-nav-button */ "./src/react/components/survey-actions/survey-nav-button.tsx");
|
10790
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyNavigationButton", function() { return _react_components_survey_actions_survey_nav_button__WEBPACK_IMPORTED_MODULE_70__["SurveyNavigationButton"]; });
|
10770
10791
|
|
10771
|
-
/* harmony import */ var
|
10772
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10792
|
+
/* harmony import */ var _react_components_matrix_row__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ../react/components/matrix/row */ "./src/react/components/matrix/row.tsx");
|
10793
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "MatrixRow", function() { return _react_components_matrix_row__WEBPACK_IMPORTED_MODULE_71__["MatrixRow"]; });
|
10773
10794
|
|
10774
|
-
/* harmony import */ var
|
10775
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10795
|
+
/* harmony import */ var _react_components_skeleton__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ../react/components/skeleton */ "./src/react/components/skeleton.tsx");
|
10796
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Skeleton", function() { return _react_components_skeleton__WEBPACK_IMPORTED_MODULE_72__["Skeleton"]; });
|
10776
10797
|
|
10777
|
-
/* harmony import */ var
|
10778
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10798
|
+
/* harmony import */ var _react_components_notifier__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ../react/components/notifier */ "./src/react/components/notifier.tsx");
|
10799
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "NotifierComponent", function() { return _react_components_notifier__WEBPACK_IMPORTED_MODULE_73__["NotifierComponent"]; });
|
10779
10800
|
|
10780
|
-
/* harmony import */ var
|
10781
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10801
|
+
/* harmony import */ var _react_components_components_container__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ../react/components/components-container */ "./src/react/components/components-container.tsx");
|
10802
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ComponentsContainer", function() { return _react_components_components_container__WEBPACK_IMPORTED_MODULE_74__["ComponentsContainer"]; });
|
10782
10803
|
|
10783
|
-
/* harmony import */ var
|
10784
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10804
|
+
/* harmony import */ var _react_components_character_counter__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ../react/components/character-counter */ "./src/react/components/character-counter.tsx");
|
10805
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "CharacterCounterComponent", function() { return _react_components_character_counter__WEBPACK_IMPORTED_MODULE_75__["CharacterCounterComponent"]; });
|
10785
10806
|
|
10786
|
-
/* harmony
|
10807
|
+
/* harmony import */ var _react_components_header__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ../react/components/header */ "./src/react/components/header.tsx");
|
10808
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "HeaderMobile", function() { return _react_components_header__WEBPACK_IMPORTED_MODULE_76__["HeaderMobile"]; });
|
10787
10809
|
|
10788
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10810
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "HeaderCell", function() { return _react_components_header__WEBPACK_IMPORTED_MODULE_76__["HeaderCell"]; });
|
10789
10811
|
|
10790
|
-
/* harmony
|
10791
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyLocStringViewer", function() { return _react_string_viewer__WEBPACK_IMPORTED_MODULE_76__["SurveyLocStringViewer"]; });
|
10812
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Header", function() { return _react_components_header__WEBPACK_IMPORTED_MODULE_76__["Header"]; });
|
10792
10813
|
|
10793
|
-
/* harmony import */ var
|
10794
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10814
|
+
/* harmony import */ var _react_string_viewer__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(/*! ../react/string-viewer */ "./src/react/string-viewer.tsx");
|
10815
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyLocStringViewer", function() { return _react_string_viewer__WEBPACK_IMPORTED_MODULE_77__["SurveyLocStringViewer"]; });
|
10795
10816
|
|
10796
|
-
/* harmony import */ var
|
10797
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
10817
|
+
/* harmony import */ var _react_string_editor__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(/*! ../react/string-editor */ "./src/react/string-editor.tsx");
|
10818
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyLocStringEditor", function() { return _react_string_editor__WEBPACK_IMPORTED_MODULE_78__["SurveyLocStringEditor"]; });
|
10819
|
+
|
10820
|
+
/* harmony import */ var _react_components_loading_indicator__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(/*! ../react/components/loading-indicator */ "./src/react/components/loading-indicator.tsx");
|
10821
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "LoadingIndicatorComponent", function() { return _react_components_loading_indicator__WEBPACK_IMPORTED_MODULE_79__["LoadingIndicatorComponent"]; });
|
10798
10822
|
|
10799
10823
|
// react
|
10800
10824
|
|
@@ -10874,6 +10898,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
10874
10898
|
|
10875
10899
|
|
10876
10900
|
|
10901
|
+
|
10877
10902
|
|
10878
10903
|
|
10879
10904
|
//Uncomment to include the "date" question type.
|
@@ -10886,7 +10911,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
10886
10911
|
/*!******************************!*\
|
10887
10912
|
!*** ./src/entries/react.ts ***!
|
10888
10913
|
\******************************/
|
10889
|
-
/*! exports provided: Version, ReleaseDate, checkLibraryVersion, setLicenseKey, slk, hasLicense, settings, Helpers, AnswerCountValidator, EmailValidator, NumericValidator, RegexValidator, SurveyValidator, TextValidator, ValidatorResult, ExpressionValidator, ValidatorRunner, ItemValue, Base, Event, EventBase, ArrayChanges, ComputedUpdater, SurveyError, SurveyElementCore, SurveyElement, DragTypeOverMeEnum, CalculatedValue, CustomError, AnswerRequiredError, OneAnswerRequiredError, RequreNumericError, ExceedSizeError, LocalizableString, LocalizableStrings, HtmlConditionItem, UrlConditionItem, ChoicesRestful, ChoicesRestfull, FunctionFactory, registerFunction, ConditionRunner, ExpressionRunner, ExpressionExecutor, Operand, Const, BinaryOperand, Variable, FunctionOperand, ArrayOperand, UnaryOperand, ConditionsParser, ProcessValue, JsonError, JsonIncorrectTypeError, JsonMetadata, JsonMetadataClass, JsonMissingTypeError, JsonMissingTypeErrorBase, JsonObject, JsonObjectProperty, JsonRequiredPropertyError, JsonUnknownPropertyError, Serializer, property, propertyArray, MatrixDropdownCell, MatrixDropdownRowModelBase, QuestionMatrixDropdownModelBase, MatrixDropdownColumn, matrixDropdownColumnTypes, QuestionMatrixDropdownRenderedCell, QuestionMatrixDropdownRenderedRow, QuestionMatrixDropdownRenderedTable, MatrixDropdownRowModel, QuestionMatrixDropdownModel, MatrixDynamicRowModel, QuestionMatrixDynamicModel, MatrixRowModel, MatrixCells, QuestionMatrixModel, QuestionMatrixBaseModel, MultipleTextItemModel, MultipleTextCell, MultipleTextErrorCell, MutlipleTextErrorRow, MutlipleTextRow, QuestionMultipleTextModel, MultipleTextEditorModel, PanelModel, PanelModelBase, QuestionRowModel, FlowPanelModel, PageModel, DefaultTitleModel, Question, QuestionNonValue, QuestionEmptyModel, QuestionCheckboxBase, QuestionSelectBase, QuestionCheckboxModel, QuestionTagboxModel, QuestionRankingModel, QuestionCommentModel, QuestionDropdownModel, QuestionFactory, ElementFactory, QuestionFileModel, QuestionHtmlModel, QuestionRadiogroupModel, QuestionRatingModel, RenderedRatingItem, QuestionExpressionModel, QuestionTextBase, CharacterCounter, QuestionTextModel, QuestionBooleanModel, QuestionImagePickerModel, ImageItemValue, QuestionImageModel, QuestionSignaturePadModel, QuestionPanelDynamicModel, QuestionPanelDynamicItem, SurveyTimer, SurveyTimerModel, tryNavigateToPage, tryFocusPage, createTOCListModel, getTocRootCss, TOCModel, SurveyProgressModel, SurveyProgressButtonsModel, SurveyModel, SurveyTrigger, SurveyTriggerComplete, SurveyTriggerSetValue, SurveyTriggerVisible, SurveyTriggerCopyValue, SurveyTriggerRunExpression, SurveyTriggerSkip, Trigger, PopupSurveyModel, SurveyWindowModel, TextPreProcessor, Notifier, Cover, CoverCell, dxSurveyService, englishStrings, surveyLocalization, surveyStrings, QuestionCustomWidget, CustomWidgetCollection, QuestionCustomModel, QuestionCompositeModel, ComponentQuestionJSON, ComponentCollection, StylesManager, ListModel, MultiSelectListModel, PopupModel, createDialogOptions, PopupBaseViewModel, PopupDropdownViewModel, PopupModalViewModel, createPopupViewModel, createPopupModalViewModel, DropdownListModel, DropdownMultiSelectListModel, QuestionButtonGroupModel, ButtonGroupItemModel, ButtonGroupItemValue, IsMobile, IsTouch, _setIsTouch, confirmAction, confirmActionAsync, detectIEOrEdge, doKey2ClickUp, doKey2ClickDown, doKey2ClickBlur, loadFileFromBase64, increaseHeightByContent, createSvg, sanitizeEditableContent, CssClassBuilder, surveyCss, defaultV2Css, defaultV2ThemeName, DragDropCore, DragDropChoices, DragDropRankingSelectToRank, defaultStandardCss, modernCss, SvgIconRegistry, SvgRegistry, SvgBundleViewModel, RendererFactory, ResponsivityManager, VerticalResponsivityManager, unwrap, getOriginalEvent, getElement, createDropdownActionModel, createDropdownActionModelAdvanced, getActionDropdownButtonTarget, BaseAction, Action, ActionDropdownViewModel, AdaptiveActionContainer, defaultActionBarCss, ActionContainer, DragOrClickHelper, Model, bootstrapThemeName, bootstrapThemeColors, bootstrapThemeCssRules, bootstrapMaterialThemeName, bootstrapMaterialThemeColors, bootstrapMaterialThemeCssRules, defaultBootstrapCss, defaultBootstrapMaterialCss, Survey, attachKey2click, ReactSurveyElementsWrapper, SurveyNavigationBase, SurveyTimerPanel, SurveyPage, SurveyRow, SurveyPanel, SurveyFlowPanel, SurveyQuestion, SurveyElementErrors, SurveyQuestionAndErrorsCell, ReactSurveyElement, SurveyElementBase, SurveyQuestionElementBase, SurveyQuestionCommentItem, SurveyQuestionComment, SurveyQuestionCheckbox, SurveyQuestionCheckboxItem, SurveyQuestionRanking, SurveyQuestionRankingItem, RatingItem, RatingItemStar, RatingItemSmiley, TagboxFilterString, SurveyQuestionOptionItem, SurveyQuestionDropdownBase, SurveyQuestionDropdown, SurveyQuestionTagboxItem, SurveyQuestionTagbox, SurveyQuestionDropdownSelect, SurveyQuestionMatrix, SurveyQuestionMatrixRow, SurveyQuestionHtml, SurveyQuestionFile, SurveyFileChooseButton, SurveyFilePreview, SurveyQuestionMultipleText, SurveyQuestionRadiogroup, SurveyQuestionRadioItem, SurveyQuestionText, SurveyQuestionBoolean, SurveyQuestionBooleanCheckbox, SurveyQuestionBooleanRadio, SurveyQuestionEmpty, SurveyQuestionMatrixDropdownCell, SurveyQuestionMatrixDropdownBase, SurveyQuestionMatrixDropdown, SurveyQuestionMatrixDynamic, SurveyQuestionMatrixDynamicAddButton, SurveyQuestionPanelDynamic, SurveyProgress, SurveyProgressButtons, SurveyProgressToc, SurveyQuestionRating, SurveyQuestionRatingDropdown, SurveyQuestionExpression, PopupSurvey, SurveyWindow, ReactQuestionFactory, ReactElementFactory, SurveyQuestionImagePicker, SurveyQuestionImage, SurveyQuestionSignaturePad, SurveyQuestionButtonGroup, SurveyQuestionCustom, SurveyQuestionComposite, Popup, List, TitleActions, TitleElement, SurveyActionBar, LogoImage, SurveyHeader, SvgIcon, SurveyQuestionMatrixDynamicRemoveButton, SurveyQuestionMatrixDetailButton, SurveyQuestionMatrixDynamicDragDropIcon, SurveyQuestionPanelDynamicAddButton, SurveyQuestionPanelDynamicRemoveButton, SurveyQuestionPanelDynamicPrevButton, SurveyQuestionPanelDynamicNextButton, SurveyQuestionPanelDynamicProgressText, SurveyNavigationButton, MatrixRow, Skeleton, NotifierComponent, ComponentsContainer, CharacterCounterComponent, HeaderMobile, HeaderCell, Header, SurveyLocStringViewer, SurveyLocStringEditor, LoadingIndicatorComponent */
|
10914
|
+
/*! exports provided: Version, ReleaseDate, checkLibraryVersion, setLicenseKey, slk, hasLicense, settings, Helpers, AnswerCountValidator, EmailValidator, NumericValidator, RegexValidator, SurveyValidator, TextValidator, ValidatorResult, ExpressionValidator, ValidatorRunner, ItemValue, Base, Event, EventBase, ArrayChanges, ComputedUpdater, SurveyError, SurveyElementCore, SurveyElement, DragTypeOverMeEnum, CalculatedValue, CustomError, AnswerRequiredError, OneAnswerRequiredError, RequreNumericError, ExceedSizeError, LocalizableString, LocalizableStrings, HtmlConditionItem, UrlConditionItem, ChoicesRestful, ChoicesRestfull, FunctionFactory, registerFunction, ConditionRunner, ExpressionRunner, ExpressionExecutor, Operand, Const, BinaryOperand, Variable, FunctionOperand, ArrayOperand, UnaryOperand, ConditionsParser, ProcessValue, JsonError, JsonIncorrectTypeError, JsonMetadata, JsonMetadataClass, JsonMissingTypeError, JsonMissingTypeErrorBase, JsonObject, JsonObjectProperty, JsonRequiredPropertyError, JsonUnknownPropertyError, Serializer, property, propertyArray, MatrixDropdownCell, MatrixDropdownRowModelBase, QuestionMatrixDropdownModelBase, MatrixDropdownColumn, matrixDropdownColumnTypes, QuestionMatrixDropdownRenderedCell, QuestionMatrixDropdownRenderedRow, QuestionMatrixDropdownRenderedTable, MatrixDropdownRowModel, QuestionMatrixDropdownModel, MatrixDynamicRowModel, QuestionMatrixDynamicModel, MatrixRowModel, MatrixCells, QuestionMatrixModel, QuestionMatrixBaseModel, MultipleTextItemModel, MultipleTextCell, MultipleTextErrorCell, MutlipleTextErrorRow, MutlipleTextRow, QuestionMultipleTextModel, MultipleTextEditorModel, PanelModel, PanelModelBase, QuestionRowModel, FlowPanelModel, PageModel, DefaultTitleModel, Question, QuestionNonValue, QuestionEmptyModel, QuestionCheckboxBase, QuestionSelectBase, QuestionCheckboxModel, QuestionTagboxModel, QuestionRankingModel, QuestionCommentModel, QuestionDropdownModel, QuestionFactory, ElementFactory, QuestionFileModel, QuestionHtmlModel, QuestionRadiogroupModel, QuestionRatingModel, RenderedRatingItem, QuestionExpressionModel, QuestionTextBase, CharacterCounter, QuestionTextModel, QuestionBooleanModel, QuestionImagePickerModel, ImageItemValue, QuestionImageModel, QuestionSignaturePadModel, QuestionPanelDynamicModel, QuestionPanelDynamicItem, SurveyTimer, SurveyTimerModel, tryNavigateToPage, tryFocusPage, createTOCListModel, getTocRootCss, TOCModel, SurveyProgressModel, SurveyProgressButtonsModel, SurveyModel, SurveyTrigger, SurveyTriggerComplete, SurveyTriggerSetValue, SurveyTriggerVisible, SurveyTriggerCopyValue, SurveyTriggerRunExpression, SurveyTriggerSkip, Trigger, PopupSurveyModel, SurveyWindowModel, TextPreProcessor, Notifier, Cover, CoverCell, dxSurveyService, englishStrings, surveyLocalization, surveyStrings, QuestionCustomWidget, CustomWidgetCollection, QuestionCustomModel, QuestionCompositeModel, ComponentQuestionJSON, ComponentCollection, StylesManager, ListModel, MultiSelectListModel, PopupModel, createDialogOptions, PopupBaseViewModel, PopupDropdownViewModel, PopupModalViewModel, createPopupViewModel, createPopupModalViewModel, DropdownListModel, DropdownMultiSelectListModel, QuestionButtonGroupModel, ButtonGroupItemModel, ButtonGroupItemValue, IsMobile, IsTouch, _setIsTouch, confirmAction, confirmActionAsync, detectIEOrEdge, doKey2ClickUp, doKey2ClickDown, doKey2ClickBlur, loadFileFromBase64, increaseHeightByContent, createSvg, sanitizeEditableContent, CssClassBuilder, surveyCss, defaultV2Css, defaultV2ThemeName, DragDropCore, DragDropChoices, DragDropRankingSelectToRank, defaultStandardCss, modernCss, SvgIconRegistry, SvgRegistry, SvgBundleViewModel, RendererFactory, ResponsivityManager, VerticalResponsivityManager, unwrap, getOriginalEvent, getElement, createDropdownActionModel, createDropdownActionModelAdvanced, getActionDropdownButtonTarget, BaseAction, Action, ActionDropdownViewModel, AdaptiveActionContainer, defaultActionBarCss, ActionContainer, DragOrClickHelper, Model, bootstrapThemeName, bootstrapThemeColors, bootstrapThemeCssRules, bootstrapMaterialThemeName, bootstrapMaterialThemeColors, bootstrapMaterialThemeCssRules, defaultBootstrapCss, defaultBootstrapMaterialCss, Survey, attachKey2click, ReactSurveyElementsWrapper, SurveyNavigationBase, SurveyTimerPanel, SurveyPage, SurveyRow, SurveyPanel, SurveyFlowPanel, SurveyQuestion, SurveyElementErrors, SurveyQuestionAndErrorsCell, ReactSurveyElement, SurveyElementBase, SurveyQuestionElementBase, SurveyQuestionCommentItem, SurveyQuestionComment, SurveyQuestionCheckbox, SurveyQuestionCheckboxItem, SurveyQuestionRanking, SurveyQuestionRankingItem, RatingItem, RatingItemStar, RatingItemSmiley, RatingDropdownItem, TagboxFilterString, SurveyQuestionOptionItem, SurveyQuestionDropdownBase, SurveyQuestionDropdown, SurveyQuestionTagboxItem, SurveyQuestionTagbox, SurveyQuestionDropdownSelect, SurveyQuestionMatrix, SurveyQuestionMatrixRow, SurveyQuestionHtml, SurveyQuestionFile, SurveyFileChooseButton, SurveyFilePreview, SurveyQuestionMultipleText, SurveyQuestionRadiogroup, SurveyQuestionRadioItem, SurveyQuestionText, SurveyQuestionBoolean, SurveyQuestionBooleanCheckbox, SurveyQuestionBooleanRadio, SurveyQuestionEmpty, SurveyQuestionMatrixDropdownCell, SurveyQuestionMatrixDropdownBase, SurveyQuestionMatrixDropdown, SurveyQuestionMatrixDynamic, SurveyQuestionMatrixDynamicAddButton, SurveyQuestionPanelDynamic, SurveyProgress, SurveyProgressButtons, SurveyProgressToc, SurveyQuestionRating, SurveyQuestionRatingDropdown, SurveyQuestionExpression, PopupSurvey, SurveyWindow, ReactQuestionFactory, ReactElementFactory, SurveyQuestionImagePicker, SurveyQuestionImage, SurveyQuestionSignaturePad, SurveyQuestionButtonGroup, SurveyQuestionCustom, SurveyQuestionComposite, Popup, List, TitleActions, TitleElement, SurveyActionBar, LogoImage, SurveyHeader, SvgIcon, SurveyQuestionMatrixDynamicRemoveButton, SurveyQuestionMatrixDetailButton, SurveyQuestionMatrixDynamicDragDropIcon, SurveyQuestionPanelDynamicAddButton, SurveyQuestionPanelDynamicRemoveButton, SurveyQuestionPanelDynamicPrevButton, SurveyQuestionPanelDynamicNextButton, SurveyQuestionPanelDynamicProgressText, SurveyNavigationButton, MatrixRow, Skeleton, NotifierComponent, ComponentsContainer, CharacterCounterComponent, HeaderMobile, HeaderCell, Header, SurveyLocStringViewer, SurveyLocStringEditor, LoadingIndicatorComponent */
|
10890
10915
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
10891
10916
|
|
10892
10917
|
"use strict";
|
@@ -11387,6 +11412,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
11387
11412
|
|
11388
11413
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "RatingItemSmiley", function() { return _react_ui_model__WEBPACK_IMPORTED_MODULE_3__["RatingItemSmiley"]; });
|
11389
11414
|
|
11415
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "RatingDropdownItem", function() { return _react_ui_model__WEBPACK_IMPORTED_MODULE_3__["RatingDropdownItem"]; });
|
11416
|
+
|
11390
11417
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "TagboxFilterString", function() { return _react_ui_model__WEBPACK_IMPORTED_MODULE_3__["TagboxFilterString"]; });
|
11391
11418
|
|
11392
11419
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionOptionItem", function() { return _react_ui_model__WEBPACK_IMPORTED_MODULE_3__["SurveyQuestionOptionItem"]; });
|
@@ -16714,7 +16741,7 @@ var Cover = /** @class */ (function (_super) {
|
|
16714
16741
|
|
16715
16742
|
_jsonobject__WEBPACK_IMPORTED_MODULE_1__["Serializer"].addClass("cover", [
|
16716
16743
|
{ name: "height:number", minValue: 0, default: 256 },
|
16717
|
-
{ name: "inheritWidthFrom", default: "
|
16744
|
+
{ name: "inheritWidthFrom", default: "container" },
|
16718
16745
|
{ name: "textAreaWidth:number", minValue: 0, default: 512 },
|
16719
16746
|
{ name: "textGlowEnabled:boolean" },
|
16720
16747
|
{ name: "overlapEnabled:boolean" },
|
@@ -22558,6 +22585,7 @@ var englishStrings = {
|
|
22558
22585
|
urlRequestError: "The request returned error '{0}'. {1}",
|
22559
22586
|
urlGetChoicesError: "The request returned empty data or the 'path' property is incorrect",
|
22560
22587
|
exceedMaxSize: "The file size should not exceed {0}.",
|
22588
|
+
noUploadFilesHandler: "Files cannot be uploaded. Please add a handler for the 'onUploadFiles' event.",
|
22561
22589
|
otherRequiredError: "Response required: enter another value.",
|
22562
22590
|
uploadingFile: "Your file is uploading. Please wait several seconds and try again.",
|
22563
22591
|
loadingFile: "Loading...",
|
@@ -28890,8 +28918,9 @@ var PageModel = /** @class */ (function (_super) {
|
|
28890
28918
|
configurable: true
|
28891
28919
|
});
|
28892
28920
|
PageModel.prototype.calcCssClasses = function (css) {
|
28893
|
-
var classes = { page: {}, pageTitle: "", pageDescription: "", row: "", rowMultiple: "", pageRow: "", rowCompact: "" };
|
28921
|
+
var classes = { page: {}, error: {}, pageTitle: "", pageDescription: "", row: "", rowMultiple: "", pageRow: "", rowCompact: "" };
|
28894
28922
|
this.copyCssClasses(classes.page, css.page);
|
28923
|
+
this.copyCssClasses(classes.error, css.error);
|
28895
28924
|
if (!!css.pageTitle) {
|
28896
28925
|
classes.pageTitle = css.pageTitle;
|
28897
28926
|
}
|
@@ -28939,6 +28968,11 @@ var PageModel = /** @class */ (function (_super) {
|
|
28939
28968
|
enumerable: false,
|
28940
28969
|
configurable: true
|
28941
28970
|
});
|
28971
|
+
PageModel.prototype.getCssError = function (cssClasses) {
|
28972
|
+
return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_2__["CssClassBuilder"]()
|
28973
|
+
.append(_super.prototype.getCssError.call(this, cssClasses))
|
28974
|
+
.append(cssClasses.page.errorsContainer).toString();
|
28975
|
+
};
|
28942
28976
|
Object.defineProperty(PageModel.prototype, "navigationButtonsVisibility", {
|
28943
28977
|
/**
|
28944
28978
|
* Set this property to "hide" to make "Prev", "Next" and "Complete" buttons are invisible for this page. Set this property to "show" to make these buttons visible, even if survey showNavigationButtons property is false.
|
@@ -29435,7 +29469,7 @@ var PanelModelBase = /** @class */ (function (_super) {
|
|
29435
29469
|
Object.defineProperty(PanelModelBase.prototype, "hasTitle", {
|
29436
29470
|
get: function () {
|
29437
29471
|
return ((this.canShowTitle() && this.locTitle.textOrHtml.length > 0) ||
|
29438
|
-
(this.
|
29472
|
+
(this.isDesignMode && (this.showTitle && _settings__WEBPACK_IMPORTED_MODULE_7__["settings"].designMode.showEmptyTitles)));
|
29439
29473
|
},
|
29440
29474
|
enumerable: false,
|
29441
29475
|
configurable: true
|
@@ -30783,6 +30817,16 @@ var PanelModelBase = /** @class */ (function (_super) {
|
|
30783
30817
|
enumerable: false,
|
30784
30818
|
configurable: true
|
30785
30819
|
});
|
30820
|
+
Object.defineProperty(PanelModelBase.prototype, "cssError", {
|
30821
|
+
get: function () {
|
30822
|
+
return this.getCssError(this.cssClasses);
|
30823
|
+
},
|
30824
|
+
enumerable: false,
|
30825
|
+
configurable: true
|
30826
|
+
});
|
30827
|
+
PanelModelBase.prototype.getCssError = function (cssClasses) {
|
30828
|
+
return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_9__["CssClassBuilder"]().append(cssClasses.error.root).toString();
|
30829
|
+
};
|
30786
30830
|
PanelModelBase.prototype.dispose = function () {
|
30787
30831
|
_super.prototype.dispose.call(this);
|
30788
30832
|
if (this.rows) {
|
@@ -30981,11 +31025,17 @@ var PanelModel = /** @class */ (function (_super) {
|
|
30981
31025
|
PanelModel.prototype.setNo = function (visibleIndex) {
|
30982
31026
|
this.setPropertyValue("no", _helpers__WEBPACK_IMPORTED_MODULE_1__["Helpers"].getNumberByIndex(this.visibleIndex, this.getStartIndex()));
|
30983
31027
|
};
|
31028
|
+
PanelModel.prototype.notifyStateChanged = function () {
|
31029
|
+
if (!this.isLoadingFromJson) {
|
31030
|
+
this.locTitle.strChanged();
|
31031
|
+
}
|
31032
|
+
_super.prototype.notifyStateChanged.call(this);
|
31033
|
+
};
|
30984
31034
|
PanelModel.prototype.createLocTitleProperty = function () {
|
30985
31035
|
var _this = this;
|
30986
31036
|
var locTitleValue = _super.prototype.createLocTitleProperty.call(this);
|
30987
31037
|
locTitleValue.onGetTextCallback = function (text) {
|
30988
|
-
if (!text && (_this.
|
31038
|
+
if (!text && (_this.state !== "default")) {
|
30989
31039
|
text = _this.name;
|
30990
31040
|
}
|
30991
31041
|
return text;
|
@@ -31158,26 +31208,17 @@ var PanelModel = /** @class */ (function (_super) {
|
|
31158
31208
|
enumerable: false,
|
31159
31209
|
configurable: true
|
31160
31210
|
});
|
31161
|
-
Object.defineProperty(PanelModel.prototype, "cssError", {
|
31162
|
-
get: function () {
|
31163
|
-
return this.getCssError(this.cssClasses);
|
31164
|
-
},
|
31165
|
-
enumerable: false,
|
31166
|
-
configurable: true
|
31167
|
-
});
|
31168
31211
|
Object.defineProperty(PanelModel.prototype, "showErrorsAbovePanel", {
|
31169
31212
|
get: function () {
|
31170
|
-
return this.isDefaultV2Theme;
|
31213
|
+
return this.isDefaultV2Theme && !this.showPanelAsPage;
|
31171
31214
|
},
|
31172
31215
|
enumerable: false,
|
31173
31216
|
configurable: true
|
31174
31217
|
});
|
31175
31218
|
PanelModel.prototype.getCssError = function (cssClasses) {
|
31176
|
-
var isDefaultV2Theme = this.isDefaultV2Theme;
|
31177
31219
|
var builder = new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_9__["CssClassBuilder"]()
|
31178
|
-
.append(
|
31179
|
-
.append(
|
31180
|
-
.append(this.cssClasses.error.aboveQuestion, isDefaultV2Theme);
|
31220
|
+
.append(_super.prototype.getCssError.call(this, cssClasses))
|
31221
|
+
.append(cssClasses.panel.errorsContainer);
|
31181
31222
|
return builder.append("panel-error-root", builder.isEmpty()).toString();
|
31182
31223
|
};
|
31183
31224
|
PanelModel.prototype.onVisibleChanged = function () {
|
@@ -31198,16 +31239,23 @@ var PanelModel = /** @class */ (function (_super) {
|
|
31198
31239
|
this.survey.whenPanelFocusIn(this);
|
31199
31240
|
};
|
31200
31241
|
PanelModel.prototype.getHasFrameV2 = function () {
|
31201
|
-
return _super.prototype.getHasFrameV2.call(this) &&
|
31242
|
+
return _super.prototype.getHasFrameV2.call(this) && !this.showPanelAsPage;
|
31202
31243
|
};
|
31203
31244
|
PanelModel.prototype.getIsNested = function () {
|
31204
31245
|
return _super.prototype.getIsNested.call(this) && this.parent !== undefined;
|
31205
31246
|
};
|
31247
|
+
Object.defineProperty(PanelModel.prototype, "showPanelAsPage", {
|
31248
|
+
get: function () {
|
31249
|
+
return !!this.originalPage && !this.survey.isShowingPreview;
|
31250
|
+
},
|
31251
|
+
enumerable: false,
|
31252
|
+
configurable: true
|
31253
|
+
});
|
31206
31254
|
PanelModel.prototype.getCssRoot = function (cssClasses) {
|
31207
31255
|
return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_9__["CssClassBuilder"]()
|
31208
31256
|
.append(_super.prototype.getCssRoot.call(this, cssClasses))
|
31209
31257
|
.append(cssClasses.container)
|
31210
|
-
.append(cssClasses.asPage,
|
31258
|
+
.append(cssClasses.asPage, this.showPanelAsPage)
|
31211
31259
|
.append(cssClasses.invisible, !this.isDesignMode && this.areInvisibleElementsShowing && !this.visible)
|
31212
31260
|
.toString();
|
31213
31261
|
};
|
@@ -35288,9 +35336,9 @@ var Question = /** @class */ (function (_super) {
|
|
35288
35336
|
Question.prototype.getCssError = function (cssClasses) {
|
35289
35337
|
return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_10__["CssClassBuilder"]()
|
35290
35338
|
.append(cssClasses.error.root)
|
35291
|
-
.append(cssClasses.
|
35292
|
-
.append(cssClasses.
|
35293
|
-
.append(cssClasses.
|
35339
|
+
.append(cssClasses.errorsContainer, this.showErrorsBelowQuestion || this.showErrorsAboveQuestion)
|
35340
|
+
.append(cssClasses.errorsContainerTop, this.showErrorsAboveQuestion)
|
35341
|
+
.append(cssClasses.errorsContainerBottom, this.showErrorsBelowQuestion)
|
35294
35342
|
.append(cssClasses.error.locationTop, this.showErrorOnTop)
|
35295
35343
|
.append(cssClasses.error.locationBottom, this.showErrorOnBottom)
|
35296
35344
|
.toString();
|
@@ -36017,6 +36065,8 @@ var Question = /** @class */ (function (_super) {
|
|
36017
36065
|
* - `{row.other_question_name}` (to access questions inside the same dynamic matrix or multi-column dropdown)
|
36018
36066
|
*
|
36019
36067
|
* An expression can also include built-in and custom functions for advanced calculations. For example, if the `defaultValue` should be today's date, set the `defaultValueExpression` to `"today()"`, and the corresponding built-in function will be executed each time the survey is loaded. Refer to the following help topic for more information: [Built-In Functions](https://surveyjs.io/form-library/documentation/design-survey-conditional-logic#built-in-functions).
|
36068
|
+
*
|
36069
|
+
* [View Demo](https://surveyjs.io/form-library/examples/specify-default-question-value-dynamically (linkStyle))
|
36020
36070
|
* @see defaultValue
|
36021
36071
|
* @see setValueExpression
|
36022
36072
|
*/
|
@@ -36722,7 +36772,7 @@ var Question = /** @class */ (function (_super) {
|
|
36722
36772
|
});
|
36723
36773
|
}
|
36724
36774
|
else {
|
36725
|
-
this.updateValueFromSurveyCore(newValue,
|
36775
|
+
this.updateValueFromSurveyCore(newValue, this.data !== this.getSurvey());
|
36726
36776
|
}
|
36727
36777
|
this.updateDependedQuestions();
|
36728
36778
|
this.updateIsAnswered();
|
@@ -44022,14 +44072,22 @@ var QuestionFileModel = /** @class */ (function (_super) {
|
|
44022
44072
|
}
|
44023
44073
|
else {
|
44024
44074
|
if (_this.survey) {
|
44025
|
-
_this.survey.uploadFiles(_this, _this.name, files, function (
|
44026
|
-
if (
|
44027
|
-
_this.
|
44028
|
-
|
44029
|
-
|
44075
|
+
_this.survey.uploadFiles(_this, _this.name, files, function (arg1, arg2) {
|
44076
|
+
if (Array.isArray(arg1)) {
|
44077
|
+
_this.value = (_this.value || []).concat(arg1.map(function (r) {
|
44078
|
+
return {
|
44079
|
+
name: r.file.name,
|
44080
|
+
type: r.file.type,
|
44081
|
+
content: r.content,
|
44082
|
+
};
|
44083
|
+
}));
|
44084
|
+
if (Array.isArray(arg2)) {
|
44085
|
+
arg2.forEach(function (error) { return _this.errors.push(new _error__WEBPACK_IMPORTED_MODULE_4__["UploadingFileError"](error, _this)); });
|
44086
|
+
_this.stateChanged("error");
|
44087
|
+
}
|
44030
44088
|
}
|
44031
|
-
if (
|
44032
|
-
_this.value = (_this.value || []).concat(
|
44089
|
+
if (arg1 === "success" && Array.isArray(arg2)) {
|
44090
|
+
_this.value = (_this.value || []).concat(arg2.map(function (r) {
|
44033
44091
|
return {
|
44034
44092
|
name: r.file.name,
|
44035
44093
|
type: r.file.type,
|
@@ -44037,6 +44095,16 @@ var QuestionFileModel = /** @class */ (function (_super) {
|
|
44037
44095
|
};
|
44038
44096
|
}));
|
44039
44097
|
}
|
44098
|
+
if (arg1 === "error") {
|
44099
|
+
if (typeof (arg2) === "string") {
|
44100
|
+
_this.errors.push(new _error__WEBPACK_IMPORTED_MODULE_4__["UploadingFileError"](arg2, _this));
|
44101
|
+
}
|
44102
|
+
if (Array.isArray(arg2) && arg2.length > 0) {
|
44103
|
+
arg2.forEach(function (error) { return _this.errors.push(new _error__WEBPACK_IMPORTED_MODULE_4__["UploadingFileError"](error, _this)); });
|
44104
|
+
}
|
44105
|
+
_this.stateChanged("error");
|
44106
|
+
}
|
44107
|
+
_this.stateChanged("loaded");
|
44040
44108
|
});
|
44041
44109
|
}
|
44042
44110
|
}
|
@@ -49043,6 +49111,7 @@ var QuestionMatrixDropdownModelBase = /** @class */ (function (_super) {
|
|
49043
49111
|
this.onCreateDetailPanelCallback(row, panel);
|
49044
49112
|
}
|
49045
49113
|
panel.questions.forEach(function (q) { return q.setParentQuestion(_this); });
|
49114
|
+
panel.onSurveyLoad();
|
49046
49115
|
return panel;
|
49047
49116
|
};
|
49048
49117
|
QuestionMatrixDropdownModelBase.prototype.getSharedQuestionByName = function (columnName, row) {
|
@@ -50738,7 +50807,10 @@ var QuestionMatrixDropdownRenderedTable = /** @class */ (function (_super) {
|
|
50738
50807
|
this.footerRow.cells.push(this.createHeaderCell(null, "action"));
|
50739
50808
|
}
|
50740
50809
|
if (this.matrix.hasRowText) {
|
50741
|
-
this.
|
50810
|
+
var cell_1 = this.createTextCell(this.matrix.getFooterText());
|
50811
|
+
cell_1.className = new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_5__["CssClassBuilder"]().append(cell_1.className)
|
50812
|
+
.append(this.cssClasses.footerTotalCell).toString();
|
50813
|
+
this.footerRow.cells.push(cell_1);
|
50742
50814
|
}
|
50743
50815
|
var cells = this.matrix.visibleTotalRow.cells;
|
50744
50816
|
for (var i = 0; i < cells.length; i++) {
|
@@ -50753,6 +50825,8 @@ var QuestionMatrixDropdownRenderedTable = /** @class */ (function (_super) {
|
|
50753
50825
|
if (cell.column) {
|
50754
50826
|
this.setHeaderCellWidth(cell.column, editCell);
|
50755
50827
|
}
|
50828
|
+
editCell.className = new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_5__["CssClassBuilder"]().append(editCell.className)
|
50829
|
+
.append(this.cssClasses.footerCell).toString();
|
50756
50830
|
this.footerRow.cells.push(editCell);
|
50757
50831
|
}
|
50758
50832
|
}
|
@@ -57106,6 +57180,15 @@ var RenderedRatingItem = /** @class */ (function (_super) {
|
|
57106
57180
|
return RenderedRatingItem;
|
57107
57181
|
}(_base__WEBPACK_IMPORTED_MODULE_7__["Base"]));
|
57108
57182
|
|
57183
|
+
var RatingItemValue = /** @class */ (function (_super) {
|
57184
|
+
__extends(RatingItemValue, _super);
|
57185
|
+
function RatingItemValue(value, description) {
|
57186
|
+
var _this = _super.call(this, value) || this;
|
57187
|
+
_this.description = description;
|
57188
|
+
return _this;
|
57189
|
+
}
|
57190
|
+
return RatingItemValue;
|
57191
|
+
}(_itemvalue__WEBPACK_IMPORTED_MODULE_0__["ItemValue"]));
|
57109
57192
|
/**
|
57110
57193
|
* A class that describes the Rating Scale question type.
|
57111
57194
|
*
|
@@ -57400,18 +57483,7 @@ var QuestionRatingModel = /** @class */ (function (_super) {
|
|
57400
57483
|
rateValues = this.rateValues;
|
57401
57484
|
}
|
57402
57485
|
else {
|
57403
|
-
|
57404
|
-
var value = this.rateMin;
|
57405
|
-
var step = this.rateStep;
|
57406
|
-
while (value <= this.rateMax &&
|
57407
|
-
res.length < _settings__WEBPACK_IMPORTED_MODULE_4__["settings"].ratingMaximumRateValueCount) {
|
57408
|
-
var item = new _itemvalue__WEBPACK_IMPORTED_MODULE_0__["ItemValue"](value);
|
57409
|
-
item.locOwner = this;
|
57410
|
-
item.ownerPropertyName = "rateValues";
|
57411
|
-
res.push(item);
|
57412
|
-
value = this.correctValue(value + step, step);
|
57413
|
-
}
|
57414
|
-
rateValues = res;
|
57486
|
+
rateValues = this.createRateValues();
|
57415
57487
|
}
|
57416
57488
|
if (this.rateType == "smileys" && rateValues.length > 10)
|
57417
57489
|
rateValues = rateValues.slice(0, 10);
|
@@ -57428,6 +57500,27 @@ var QuestionRatingModel = /** @class */ (function (_super) {
|
|
57428
57500
|
return renderedItem;
|
57429
57501
|
});
|
57430
57502
|
};
|
57503
|
+
QuestionRatingModel.prototype.createRateValues = function () {
|
57504
|
+
var res = [];
|
57505
|
+
var value = this.rateMin;
|
57506
|
+
var step = this.rateStep;
|
57507
|
+
while (value <= this.rateMax &&
|
57508
|
+
res.length < _settings__WEBPACK_IMPORTED_MODULE_4__["settings"].ratingMaximumRateValueCount) {
|
57509
|
+
var description = void 0;
|
57510
|
+
if (value === this.rateMin) {
|
57511
|
+
description = this.minRateDescription && this.locMinRateDescription;
|
57512
|
+
}
|
57513
|
+
if (value === this.rateMax || res.length === _settings__WEBPACK_IMPORTED_MODULE_4__["settings"].ratingMaximumRateValueCount) {
|
57514
|
+
description = this.maxRateDescription && this.locMaxRateDescription;
|
57515
|
+
}
|
57516
|
+
var item = new RatingItemValue(value, description);
|
57517
|
+
item.locOwner = this;
|
57518
|
+
item.ownerPropertyName = "rateValues";
|
57519
|
+
res.push(item);
|
57520
|
+
value = this.correctValue(value + step, step);
|
57521
|
+
}
|
57522
|
+
return res;
|
57523
|
+
};
|
57431
57524
|
QuestionRatingModel.prototype.correctValue = function (value, step) {
|
57432
57525
|
if (!value)
|
57433
57526
|
return value;
|
@@ -57550,7 +57643,7 @@ var QuestionRatingModel = /** @class */ (function (_super) {
|
|
57550
57643
|
});
|
57551
57644
|
QuestionRatingModel.prototype.getDefaultItemComponent = function () {
|
57552
57645
|
if (this.renderAs == "dropdown")
|
57553
|
-
return "";
|
57646
|
+
return "sv-rating-dropdown-item";
|
57554
57647
|
if (this.isStar)
|
57555
57648
|
return "sv-rating-item-star";
|
57556
57649
|
if (this.isSmiley)
|
@@ -62367,6 +62460,77 @@ survey_core__WEBPACK_IMPORTED_MODULE_2__["settings"].showModal = showModal;
|
|
62367
62460
|
survey_core__WEBPACK_IMPORTED_MODULE_2__["settings"].showDialog = showDialog;
|
62368
62461
|
|
62369
62462
|
|
62463
|
+
/***/ }),
|
62464
|
+
|
62465
|
+
/***/ "./src/react/components/rating/rating-dropdown-item.tsx":
|
62466
|
+
/*!**************************************************************!*\
|
62467
|
+
!*** ./src/react/components/rating/rating-dropdown-item.tsx ***!
|
62468
|
+
\**************************************************************/
|
62469
|
+
/*! exports provided: RatingDropdownItem */
|
62470
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
62471
|
+
|
62472
|
+
"use strict";
|
62473
|
+
__webpack_require__.r(__webpack_exports__);
|
62474
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "RatingDropdownItem", function() { return RatingDropdownItem; });
|
62475
|
+
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "react");
|
62476
|
+
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
|
62477
|
+
/* harmony import */ var _element_factory__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../element-factory */ "./src/react/element-factory.tsx");
|
62478
|
+
/* harmony import */ var _reactquestion_element__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../reactquestion_element */ "./src/react/reactquestion_element.tsx");
|
62479
|
+
var __extends = (undefined && undefined.__extends) || (function () {
|
62480
|
+
var extendStatics = function (d, b) {
|
62481
|
+
extendStatics = Object.setPrototypeOf ||
|
62482
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
62483
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
62484
|
+
return extendStatics(d, b);
|
62485
|
+
};
|
62486
|
+
return function (d, b) {
|
62487
|
+
if (typeof b !== "function" && b !== null)
|
62488
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
62489
|
+
extendStatics(d, b);
|
62490
|
+
function __() { this.constructor = d; }
|
62491
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
62492
|
+
};
|
62493
|
+
})();
|
62494
|
+
|
62495
|
+
|
62496
|
+
|
62497
|
+
var RatingDropdownItem = /** @class */ (function (_super) {
|
62498
|
+
__extends(RatingDropdownItem, _super);
|
62499
|
+
function RatingDropdownItem() {
|
62500
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
62501
|
+
}
|
62502
|
+
Object.defineProperty(RatingDropdownItem.prototype, "item", {
|
62503
|
+
get: function () {
|
62504
|
+
return this.props.item;
|
62505
|
+
},
|
62506
|
+
enumerable: false,
|
62507
|
+
configurable: true
|
62508
|
+
});
|
62509
|
+
RatingDropdownItem.prototype.getStateElement = function () {
|
62510
|
+
return this.item;
|
62511
|
+
};
|
62512
|
+
RatingDropdownItem.prototype.render = function () {
|
62513
|
+
if (!this.item)
|
62514
|
+
return null;
|
62515
|
+
var item = this.props.item;
|
62516
|
+
var description = this.renderDescription(item);
|
62517
|
+
return (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div", { className: "sd-rating-dropdown-item" },
|
62518
|
+
react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("span", { className: "sd-rating-dropdown-item_text" }, item.title),
|
62519
|
+
description));
|
62520
|
+
};
|
62521
|
+
RatingDropdownItem.prototype.renderDescription = function (item) {
|
62522
|
+
if (!item.description)
|
62523
|
+
return null;
|
62524
|
+
return (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div", { className: "sd-rating-dropdown-item_description" }, this.renderLocString(item.description, undefined, "locString")));
|
62525
|
+
};
|
62526
|
+
return RatingDropdownItem;
|
62527
|
+
}(_reactquestion_element__WEBPACK_IMPORTED_MODULE_2__["SurveyElementBase"]));
|
62528
|
+
|
62529
|
+
_element_factory__WEBPACK_IMPORTED_MODULE_1__["ReactElementFactory"].Instance.registerElement("sv-rating-dropdown-item", function (props) {
|
62530
|
+
return react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement(RatingDropdownItem, props);
|
62531
|
+
});
|
62532
|
+
|
62533
|
+
|
62370
62534
|
/***/ }),
|
62371
62535
|
|
62372
62536
|
/***/ "./src/react/components/rating/rating-item-smiley.tsx":
|
@@ -64281,6 +64445,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
64281
64445
|
/* harmony import */ var _reactquestion_element__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./reactquestion_element */ "./src/react/reactquestion_element.tsx");
|
64282
64446
|
/* harmony import */ var _panel_base__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./panel-base */ "./src/react/panel-base.tsx");
|
64283
64447
|
/* harmony import */ var _components_title_title_element__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./components/title/title-element */ "./src/react/components/title/title-element.tsx");
|
64448
|
+
/* harmony import */ var _reactquestion__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./reactquestion */ "./src/react/reactquestion.tsx");
|
64284
64449
|
var __extends = (undefined && undefined.__extends) || (function () {
|
64285
64450
|
var extendStatics = function (d, b) {
|
64286
64451
|
extendStatics = Object.setPrototypeOf ||
|
@@ -64300,6 +64465,7 @@ var __extends = (undefined && undefined.__extends) || (function () {
|
|
64300
64465
|
|
64301
64466
|
|
64302
64467
|
|
64468
|
+
|
64303
64469
|
var SurveyPage = /** @class */ (function (_super) {
|
64304
64470
|
__extends(SurveyPage, _super);
|
64305
64471
|
function SurveyPage(props) {
|
@@ -64319,9 +64485,11 @@ var SurveyPage = /** @class */ (function (_super) {
|
|
64319
64485
|
var title = this.renderTitle();
|
64320
64486
|
var description = this.renderDescription();
|
64321
64487
|
var rows = this.renderRows(this.panelBase.cssClasses);
|
64488
|
+
var errors = (react__WEBPACK_IMPORTED_MODULE_0__["createElement"](_reactquestion__WEBPACK_IMPORTED_MODULE_4__["SurveyElementErrors"], { element: this.panelBase, cssClasses: this.panelBase.cssClasses, creator: this.creator }));
|
64322
64489
|
return (react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { ref: this.rootRef, className: this.page.cssRoot },
|
64323
64490
|
title,
|
64324
64491
|
description,
|
64492
|
+
errors,
|
64325
64493
|
rows));
|
64326
64494
|
};
|
64327
64495
|
SurveyPage.prototype.renderTitle = function () {
|
@@ -64618,7 +64786,7 @@ _element_factory__WEBPACK_IMPORTED_MODULE_3__["ReactElementFactory"].Instance.re
|
|
64618
64786
|
/*!***************************************!*\
|
64619
64787
|
!*** ./src/react/rating-dropdown.tsx ***!
|
64620
64788
|
\***************************************/
|
64621
|
-
/*! exports provided: SurveyQuestionRatingDropdown */
|
64789
|
+
/*! exports provided: RatingDropdownItem, SurveyQuestionRatingDropdown */
|
64622
64790
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
64623
64791
|
|
64624
64792
|
"use strict";
|
@@ -64629,6 +64797,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
64629
64797
|
/* harmony import */ var survey_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! survey-core */ "./src/entries/core.ts");
|
64630
64798
|
/* harmony import */ var _dropdown_base__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./dropdown-base */ "./src/react/dropdown-base.tsx");
|
64631
64799
|
/* harmony import */ var _reactquestion_factory__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./reactquestion_factory */ "./src/react/reactquestion_factory.tsx");
|
64800
|
+
/* harmony import */ var _components_rating_rating_dropdown_item__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./components/rating/rating-dropdown-item */ "./src/react/components/rating/rating-dropdown-item.tsx");
|
64801
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "RatingDropdownItem", function() { return _components_rating_rating_dropdown_item__WEBPACK_IMPORTED_MODULE_4__["RatingDropdownItem"]; });
|
64802
|
+
|
64632
64803
|
var __extends = (undefined && undefined.__extends) || (function () {
|
64633
64804
|
var extendStatics = function (d, b) {
|
64634
64805
|
extendStatics = Object.setPrototypeOf ||
|
@@ -64648,6 +64819,7 @@ var __extends = (undefined && undefined.__extends) || (function () {
|
|
64648
64819
|
|
64649
64820
|
|
64650
64821
|
|
64822
|
+
|
64651
64823
|
var SurveyQuestionRatingDropdown = /** @class */ (function (_super) {
|
64652
64824
|
__extends(SurveyQuestionRatingDropdown, _super);
|
64653
64825
|
function SurveyQuestionRatingDropdown(props) {
|
@@ -73181,7 +73353,8 @@ var SurveyModel = /** @class */ (function (_super) {
|
|
73181
73353
|
* Specifies whether to hide validation errors thrown by the Required validation in the UI.
|
73182
73354
|
*
|
73183
73355
|
* [Built-In Client-Side Validators](https://surveyjs.io/form-library/documentation/data-validation#built-in-client-side-validators (linkStyle))
|
73184
|
-
* @see
|
73356
|
+
* @see validationEnabled
|
73357
|
+
* @see validationAllowSwitchPages
|
73185
73358
|
*/
|
73186
73359
|
_this.hideRequiredErrors = false;
|
73187
73360
|
//#endregion
|
@@ -73190,15 +73363,27 @@ var SurveyModel = /** @class */ (function (_super) {
|
|
73190
73363
|
_this._isCompact = false;
|
73191
73364
|
_this._isDesignMode = false;
|
73192
73365
|
/**
|
73193
|
-
* Specifies whether
|
73366
|
+
* Specifies whether data validation is enabled.
|
73194
73367
|
*
|
73195
|
-
* Default value: `
|
73368
|
+
* Default value: `true`
|
73369
|
+
* @see checkErrorsMode
|
73196
73370
|
* @see hideRequiredErrors
|
73197
|
-
* @see nextPage
|
73198
|
-
* @see isPrevPage
|
73199
|
-
* @see completeLastPage
|
73200
73371
|
*/
|
73201
|
-
_this.
|
73372
|
+
_this.validationEnabled = true;
|
73373
|
+
/**
|
73374
|
+
* Specifies whether respondents can switch the current page even if it contains validation errors.
|
73375
|
+
*
|
73376
|
+
* Default value: `false`
|
73377
|
+
* @see checkErrorsMode
|
73378
|
+
*/
|
73379
|
+
_this.validationAllowSwitchPages = false;
|
73380
|
+
/**
|
73381
|
+
* Specifies whether respondents can end a survey with validation errors.
|
73382
|
+
*
|
73383
|
+
* Default value: `false`
|
73384
|
+
* @see checkErrorsMode
|
73385
|
+
*/
|
73386
|
+
_this.validationAllowComplete = false;
|
73202
73387
|
_this.isNavigationButtonPressed = false;
|
73203
73388
|
_this.mouseDownPage = null;
|
73204
73389
|
_this.isCalculatingProgressText = false;
|
@@ -73632,6 +73817,17 @@ var SurveyModel = /** @class */ (function (_super) {
|
|
73632
73817
|
enumerable: false,
|
73633
73818
|
configurable: true
|
73634
73819
|
});
|
73820
|
+
SurveyModel.prototype.insertAdvancedHeader = function (advHeader) {
|
73821
|
+
advHeader.survey = this;
|
73822
|
+
this.layoutElements.push({
|
73823
|
+
id: "advanced-header",
|
73824
|
+
container: "header",
|
73825
|
+
component: "sv-header",
|
73826
|
+
index: -100,
|
73827
|
+
data: advHeader,
|
73828
|
+
processResponsiveness: function (width) { return advHeader.processResponsiveness(width); }
|
73829
|
+
});
|
73830
|
+
};
|
73635
73831
|
SurveyModel.prototype.getNavigationCss = function (main, btn) {
|
73636
73832
|
return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_18__["CssClassBuilder"]().append(main)
|
73637
73833
|
.append(btn).toString();
|
@@ -74166,6 +74362,10 @@ var SurveyModel = /** @class */ (function (_super) {
|
|
74166
74362
|
* - `"onComplete"` - Triggers validation when a user clicks the Complete button. If previous pages contain errors, the survey switches to the page with the first error.
|
74167
74363
|
*
|
74168
74364
|
* Refer to the following help topic for more information: [Data Validation](https://surveyjs.io/form-library/documentation/data-validation).
|
74365
|
+
* @see validationEnabled
|
74366
|
+
* @see validationAllowSwitchPages
|
74367
|
+
* @see validationAllowComplete
|
74368
|
+
* @see validate
|
74169
74369
|
*/
|
74170
74370
|
get: function () {
|
74171
74371
|
return this.getPropertyValue("checkErrorsMode");
|
@@ -76496,6 +76696,15 @@ var SurveyModel = /** @class */ (function (_super) {
|
|
76496
76696
|
return;
|
76497
76697
|
document.cookie = this.cookieName + "=;";
|
76498
76698
|
};
|
76699
|
+
Object.defineProperty(SurveyModel.prototype, "ignoreValidation", {
|
76700
|
+
/**
|
76701
|
+
* This property is obsolete. Use the [`validationEnabled`](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#validationEnabled) property instead.
|
76702
|
+
*/
|
76703
|
+
get: function () { return !this.validationEnabled; },
|
76704
|
+
set: function (val) { this.validationEnabled = !val; },
|
76705
|
+
enumerable: false,
|
76706
|
+
configurable: true
|
76707
|
+
});
|
76499
76708
|
/**
|
76500
76709
|
* Switches the survey to the next page.
|
76501
76710
|
*
|
@@ -76512,19 +76721,20 @@ var SurveyModel = /** @class */ (function (_super) {
|
|
76512
76721
|
};
|
76513
76722
|
SurveyModel.prototype.hasErrorsOnNavigate = function (doComplete) {
|
76514
76723
|
var _this = this;
|
76515
|
-
if (this.
|
76724
|
+
if (!this.isEditMode || this.ignoreValidation)
|
76516
76725
|
return false;
|
76726
|
+
var skipValidation = doComplete && this.validationAllowComplete || !doComplete && this.validationAllowSwitchPages;
|
76517
76727
|
var func = function (hasErrors) {
|
76518
|
-
if (!hasErrors) {
|
76728
|
+
if (!hasErrors || skipValidation) {
|
76519
76729
|
_this.doCurrentPageCompleteCore(doComplete);
|
76520
76730
|
}
|
76521
76731
|
};
|
76522
76732
|
if (this.isValidateOnComplete) {
|
76523
76733
|
if (!this.isLastPage)
|
76524
76734
|
return false;
|
76525
|
-
return this.validate(true, true, func) !== true;
|
76735
|
+
return this.validate(true, true, func) !== true && !skipValidation;
|
76526
76736
|
}
|
76527
|
-
return this.validateCurrentPage(func) !== true;
|
76737
|
+
return this.validateCurrentPage(func) !== true && !skipValidation;
|
76528
76738
|
};
|
76529
76739
|
SurveyModel.prototype.checkForAsyncQuestionValidation = function (questions, func) {
|
76530
76740
|
var _this = this;
|
@@ -77884,7 +78094,7 @@ var SurveyModel = /** @class */ (function (_super) {
|
|
77884
78094
|
});
|
77885
78095
|
Object.defineProperty(SurveyModel.prototype, "isValidateOnComplete", {
|
77886
78096
|
get: function () {
|
77887
|
-
return this.checkErrorsMode === "onComplete";
|
78097
|
+
return this.checkErrorsMode === "onComplete" || this.validationAllowSwitchPages && !this.validationAllowComplete;
|
77888
78098
|
},
|
77889
78099
|
enumerable: false,
|
77890
78100
|
configurable: true
|
@@ -78035,13 +78245,13 @@ var SurveyModel = /** @class */ (function (_super) {
|
|
78035
78245
|
* @param question A [File Upload question instance](https://surveyjs.io/form-library/documentation/api-reference/file-model).
|
78036
78246
|
* @param name The File Upload question's [`name`](https://surveyjs.io/form-library/documentation/api-reference/file-model#name).
|
78037
78247
|
* @param files An array of JavaScript <a href="https://developer.mozilla.org/en-US/docs/Web/API/File" target="_blank">File</a> objects that represent files to upload.
|
78038
|
-
* @param callback A callback function that allows you to
|
78248
|
+
* @param callback A callback function that allows you to access successfully uploaded files as the first argument. If any files fail to upload, the second argument contains an array of error messages.
|
78039
78249
|
* @see onUploadFiles
|
78040
78250
|
* @see downloadFile
|
78041
78251
|
*/
|
78042
78252
|
SurveyModel.prototype.uploadFiles = function (question, name, files, callback) {
|
78043
78253
|
if (this.onUploadFiles.isEmpty) {
|
78044
|
-
callback("error",
|
78254
|
+
callback("error", this.getLocString("noUploadFilesHandler"));
|
78045
78255
|
}
|
78046
78256
|
else {
|
78047
78257
|
this.onUploadFiles.fire(this, {
|
@@ -80167,6 +80377,11 @@ var SurveyModel = /** @class */ (function (_super) {
|
|
80167
80377
|
SurveyModel.prototype.stopMovingQuestion = function () {
|
80168
80378
|
this.isMovingQuestion = false;
|
80169
80379
|
};
|
80380
|
+
Object.defineProperty(SurveyModel.prototype, "isQuestionDragging", {
|
80381
|
+
get: function () { return this.isMovingQuestion; },
|
80382
|
+
enumerable: false,
|
80383
|
+
configurable: true
|
80384
|
+
});
|
80170
80385
|
/**
|
80171
80386
|
* Focuses a question with a specified name. Switches the current page if needed.
|
80172
80387
|
* @param name A question name.
|
@@ -80355,6 +80570,7 @@ var SurveyModel = /** @class */ (function (_super) {
|
|
80355
80570
|
}
|
80356
80571
|
}
|
80357
80572
|
}
|
80573
|
+
containerLayoutElements.sort(function (a, b) { return (a.index || 0) - (b.index || 0); });
|
80358
80574
|
return containerLayoutElements;
|
80359
80575
|
};
|
80360
80576
|
SurveyModel.prototype.processPopupVisiblityChanged = function (question, popup, visible) {
|
@@ -80373,15 +80589,10 @@ var SurveyModel = /** @class */ (function (_super) {
|
|
80373
80589
|
Object.keys(theme).forEach(function (key) {
|
80374
80590
|
if (key === "header") {
|
80375
80591
|
_this.removeLayoutElement("advanced-header");
|
80376
|
-
var
|
80377
|
-
|
80378
|
-
_this.
|
80379
|
-
|
80380
|
-
container: "header",
|
80381
|
-
component: "sv-header",
|
80382
|
-
data: advHeader_1,
|
80383
|
-
processResponsiveness: function (width) { return advHeader_1.processResponsiveness(width); }
|
80384
|
-
});
|
80592
|
+
var advHeader = new _header__WEBPACK_IMPORTED_MODULE_20__["Cover"]();
|
80593
|
+
advHeader.fromTheme(theme);
|
80594
|
+
_this.insertAdvancedHeader(advHeader);
|
80595
|
+
_this.headerView = "advanced";
|
80385
80596
|
}
|
80386
80597
|
if (key === "isPanelless") {
|
80387
80598
|
_this.isCompact = theme[key];
|
@@ -80478,14 +80689,7 @@ var SurveyModel = /** @class */ (function (_super) {
|
|
80478
80689
|
advHeader.titlePositionY = "middle";
|
80479
80690
|
advHeader.descriptionPositionX = target.logoPosition === "right" ? "left" : "right";
|
80480
80691
|
advHeader.descriptionPositionY = "middle";
|
80481
|
-
advHeader
|
80482
|
-
target.layoutElements.unshift({
|
80483
|
-
id: "advanced-header",
|
80484
|
-
container: "header",
|
80485
|
-
component: "sv-header",
|
80486
|
-
data: advHeader,
|
80487
|
-
processResponsiveness: function (width) { return advHeader.processResponsiveness(width); }
|
80488
|
-
});
|
80692
|
+
target.insertAdvancedHeader(advHeader);
|
80489
80693
|
}
|
80490
80694
|
}
|
80491
80695
|
else {
|