survey-react-ui 1.9.117 → 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/package.json +2 -2
- package/survey-react-ui.js +337 -175
- package/survey-react-ui.js.map +1 -1
- package/survey-react-ui.min.js +2 -2
- package/typings/entries/react-ui-model.d.ts +1 -0
- package/typings/react/components/rating/rating-dropdown-item.d.ts +12 -0
- package/typings/react/rating-dropdown.d.ts +1 -0
- package/typings/react/reactquestion_comment.d.ts +4 -2
package/survey-react-ui.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
|
*/
|
|
@@ -657,7 +657,7 @@ var Base = /** @class */ (function () {
|
|
|
657
657
|
Base.prototype.resetPropertyValue = function (name) {
|
|
658
658
|
var locStr = this.localizableStrings ? this.localizableStrings[name] : undefined;
|
|
659
659
|
if (locStr) {
|
|
660
|
-
locStr.
|
|
660
|
+
locStr.clear();
|
|
661
661
|
}
|
|
662
662
|
else {
|
|
663
663
|
this.setPropertyValue(name, undefined);
|
|
@@ -1519,7 +1519,20 @@ var ProcessValue = /** @class */ (function () {
|
|
|
1519
1519
|
return res;
|
|
1520
1520
|
};
|
|
1521
1521
|
ProcessValue.prototype.getNonNestedObject = function (obj, text, createPath) {
|
|
1522
|
-
var
|
|
1522
|
+
var checkedKeys = new Array();
|
|
1523
|
+
var len = 0;
|
|
1524
|
+
var res = this.getNonNestedObjectCore(obj, text, createPath, checkedKeys);
|
|
1525
|
+
while (!res && len < checkedKeys.length) {
|
|
1526
|
+
len = checkedKeys.length;
|
|
1527
|
+
res = this.getNonNestedObjectCore(obj, text, createPath, checkedKeys);
|
|
1528
|
+
}
|
|
1529
|
+
return res;
|
|
1530
|
+
};
|
|
1531
|
+
ProcessValue.prototype.getNonNestedObjectCore = function (obj, text, createPath, checkedKeys) {
|
|
1532
|
+
var curName = this.getFirstPropertyName(text, obj, createPath, checkedKeys);
|
|
1533
|
+
if (!!curName) {
|
|
1534
|
+
checkedKeys.push(curName);
|
|
1535
|
+
}
|
|
1523
1536
|
var path = !!curName ? [curName] : null;
|
|
1524
1537
|
while (text != curName && !!obj) {
|
|
1525
1538
|
var isArray = text[0] == "[";
|
|
@@ -1542,7 +1555,7 @@ var ProcessValue = /** @class */ (function () {
|
|
|
1542
1555
|
if (!!text && text[0] == ".") {
|
|
1543
1556
|
text = text.substring(1);
|
|
1544
1557
|
}
|
|
1545
|
-
curName = this.getFirstPropertyName(text, obj, createPath);
|
|
1558
|
+
curName = this.getFirstPropertyName(text, obj, createPath, checkedKeys);
|
|
1546
1559
|
if (!!curName) {
|
|
1547
1560
|
path.push(curName);
|
|
1548
1561
|
}
|
|
@@ -1564,8 +1577,9 @@ var ProcessValue = /** @class */ (function () {
|
|
|
1564
1577
|
return null;
|
|
1565
1578
|
return { value: curValue[index], text: text, index: index };
|
|
1566
1579
|
};
|
|
1567
|
-
ProcessValue.prototype.getFirstPropertyName = function (name, obj, createProp) {
|
|
1580
|
+
ProcessValue.prototype.getFirstPropertyName = function (name, obj, createProp, checkedKeys) {
|
|
1568
1581
|
if (createProp === void 0) { createProp = false; }
|
|
1582
|
+
if (checkedKeys === void 0) { checkedKeys = undefined; }
|
|
1569
1583
|
if (!name)
|
|
1570
1584
|
return name;
|
|
1571
1585
|
if (!obj)
|
|
@@ -1576,6 +1590,8 @@ var ProcessValue = /** @class */ (function () {
|
|
|
1576
1590
|
var A = nameInLow[0];
|
|
1577
1591
|
var a = A.toUpperCase();
|
|
1578
1592
|
for (var key in obj) {
|
|
1593
|
+
if (Array.isArray(checkedKeys) && checkedKeys.indexOf(key) > -1)
|
|
1594
|
+
continue;
|
|
1579
1595
|
var first = key[0];
|
|
1580
1596
|
if (first === a || first === A) {
|
|
1581
1597
|
var keyName = key.toLowerCase();
|
|
@@ -1975,7 +1991,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
1975
1991
|
/*!***************************************!*\
|
|
1976
1992
|
!*** ./src/entries/react-ui-model.ts ***!
|
|
1977
1993
|
\***************************************/
|
|
1978
|
-
/*! 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 */
|
|
1994
|
+
/*! 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 */
|
|
1979
1995
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
1980
1996
|
|
|
1981
1997
|
"use strict";
|
|
@@ -2044,210 +2060,213 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
2044
2060
|
/* 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");
|
|
2045
2061
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "RatingItemSmiley", function() { return _react_components_rating_rating_item_smiley__WEBPACK_IMPORTED_MODULE_15__["RatingItemSmiley"]; });
|
|
2046
2062
|
|
|
2047
|
-
/* harmony import */ var
|
|
2048
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "
|
|
2063
|
+
/* 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");
|
|
2064
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "RatingDropdownItem", function() { return _react_components_rating_rating_dropdown_item__WEBPACK_IMPORTED_MODULE_16__["RatingDropdownItem"]; });
|
|
2065
|
+
|
|
2066
|
+
/* harmony import */ var _react_tagbox_filter__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ../react/tagbox-filter */ "./src/react/tagbox-filter.tsx");
|
|
2067
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "TagboxFilterString", function() { return _react_tagbox_filter__WEBPACK_IMPORTED_MODULE_17__["TagboxFilterString"]; });
|
|
2049
2068
|
|
|
2050
|
-
/* harmony import */ var
|
|
2051
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionOptionItem", function() { return
|
|
2069
|
+
/* harmony import */ var _react_dropdown_item__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ../react/dropdown-item */ "./src/react/dropdown-item.tsx");
|
|
2070
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionOptionItem", function() { return _react_dropdown_item__WEBPACK_IMPORTED_MODULE_18__["SurveyQuestionOptionItem"]; });
|
|
2052
2071
|
|
|
2053
|
-
/* harmony import */ var
|
|
2054
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionDropdownBase", function() { return
|
|
2072
|
+
/* harmony import */ var _react_dropdown_base__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ../react/dropdown-base */ "./src/react/dropdown-base.tsx");
|
|
2073
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionDropdownBase", function() { return _react_dropdown_base__WEBPACK_IMPORTED_MODULE_19__["SurveyQuestionDropdownBase"]; });
|
|
2055
2074
|
|
|
2056
|
-
/* harmony import */ var
|
|
2057
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionDropdown", function() { return
|
|
2075
|
+
/* harmony import */ var _react_reactquestion_dropdown__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ../react/reactquestion_dropdown */ "./src/react/reactquestion_dropdown.tsx");
|
|
2076
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionDropdown", function() { return _react_reactquestion_dropdown__WEBPACK_IMPORTED_MODULE_20__["SurveyQuestionDropdown"]; });
|
|
2058
2077
|
|
|
2059
|
-
/* harmony import */ var
|
|
2060
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionTagboxItem", function() { return
|
|
2078
|
+
/* harmony import */ var _react_tagbox_item__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ../react/tagbox-item */ "./src/react/tagbox-item.tsx");
|
|
2079
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionTagboxItem", function() { return _react_tagbox_item__WEBPACK_IMPORTED_MODULE_21__["SurveyQuestionTagboxItem"]; });
|
|
2061
2080
|
|
|
2062
|
-
/* harmony import */ var
|
|
2063
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionTagbox", function() { return
|
|
2081
|
+
/* harmony import */ var _react_reactquestion_tagbox__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ../react/reactquestion_tagbox */ "./src/react/reactquestion_tagbox.tsx");
|
|
2082
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionTagbox", function() { return _react_reactquestion_tagbox__WEBPACK_IMPORTED_MODULE_22__["SurveyQuestionTagbox"]; });
|
|
2064
2083
|
|
|
2065
|
-
/* harmony import */ var
|
|
2066
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionDropdownSelect", function() { return
|
|
2084
|
+
/* harmony import */ var _react_dropdown_select__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ../react/dropdown-select */ "./src/react/dropdown-select.tsx");
|
|
2085
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionDropdownSelect", function() { return _react_dropdown_select__WEBPACK_IMPORTED_MODULE_23__["SurveyQuestionDropdownSelect"]; });
|
|
2067
2086
|
|
|
2068
|
-
/* harmony import */ var
|
|
2069
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMatrix", function() { return
|
|
2087
|
+
/* harmony import */ var _react_reactquestion_matrix__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ../react/reactquestion_matrix */ "./src/react/reactquestion_matrix.tsx");
|
|
2088
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMatrix", function() { return _react_reactquestion_matrix__WEBPACK_IMPORTED_MODULE_24__["SurveyQuestionMatrix"]; });
|
|
2070
2089
|
|
|
2071
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMatrixRow", function() { return
|
|
2090
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMatrixRow", function() { return _react_reactquestion_matrix__WEBPACK_IMPORTED_MODULE_24__["SurveyQuestionMatrixRow"]; });
|
|
2072
2091
|
|
|
2073
|
-
/* harmony import */ var
|
|
2074
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionHtml", function() { return
|
|
2092
|
+
/* harmony import */ var _react_reactquestion_html__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ../react/reactquestion_html */ "./src/react/reactquestion_html.tsx");
|
|
2093
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionHtml", function() { return _react_reactquestion_html__WEBPACK_IMPORTED_MODULE_25__["SurveyQuestionHtml"]; });
|
|
2075
2094
|
|
|
2076
|
-
/* harmony import */ var
|
|
2077
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionFile", function() { return
|
|
2095
|
+
/* harmony import */ var _react_reactquestion_file__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ../react/reactquestion_file */ "./src/react/reactquestion_file.tsx");
|
|
2096
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionFile", function() { return _react_reactquestion_file__WEBPACK_IMPORTED_MODULE_26__["SurveyQuestionFile"]; });
|
|
2078
2097
|
|
|
2079
|
-
/* harmony import */ var
|
|
2080
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyFileChooseButton", function() { return
|
|
2098
|
+
/* 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");
|
|
2099
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyFileChooseButton", function() { return _react_components_file_file_choose_button__WEBPACK_IMPORTED_MODULE_27__["SurveyFileChooseButton"]; });
|
|
2081
2100
|
|
|
2082
|
-
/* harmony import */ var
|
|
2083
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyFilePreview", function() { return
|
|
2101
|
+
/* 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");
|
|
2102
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyFilePreview", function() { return _react_components_file_file_preview__WEBPACK_IMPORTED_MODULE_28__["SurveyFilePreview"]; });
|
|
2084
2103
|
|
|
2085
|
-
/* harmony import */ var
|
|
2086
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMultipleText", function() { return
|
|
2104
|
+
/* harmony import */ var _react_reactquestion_multipletext__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ../react/reactquestion_multipletext */ "./src/react/reactquestion_multipletext.tsx");
|
|
2105
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMultipleText", function() { return _react_reactquestion_multipletext__WEBPACK_IMPORTED_MODULE_29__["SurveyQuestionMultipleText"]; });
|
|
2087
2106
|
|
|
2088
|
-
/* harmony import */ var
|
|
2089
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionRadiogroup", function() { return
|
|
2107
|
+
/* harmony import */ var _react_reactquestion_radiogroup__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ../react/reactquestion_radiogroup */ "./src/react/reactquestion_radiogroup.tsx");
|
|
2108
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionRadiogroup", function() { return _react_reactquestion_radiogroup__WEBPACK_IMPORTED_MODULE_30__["SurveyQuestionRadiogroup"]; });
|
|
2090
2109
|
|
|
2091
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionRadioItem", function() { return
|
|
2110
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionRadioItem", function() { return _react_reactquestion_radiogroup__WEBPACK_IMPORTED_MODULE_30__["SurveyQuestionRadioItem"]; });
|
|
2092
2111
|
|
|
2093
|
-
/* harmony import */ var
|
|
2094
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionText", function() { return
|
|
2112
|
+
/* harmony import */ var _react_reactquestion_text__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ../react/reactquestion_text */ "./src/react/reactquestion_text.tsx");
|
|
2113
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionText", function() { return _react_reactquestion_text__WEBPACK_IMPORTED_MODULE_31__["SurveyQuestionText"]; });
|
|
2095
2114
|
|
|
2096
|
-
/* harmony import */ var
|
|
2097
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionBoolean", function() { return
|
|
2115
|
+
/* harmony import */ var _react_boolean__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ../react/boolean */ "./src/react/boolean.tsx");
|
|
2116
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionBoolean", function() { return _react_boolean__WEBPACK_IMPORTED_MODULE_32__["SurveyQuestionBoolean"]; });
|
|
2098
2117
|
|
|
2099
|
-
/* harmony import */ var
|
|
2100
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionBooleanCheckbox", function() { return
|
|
2118
|
+
/* harmony import */ var _react_boolean_checkbox__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ../react/boolean-checkbox */ "./src/react/boolean-checkbox.tsx");
|
|
2119
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionBooleanCheckbox", function() { return _react_boolean_checkbox__WEBPACK_IMPORTED_MODULE_33__["SurveyQuestionBooleanCheckbox"]; });
|
|
2101
2120
|
|
|
2102
|
-
/* harmony import */ var
|
|
2103
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionBooleanRadio", function() { return
|
|
2121
|
+
/* harmony import */ var _react_boolean_radio__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ../react/boolean-radio */ "./src/react/boolean-radio.tsx");
|
|
2122
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionBooleanRadio", function() { return _react_boolean_radio__WEBPACK_IMPORTED_MODULE_34__["SurveyQuestionBooleanRadio"]; });
|
|
2104
2123
|
|
|
2105
|
-
/* harmony import */ var
|
|
2106
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionEmpty", function() { return
|
|
2124
|
+
/* harmony import */ var _react_reactquestion_empty__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ../react/reactquestion_empty */ "./src/react/reactquestion_empty.tsx");
|
|
2125
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionEmpty", function() { return _react_reactquestion_empty__WEBPACK_IMPORTED_MODULE_35__["SurveyQuestionEmpty"]; });
|
|
2107
2126
|
|
|
2108
|
-
/* harmony import */ var
|
|
2109
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMatrixDropdownCell", function() { return
|
|
2127
|
+
/* harmony import */ var _react_reactquestion_matrixdropdownbase__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ../react/reactquestion_matrixdropdownbase */ "./src/react/reactquestion_matrixdropdownbase.tsx");
|
|
2128
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMatrixDropdownCell", function() { return _react_reactquestion_matrixdropdownbase__WEBPACK_IMPORTED_MODULE_36__["SurveyQuestionMatrixDropdownCell"]; });
|
|
2110
2129
|
|
|
2111
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMatrixDropdownBase", function() { return
|
|
2130
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMatrixDropdownBase", function() { return _react_reactquestion_matrixdropdownbase__WEBPACK_IMPORTED_MODULE_36__["SurveyQuestionMatrixDropdownBase"]; });
|
|
2112
2131
|
|
|
2113
|
-
/* harmony import */ var
|
|
2114
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMatrixDropdown", function() { return
|
|
2132
|
+
/* harmony import */ var _react_reactquestion_matrixdropdown__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ../react/reactquestion_matrixdropdown */ "./src/react/reactquestion_matrixdropdown.tsx");
|
|
2133
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMatrixDropdown", function() { return _react_reactquestion_matrixdropdown__WEBPACK_IMPORTED_MODULE_37__["SurveyQuestionMatrixDropdown"]; });
|
|
2115
2134
|
|
|
2116
|
-
/* harmony import */ var
|
|
2117
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMatrixDynamic", function() { return
|
|
2135
|
+
/* harmony import */ var _react_reactquestion_matrixdynamic__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ../react/reactquestion_matrixdynamic */ "./src/react/reactquestion_matrixdynamic.tsx");
|
|
2136
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMatrixDynamic", function() { return _react_reactquestion_matrixdynamic__WEBPACK_IMPORTED_MODULE_38__["SurveyQuestionMatrixDynamic"]; });
|
|
2118
2137
|
|
|
2119
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMatrixDynamicAddButton", function() { return
|
|
2138
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMatrixDynamicAddButton", function() { return _react_reactquestion_matrixdynamic__WEBPACK_IMPORTED_MODULE_38__["SurveyQuestionMatrixDynamicAddButton"]; });
|
|
2120
2139
|
|
|
2121
|
-
/* harmony import */ var
|
|
2122
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionPanelDynamic", function() { return
|
|
2140
|
+
/* harmony import */ var _react_reactquestion_paneldynamic__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ../react/reactquestion_paneldynamic */ "./src/react/reactquestion_paneldynamic.tsx");
|
|
2141
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionPanelDynamic", function() { return _react_reactquestion_paneldynamic__WEBPACK_IMPORTED_MODULE_39__["SurveyQuestionPanelDynamic"]; });
|
|
2123
2142
|
|
|
2124
|
-
/* harmony import */ var
|
|
2125
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyProgress", function() { return
|
|
2143
|
+
/* harmony import */ var _react_reactSurveyProgress__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ../react/reactSurveyProgress */ "./src/react/reactSurveyProgress.tsx");
|
|
2144
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyProgress", function() { return _react_reactSurveyProgress__WEBPACK_IMPORTED_MODULE_40__["SurveyProgress"]; });
|
|
2126
2145
|
|
|
2127
|
-
/* harmony import */ var
|
|
2128
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyProgressButtons", function() { return
|
|
2146
|
+
/* harmony import */ var _react_reactSurveyProgressButtons__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ../react/reactSurveyProgressButtons */ "./src/react/reactSurveyProgressButtons.tsx");
|
|
2147
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyProgressButtons", function() { return _react_reactSurveyProgressButtons__WEBPACK_IMPORTED_MODULE_41__["SurveyProgressButtons"]; });
|
|
2129
2148
|
|
|
2130
|
-
/* harmony import */ var
|
|
2131
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyProgressToc", function() { return
|
|
2149
|
+
/* harmony import */ var _react_reactSurveyProgressToc__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ../react/reactSurveyProgressToc */ "./src/react/reactSurveyProgressToc.tsx");
|
|
2150
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyProgressToc", function() { return _react_reactSurveyProgressToc__WEBPACK_IMPORTED_MODULE_42__["SurveyProgressToc"]; });
|
|
2132
2151
|
|
|
2133
|
-
/* harmony import */ var
|
|
2134
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionRating", function() { return
|
|
2152
|
+
/* harmony import */ var _react_reactquestion_rating__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ../react/reactquestion_rating */ "./src/react/reactquestion_rating.tsx");
|
|
2153
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionRating", function() { return _react_reactquestion_rating__WEBPACK_IMPORTED_MODULE_43__["SurveyQuestionRating"]; });
|
|
2135
2154
|
|
|
2136
|
-
/* harmony import */ var
|
|
2137
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionRatingDropdown", function() { return
|
|
2155
|
+
/* harmony import */ var _react_rating_dropdown__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ../react/rating-dropdown */ "./src/react/rating-dropdown.tsx");
|
|
2156
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionRatingDropdown", function() { return _react_rating_dropdown__WEBPACK_IMPORTED_MODULE_44__["SurveyQuestionRatingDropdown"]; });
|
|
2138
2157
|
|
|
2139
|
-
/* harmony import */ var
|
|
2140
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionExpression", function() { return
|
|
2158
|
+
/* harmony import */ var _react_reactquestion_expression__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ../react/reactquestion_expression */ "./src/react/reactquestion_expression.tsx");
|
|
2159
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionExpression", function() { return _react_reactquestion_expression__WEBPACK_IMPORTED_MODULE_45__["SurveyQuestionExpression"]; });
|
|
2141
2160
|
|
|
2142
|
-
/* harmony import */ var
|
|
2143
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PopupSurvey", function() { return
|
|
2161
|
+
/* harmony import */ var _react_react_popup_survey__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ../react/react-popup-survey */ "./src/react/react-popup-survey.tsx");
|
|
2162
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "PopupSurvey", function() { return _react_react_popup_survey__WEBPACK_IMPORTED_MODULE_46__["PopupSurvey"]; });
|
|
2144
2163
|
|
|
2145
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyWindow", function() { return
|
|
2164
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyWindow", function() { return _react_react_popup_survey__WEBPACK_IMPORTED_MODULE_46__["SurveyWindow"]; });
|
|
2146
2165
|
|
|
2147
|
-
/* harmony import */ var
|
|
2148
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ReactQuestionFactory", function() { return
|
|
2166
|
+
/* harmony import */ var _react_reactquestion_factory__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ../react/reactquestion_factory */ "./src/react/reactquestion_factory.tsx");
|
|
2167
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ReactQuestionFactory", function() { return _react_reactquestion_factory__WEBPACK_IMPORTED_MODULE_47__["ReactQuestionFactory"]; });
|
|
2149
2168
|
|
|
2150
|
-
/* harmony import */ var
|
|
2151
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ReactElementFactory", function() { return
|
|
2169
|
+
/* harmony import */ var _react_element_factory__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ../react/element-factory */ "./src/react/element-factory.tsx");
|
|
2170
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ReactElementFactory", function() { return _react_element_factory__WEBPACK_IMPORTED_MODULE_48__["ReactElementFactory"]; });
|
|
2152
2171
|
|
|
2153
|
-
/* harmony import */ var
|
|
2154
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionImagePicker", function() { return
|
|
2172
|
+
/* harmony import */ var _react_imagepicker__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ../react/imagepicker */ "./src/react/imagepicker.tsx");
|
|
2173
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionImagePicker", function() { return _react_imagepicker__WEBPACK_IMPORTED_MODULE_49__["SurveyQuestionImagePicker"]; });
|
|
2155
2174
|
|
|
2156
|
-
/* harmony import */ var
|
|
2157
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionImage", function() { return
|
|
2175
|
+
/* harmony import */ var _react_image__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ../react/image */ "./src/react/image.tsx");
|
|
2176
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionImage", function() { return _react_image__WEBPACK_IMPORTED_MODULE_50__["SurveyQuestionImage"]; });
|
|
2158
2177
|
|
|
2159
|
-
/* harmony import */ var
|
|
2160
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionSignaturePad", function() { return
|
|
2178
|
+
/* harmony import */ var _react_signaturepad__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ../react/signaturepad */ "./src/react/signaturepad.tsx");
|
|
2179
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionSignaturePad", function() { return _react_signaturepad__WEBPACK_IMPORTED_MODULE_51__["SurveyQuestionSignaturePad"]; });
|
|
2161
2180
|
|
|
2162
|
-
/* harmony import */ var
|
|
2163
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionButtonGroup", function() { return
|
|
2181
|
+
/* harmony import */ var _react_reactquestion_buttongroup__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ../react/reactquestion_buttongroup */ "./src/react/reactquestion_buttongroup.tsx");
|
|
2182
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionButtonGroup", function() { return _react_reactquestion_buttongroup__WEBPACK_IMPORTED_MODULE_52__["SurveyQuestionButtonGroup"]; });
|
|
2164
2183
|
|
|
2165
|
-
/* harmony import */ var
|
|
2166
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionCustom", function() { return
|
|
2184
|
+
/* harmony import */ var _react_reactquestion_custom__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ../react/reactquestion_custom */ "./src/react/reactquestion_custom.tsx");
|
|
2185
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionCustom", function() { return _react_reactquestion_custom__WEBPACK_IMPORTED_MODULE_53__["SurveyQuestionCustom"]; });
|
|
2167
2186
|
|
|
2168
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionComposite", function() { return
|
|
2187
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionComposite", function() { return _react_reactquestion_custom__WEBPACK_IMPORTED_MODULE_53__["SurveyQuestionComposite"]; });
|
|
2169
2188
|
|
|
2170
|
-
/* harmony import */ var
|
|
2171
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Popup", function() { return
|
|
2189
|
+
/* harmony import */ var _react_components_popup_popup__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ../react/components/popup/popup */ "./src/react/components/popup/popup.tsx");
|
|
2190
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Popup", function() { return _react_components_popup_popup__WEBPACK_IMPORTED_MODULE_54__["Popup"]; });
|
|
2172
2191
|
|
|
2173
|
-
/* harmony import */ var
|
|
2174
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "List", function() { return
|
|
2192
|
+
/* harmony import */ var _react_components_list_list__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ../react/components/list/list */ "./src/react/components/list/list.tsx");
|
|
2193
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "List", function() { return _react_components_list_list__WEBPACK_IMPORTED_MODULE_55__["List"]; });
|
|
2175
2194
|
|
|
2176
|
-
/* harmony import */ var
|
|
2177
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "TitleActions", function() { return
|
|
2195
|
+
/* 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");
|
|
2196
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "TitleActions", function() { return _react_components_title_title_actions__WEBPACK_IMPORTED_MODULE_56__["TitleActions"]; });
|
|
2178
2197
|
|
|
2179
|
-
/* harmony import */ var
|
|
2180
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "TitleElement", function() { return
|
|
2198
|
+
/* 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");
|
|
2199
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "TitleElement", function() { return _react_components_title_title_element__WEBPACK_IMPORTED_MODULE_57__["TitleElement"]; });
|
|
2181
2200
|
|
|
2182
|
-
/* harmony import */ var
|
|
2183
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyActionBar", function() { return
|
|
2201
|
+
/* 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");
|
|
2202
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyActionBar", function() { return _react_components_action_bar_action_bar__WEBPACK_IMPORTED_MODULE_58__["SurveyActionBar"]; });
|
|
2184
2203
|
|
|
2185
|
-
/* harmony import */ var
|
|
2186
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "LogoImage", function() { return
|
|
2204
|
+
/* 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");
|
|
2205
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "LogoImage", function() { return _react_components_survey_header_logo_image__WEBPACK_IMPORTED_MODULE_59__["LogoImage"]; });
|
|
2187
2206
|
|
|
2188
|
-
/* harmony import */ var
|
|
2189
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyHeader", function() { return
|
|
2207
|
+
/* 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");
|
|
2208
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyHeader", function() { return _react_components_survey_header_survey_header__WEBPACK_IMPORTED_MODULE_60__["SurveyHeader"]; });
|
|
2190
2209
|
|
|
2191
|
-
/* harmony import */ var
|
|
2192
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SvgIcon", function() { return
|
|
2210
|
+
/* 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");
|
|
2211
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SvgIcon", function() { return _react_components_svg_icon_svg_icon__WEBPACK_IMPORTED_MODULE_61__["SvgIcon"]; });
|
|
2193
2212
|
|
|
2194
|
-
/* harmony import */ var
|
|
2195
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMatrixDynamicRemoveButton", function() { return
|
|
2213
|
+
/* 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");
|
|
2214
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMatrixDynamicRemoveButton", function() { return _react_components_matrix_actions_remove_button_remove_button__WEBPACK_IMPORTED_MODULE_62__["SurveyQuestionMatrixDynamicRemoveButton"]; });
|
|
2196
2215
|
|
|
2197
|
-
/* harmony import */ var
|
|
2198
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMatrixDetailButton", function() { return
|
|
2216
|
+
/* 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");
|
|
2217
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMatrixDetailButton", function() { return _react_components_matrix_actions_detail_button_detail_button__WEBPACK_IMPORTED_MODULE_63__["SurveyQuestionMatrixDetailButton"]; });
|
|
2199
2218
|
|
|
2200
|
-
/* harmony import */ var
|
|
2201
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionMatrixDynamicDragDropIcon", function() { return
|
|
2219
|
+
/* 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");
|
|
2220
|
+
/* 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"]; });
|
|
2202
2221
|
|
|
2203
|
-
/* harmony import */ var
|
|
2204
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionPanelDynamicAddButton", function() { return
|
|
2222
|
+
/* 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");
|
|
2223
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionPanelDynamicAddButton", function() { return _react_components_paneldynamic_actions_paneldynamic_add_btn__WEBPACK_IMPORTED_MODULE_65__["SurveyQuestionPanelDynamicAddButton"]; });
|
|
2205
2224
|
|
|
2206
|
-
/* harmony import */ var
|
|
2207
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionPanelDynamicRemoveButton", function() { return
|
|
2225
|
+
/* 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");
|
|
2226
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionPanelDynamicRemoveButton", function() { return _react_components_paneldynamic_actions_paneldynamic_remove_btn__WEBPACK_IMPORTED_MODULE_66__["SurveyQuestionPanelDynamicRemoveButton"]; });
|
|
2208
2227
|
|
|
2209
|
-
/* harmony import */ var
|
|
2210
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionPanelDynamicPrevButton", function() { return
|
|
2228
|
+
/* 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");
|
|
2229
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionPanelDynamicPrevButton", function() { return _react_components_paneldynamic_actions_paneldynamic_prev_btn__WEBPACK_IMPORTED_MODULE_67__["SurveyQuestionPanelDynamicPrevButton"]; });
|
|
2211
2230
|
|
|
2212
|
-
/* harmony import */ var
|
|
2213
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionPanelDynamicNextButton", function() { return
|
|
2231
|
+
/* 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");
|
|
2232
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionPanelDynamicNextButton", function() { return _react_components_paneldynamic_actions_paneldynamic_next_btn__WEBPACK_IMPORTED_MODULE_68__["SurveyQuestionPanelDynamicNextButton"]; });
|
|
2214
2233
|
|
|
2215
|
-
/* harmony import */ var
|
|
2216
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionPanelDynamicProgressText", function() { return
|
|
2234
|
+
/* 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");
|
|
2235
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionPanelDynamicProgressText", function() { return _react_components_paneldynamic_actions_paneldynamic_progress_text__WEBPACK_IMPORTED_MODULE_69__["SurveyQuestionPanelDynamicProgressText"]; });
|
|
2217
2236
|
|
|
2218
|
-
/* harmony import */ var
|
|
2219
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyNavigationButton", function() { return
|
|
2237
|
+
/* 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");
|
|
2238
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyNavigationButton", function() { return _react_components_survey_actions_survey_nav_button__WEBPACK_IMPORTED_MODULE_70__["SurveyNavigationButton"]; });
|
|
2220
2239
|
|
|
2221
|
-
/* harmony import */ var
|
|
2222
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "MatrixRow", function() { return
|
|
2240
|
+
/* harmony import */ var _react_components_matrix_row__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ../react/components/matrix/row */ "./src/react/components/matrix/row.tsx");
|
|
2241
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "MatrixRow", function() { return _react_components_matrix_row__WEBPACK_IMPORTED_MODULE_71__["MatrixRow"]; });
|
|
2223
2242
|
|
|
2224
|
-
/* harmony import */ var
|
|
2225
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Skeleton", function() { return
|
|
2243
|
+
/* harmony import */ var _react_components_skeleton__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ../react/components/skeleton */ "./src/react/components/skeleton.tsx");
|
|
2244
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Skeleton", function() { return _react_components_skeleton__WEBPACK_IMPORTED_MODULE_72__["Skeleton"]; });
|
|
2226
2245
|
|
|
2227
|
-
/* harmony import */ var
|
|
2228
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "NotifierComponent", function() { return
|
|
2246
|
+
/* harmony import */ var _react_components_notifier__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ../react/components/notifier */ "./src/react/components/notifier.tsx");
|
|
2247
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "NotifierComponent", function() { return _react_components_notifier__WEBPACK_IMPORTED_MODULE_73__["NotifierComponent"]; });
|
|
2229
2248
|
|
|
2230
|
-
/* harmony import */ var
|
|
2231
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ComponentsContainer", function() { return
|
|
2249
|
+
/* harmony import */ var _react_components_components_container__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ../react/components/components-container */ "./src/react/components/components-container.tsx");
|
|
2250
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ComponentsContainer", function() { return _react_components_components_container__WEBPACK_IMPORTED_MODULE_74__["ComponentsContainer"]; });
|
|
2232
2251
|
|
|
2233
|
-
/* harmony import */ var
|
|
2234
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "CharacterCounterComponent", function() { return
|
|
2252
|
+
/* harmony import */ var _react_components_character_counter__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ../react/components/character-counter */ "./src/react/components/character-counter.tsx");
|
|
2253
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "CharacterCounterComponent", function() { return _react_components_character_counter__WEBPACK_IMPORTED_MODULE_75__["CharacterCounterComponent"]; });
|
|
2235
2254
|
|
|
2236
|
-
/* harmony import */ var
|
|
2237
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "HeaderMobile", function() { return
|
|
2255
|
+
/* harmony import */ var _react_components_header__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ../react/components/header */ "./src/react/components/header.tsx");
|
|
2256
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "HeaderMobile", function() { return _react_components_header__WEBPACK_IMPORTED_MODULE_76__["HeaderMobile"]; });
|
|
2238
2257
|
|
|
2239
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "HeaderCell", function() { return
|
|
2258
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "HeaderCell", function() { return _react_components_header__WEBPACK_IMPORTED_MODULE_76__["HeaderCell"]; });
|
|
2240
2259
|
|
|
2241
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Header", function() { return
|
|
2260
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Header", function() { return _react_components_header__WEBPACK_IMPORTED_MODULE_76__["Header"]; });
|
|
2242
2261
|
|
|
2243
|
-
/* harmony import */ var
|
|
2244
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyLocStringViewer", function() { return
|
|
2262
|
+
/* harmony import */ var _react_string_viewer__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(/*! ../react/string-viewer */ "./src/react/string-viewer.tsx");
|
|
2263
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyLocStringViewer", function() { return _react_string_viewer__WEBPACK_IMPORTED_MODULE_77__["SurveyLocStringViewer"]; });
|
|
2245
2264
|
|
|
2246
|
-
/* harmony import */ var
|
|
2247
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyLocStringEditor", function() { return
|
|
2265
|
+
/* harmony import */ var _react_string_editor__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(/*! ../react/string-editor */ "./src/react/string-editor.tsx");
|
|
2266
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyLocStringEditor", function() { return _react_string_editor__WEBPACK_IMPORTED_MODULE_78__["SurveyLocStringEditor"]; });
|
|
2248
2267
|
|
|
2249
|
-
/* harmony import */ var
|
|
2250
|
-
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "LoadingIndicatorComponent", function() { return
|
|
2268
|
+
/* harmony import */ var _react_components_loading_indicator__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(/*! ../react/components/loading-indicator */ "./src/react/components/loading-indicator.tsx");
|
|
2269
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "LoadingIndicatorComponent", function() { return _react_components_loading_indicator__WEBPACK_IMPORTED_MODULE_79__["LoadingIndicatorComponent"]; });
|
|
2251
2270
|
|
|
2252
2271
|
// react
|
|
2253
2272
|
|
|
@@ -2327,6 +2346,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
2327
2346
|
|
|
2328
2347
|
|
|
2329
2348
|
|
|
2349
|
+
|
|
2330
2350
|
|
|
2331
2351
|
|
|
2332
2352
|
//Uncomment to include the "date" question type.
|
|
@@ -2339,7 +2359,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
2339
2359
|
/*!*********************************!*\
|
|
2340
2360
|
!*** ./src/entries/react-ui.ts ***!
|
|
2341
2361
|
\*********************************/
|
|
2342
|
-
/*! 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, SurveyModel, SurveyWindowModel, settings, surveyLocalization, surveyStrings, Model, ResponsivityManager, VerticalResponsivityManager, unwrap */
|
|
2362
|
+
/*! 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, SurveyModel, SurveyWindowModel, settings, surveyLocalization, surveyStrings, Model, ResponsivityManager, VerticalResponsivityManager, unwrap */
|
|
2343
2363
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
2344
2364
|
|
|
2345
2365
|
"use strict";
|
|
@@ -2393,6 +2413,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
2393
2413
|
|
|
2394
2414
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "RatingItemSmiley", function() { return _react_ui_model__WEBPACK_IMPORTED_MODULE_0__["RatingItemSmiley"]; });
|
|
2395
2415
|
|
|
2416
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "RatingDropdownItem", function() { return _react_ui_model__WEBPACK_IMPORTED_MODULE_0__["RatingDropdownItem"]; });
|
|
2417
|
+
|
|
2396
2418
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "TagboxFilterString", function() { return _react_ui_model__WEBPACK_IMPORTED_MODULE_0__["TagboxFilterString"]; });
|
|
2397
2419
|
|
|
2398
2420
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyQuestionOptionItem", function() { return _react_ui_model__WEBPACK_IMPORTED_MODULE_0__["SurveyQuestionOptionItem"]; });
|
|
@@ -2564,7 +2586,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
2564
2586
|
|
|
2565
2587
|
|
|
2566
2588
|
|
|
2567
|
-
Object(survey_core__WEBPACK_IMPORTED_MODULE_2__["checkLibraryVersion"])("" + "1.9.
|
|
2589
|
+
Object(survey_core__WEBPACK_IMPORTED_MODULE_2__["checkLibraryVersion"])("" + "1.9.119", "survey-react-ui");
|
|
2568
2590
|
|
|
2569
2591
|
|
|
2570
2592
|
/***/ }),
|
|
@@ -7510,6 +7532,11 @@ var JsonObjectProperty = /** @class */ (function () {
|
|
|
7510
7532
|
return ((value === false && (this.type == "boolean" || this.type == "switch")) ||
|
|
7511
7533
|
value === "" || _helpers__WEBPACK_IMPORTED_MODULE_2__["Helpers"].isValueEmpty(value));
|
|
7512
7534
|
};
|
|
7535
|
+
JsonObjectProperty.prototype.getSerializableValue = function (obj) {
|
|
7536
|
+
if (!!this.onSerializeValue)
|
|
7537
|
+
return this.onSerializeValue(obj);
|
|
7538
|
+
return this.getValue(obj);
|
|
7539
|
+
};
|
|
7513
7540
|
JsonObjectProperty.prototype.getValue = function (obj) {
|
|
7514
7541
|
if (this.onGetValue)
|
|
7515
7542
|
return this.onGetValue(obj);
|
|
@@ -8101,6 +8128,9 @@ var JsonMetadataClass = /** @class */ (function () {
|
|
|
8101
8128
|
if (!!propInfo.baseValue) {
|
|
8102
8129
|
prop.setBaseValue(propInfo.baseValue);
|
|
8103
8130
|
}
|
|
8131
|
+
if (propInfo.onSerializeValue) {
|
|
8132
|
+
prop.onSerializeValue = propInfo.onSerializeValue;
|
|
8133
|
+
}
|
|
8104
8134
|
if (propInfo.onGetValue) {
|
|
8105
8135
|
prop.onGetValue = propInfo.onGetValue;
|
|
8106
8136
|
}
|
|
@@ -8895,7 +8925,7 @@ var JsonObject = /** @class */ (function () {
|
|
|
8895
8925
|
if (property.isSerializable === false ||
|
|
8896
8926
|
(property.isLightSerializable === false && this.lightSerializing))
|
|
8897
8927
|
return;
|
|
8898
|
-
var value = property.
|
|
8928
|
+
var value = property.getSerializableValue(obj);
|
|
8899
8929
|
if (!storeDefaults && property.isDefaultValueByObj(obj, value))
|
|
8900
8930
|
return;
|
|
8901
8931
|
if (this.isValueArray(value)) {
|
|
@@ -9736,8 +9766,8 @@ var englishStrings = {
|
|
|
9736
9766
|
textMaxLength: "Please enter no more than {0} character(s).",
|
|
9737
9767
|
textMinMaxLength: "Please enter at least {0} and no more than {1} characters.",
|
|
9738
9768
|
minRowCountError: "Please fill in at least {0} row(s).",
|
|
9739
|
-
minSelectError: "Please select at least {0}
|
|
9740
|
-
maxSelectError: "Please select no more than {0}
|
|
9769
|
+
minSelectError: "Please select at least {0} option(s).",
|
|
9770
|
+
maxSelectError: "Please select no more than {0} option(s).",
|
|
9741
9771
|
numericMinMax: "The '{0}' should be at least {1} and at most {2}",
|
|
9742
9772
|
numericMin: "The '{0}' should be at least {1}",
|
|
9743
9773
|
numericMax: "The '{0}' should be at most {1}",
|
|
@@ -9746,6 +9776,7 @@ var englishStrings = {
|
|
|
9746
9776
|
urlRequestError: "The request returned error '{0}'. {1}",
|
|
9747
9777
|
urlGetChoicesError: "The request returned empty data or the 'path' property is incorrect",
|
|
9748
9778
|
exceedMaxSize: "The file size should not exceed {0}.",
|
|
9779
|
+
noUploadFilesHandler: "Files cannot be uploaded. Please add a handler for the 'onUploadFiles' event.",
|
|
9749
9780
|
otherRequiredError: "Response required: enter another value.",
|
|
9750
9781
|
uploadingFile: "Your file is uploading. Please wait several seconds and try again.",
|
|
9751
9782
|
loadingFile: "Loading...",
|
|
@@ -12056,6 +12087,77 @@ survey_core__WEBPACK_IMPORTED_MODULE_2__["settings"].showModal = showModal;
|
|
|
12056
12087
|
survey_core__WEBPACK_IMPORTED_MODULE_2__["settings"].showDialog = showDialog;
|
|
12057
12088
|
|
|
12058
12089
|
|
|
12090
|
+
/***/ }),
|
|
12091
|
+
|
|
12092
|
+
/***/ "./src/react/components/rating/rating-dropdown-item.tsx":
|
|
12093
|
+
/*!**************************************************************!*\
|
|
12094
|
+
!*** ./src/react/components/rating/rating-dropdown-item.tsx ***!
|
|
12095
|
+
\**************************************************************/
|
|
12096
|
+
/*! exports provided: RatingDropdownItem */
|
|
12097
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
12098
|
+
|
|
12099
|
+
"use strict";
|
|
12100
|
+
__webpack_require__.r(__webpack_exports__);
|
|
12101
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "RatingDropdownItem", function() { return RatingDropdownItem; });
|
|
12102
|
+
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "react");
|
|
12103
|
+
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
|
|
12104
|
+
/* harmony import */ var _element_factory__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../element-factory */ "./src/react/element-factory.tsx");
|
|
12105
|
+
/* harmony import */ var _reactquestion_element__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../reactquestion_element */ "./src/react/reactquestion_element.tsx");
|
|
12106
|
+
var __extends = (undefined && undefined.__extends) || (function () {
|
|
12107
|
+
var extendStatics = function (d, b) {
|
|
12108
|
+
extendStatics = Object.setPrototypeOf ||
|
|
12109
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
12110
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
12111
|
+
return extendStatics(d, b);
|
|
12112
|
+
};
|
|
12113
|
+
return function (d, b) {
|
|
12114
|
+
if (typeof b !== "function" && b !== null)
|
|
12115
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
12116
|
+
extendStatics(d, b);
|
|
12117
|
+
function __() { this.constructor = d; }
|
|
12118
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
12119
|
+
};
|
|
12120
|
+
})();
|
|
12121
|
+
|
|
12122
|
+
|
|
12123
|
+
|
|
12124
|
+
var RatingDropdownItem = /** @class */ (function (_super) {
|
|
12125
|
+
__extends(RatingDropdownItem, _super);
|
|
12126
|
+
function RatingDropdownItem() {
|
|
12127
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
12128
|
+
}
|
|
12129
|
+
Object.defineProperty(RatingDropdownItem.prototype, "item", {
|
|
12130
|
+
get: function () {
|
|
12131
|
+
return this.props.item;
|
|
12132
|
+
},
|
|
12133
|
+
enumerable: false,
|
|
12134
|
+
configurable: true
|
|
12135
|
+
});
|
|
12136
|
+
RatingDropdownItem.prototype.getStateElement = function () {
|
|
12137
|
+
return this.item;
|
|
12138
|
+
};
|
|
12139
|
+
RatingDropdownItem.prototype.render = function () {
|
|
12140
|
+
if (!this.item)
|
|
12141
|
+
return null;
|
|
12142
|
+
var item = this.props.item;
|
|
12143
|
+
var description = this.renderDescription(item);
|
|
12144
|
+
return (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div", { className: "sd-rating-dropdown-item" },
|
|
12145
|
+
react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("span", { className: "sd-rating-dropdown-item_text" }, item.title),
|
|
12146
|
+
description));
|
|
12147
|
+
};
|
|
12148
|
+
RatingDropdownItem.prototype.renderDescription = function (item) {
|
|
12149
|
+
if (!item.description)
|
|
12150
|
+
return null;
|
|
12151
|
+
return (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div", { className: "sd-rating-dropdown-item_description" }, this.renderLocString(item.description, undefined, "locString")));
|
|
12152
|
+
};
|
|
12153
|
+
return RatingDropdownItem;
|
|
12154
|
+
}(_reactquestion_element__WEBPACK_IMPORTED_MODULE_2__["SurveyElementBase"]));
|
|
12155
|
+
|
|
12156
|
+
_element_factory__WEBPACK_IMPORTED_MODULE_1__["ReactElementFactory"].Instance.registerElement("sv-rating-dropdown-item", function (props) {
|
|
12157
|
+
return react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement(RatingDropdownItem, props);
|
|
12158
|
+
});
|
|
12159
|
+
|
|
12160
|
+
|
|
12059
12161
|
/***/ }),
|
|
12060
12162
|
|
|
12061
12163
|
/***/ "./src/react/components/rating/rating-item-smiley.tsx":
|
|
@@ -13975,6 +14077,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13975
14077
|
/* harmony import */ var _reactquestion_element__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./reactquestion_element */ "./src/react/reactquestion_element.tsx");
|
|
13976
14078
|
/* harmony import */ var _panel_base__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./panel-base */ "./src/react/panel-base.tsx");
|
|
13977
14079
|
/* harmony import */ var _components_title_title_element__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./components/title/title-element */ "./src/react/components/title/title-element.tsx");
|
|
14080
|
+
/* harmony import */ var _reactquestion__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./reactquestion */ "./src/react/reactquestion.tsx");
|
|
13978
14081
|
var __extends = (undefined && undefined.__extends) || (function () {
|
|
13979
14082
|
var extendStatics = function (d, b) {
|
|
13980
14083
|
extendStatics = Object.setPrototypeOf ||
|
|
@@ -13994,6 +14097,7 @@ var __extends = (undefined && undefined.__extends) || (function () {
|
|
|
13994
14097
|
|
|
13995
14098
|
|
|
13996
14099
|
|
|
14100
|
+
|
|
13997
14101
|
var SurveyPage = /** @class */ (function (_super) {
|
|
13998
14102
|
__extends(SurveyPage, _super);
|
|
13999
14103
|
function SurveyPage(props) {
|
|
@@ -14013,9 +14117,11 @@ var SurveyPage = /** @class */ (function (_super) {
|
|
|
14013
14117
|
var title = this.renderTitle();
|
|
14014
14118
|
var description = this.renderDescription();
|
|
14015
14119
|
var rows = this.renderRows(this.panelBase.cssClasses);
|
|
14120
|
+
var errors = (react__WEBPACK_IMPORTED_MODULE_0__["createElement"](_reactquestion__WEBPACK_IMPORTED_MODULE_4__["SurveyElementErrors"], { element: this.panelBase, cssClasses: this.panelBase.cssClasses, creator: this.creator }));
|
|
14016
14121
|
return (react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { ref: this.rootRef, className: this.page.cssRoot },
|
|
14017
14122
|
title,
|
|
14018
14123
|
description,
|
|
14124
|
+
errors,
|
|
14019
14125
|
rows));
|
|
14020
14126
|
};
|
|
14021
14127
|
SurveyPage.prototype.renderTitle = function () {
|
|
@@ -14312,7 +14418,7 @@ _element_factory__WEBPACK_IMPORTED_MODULE_3__["ReactElementFactory"].Instance.re
|
|
|
14312
14418
|
/*!***************************************!*\
|
|
14313
14419
|
!*** ./src/react/rating-dropdown.tsx ***!
|
|
14314
14420
|
\***************************************/
|
|
14315
|
-
/*! exports provided: SurveyQuestionRatingDropdown */
|
|
14421
|
+
/*! exports provided: RatingDropdownItem, SurveyQuestionRatingDropdown */
|
|
14316
14422
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
14317
14423
|
|
|
14318
14424
|
"use strict";
|
|
@@ -14324,6 +14430,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
14324
14430
|
/* harmony import */ var survey_core__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(survey_core__WEBPACK_IMPORTED_MODULE_1__);
|
|
14325
14431
|
/* harmony import */ var _dropdown_base__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./dropdown-base */ "./src/react/dropdown-base.tsx");
|
|
14326
14432
|
/* harmony import */ var _reactquestion_factory__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./reactquestion_factory */ "./src/react/reactquestion_factory.tsx");
|
|
14433
|
+
/* 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");
|
|
14434
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "RatingDropdownItem", function() { return _components_rating_rating_dropdown_item__WEBPACK_IMPORTED_MODULE_4__["RatingDropdownItem"]; });
|
|
14435
|
+
|
|
14327
14436
|
var __extends = (undefined && undefined.__extends) || (function () {
|
|
14328
14437
|
var extendStatics = function (d, b) {
|
|
14329
14438
|
extendStatics = Object.setPrototypeOf ||
|
|
@@ -14343,6 +14452,7 @@ var __extends = (undefined && undefined.__extends) || (function () {
|
|
|
14343
14452
|
|
|
14344
14453
|
|
|
14345
14454
|
|
|
14455
|
+
|
|
14346
14456
|
var SurveyQuestionRatingDropdown = /** @class */ (function (_super) {
|
|
14347
14457
|
__extends(SurveyQuestionRatingDropdown, _super);
|
|
14348
14458
|
function SurveyQuestionRatingDropdown(props) {
|
|
@@ -15999,8 +16109,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
15999
16109
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "react");
|
|
16000
16110
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
|
|
16001
16111
|
/* harmony import */ var _reactquestion_element__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./reactquestion_element */ "./src/react/reactquestion_element.tsx");
|
|
16002
|
-
/* harmony import */ var
|
|
16003
|
-
/* harmony import */ var
|
|
16112
|
+
/* harmony import */ var survey_core__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! survey-core */ "survey-core");
|
|
16113
|
+
/* harmony import */ var survey_core__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(survey_core__WEBPACK_IMPORTED_MODULE_2__);
|
|
16114
|
+
/* harmony import */ var _reactquestion_factory__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./reactquestion_factory */ "./src/react/reactquestion_factory.tsx");
|
|
16115
|
+
/* harmony import */ var _components_character_counter__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./components/character-counter */ "./src/react/components/character-counter.tsx");
|
|
16004
16116
|
var __extends = (undefined && undefined.__extends) || (function () {
|
|
16005
16117
|
var extendStatics = function (d, b) {
|
|
16006
16118
|
extendStatics = Object.setPrototypeOf ||
|
|
@@ -16020,6 +16132,7 @@ var __extends = (undefined && undefined.__extends) || (function () {
|
|
|
16020
16132
|
|
|
16021
16133
|
|
|
16022
16134
|
|
|
16135
|
+
|
|
16023
16136
|
var SurveyQuestionComment = /** @class */ (function (_super) {
|
|
16024
16137
|
__extends(SurveyQuestionComment, _super);
|
|
16025
16138
|
function SurveyQuestionComment(props) {
|
|
@@ -16042,7 +16155,7 @@ var SurveyQuestionComment = /** @class */ (function (_super) {
|
|
|
16042
16155
|
if (this.question.isReadOnlyRenderDiv()) {
|
|
16043
16156
|
return react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", null, this.question.value);
|
|
16044
16157
|
}
|
|
16045
|
-
var counter = !!this.question.getMaxLength() ? (react__WEBPACK_IMPORTED_MODULE_0__["createElement"](
|
|
16158
|
+
var counter = !!this.question.getMaxLength() ? (react__WEBPACK_IMPORTED_MODULE_0__["createElement"](_components_character_counter__WEBPACK_IMPORTED_MODULE_4__["CharacterCounterComponent"], { counter: this.question.characterCounter, remainingCharacterCounter: this.question.cssClasses.remainingCharacterCounter })) : null;
|
|
16046
16159
|
return (react__WEBPACK_IMPORTED_MODULE_0__["createElement"](react__WEBPACK_IMPORTED_MODULE_0__["Fragment"], null,
|
|
16047
16160
|
react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("textarea", { id: this.question.inputId, className: this.question.className, disabled: this.question.isInputReadOnly, readOnly: this.question.isInputReadOnly, ref: function (textarea) { return (_this.setControl(textarea)); }, maxLength: this.question.getMaxLength(), placeholder: placeholder, onBlur: onBlur, onInput: onInput, onKeyDown: function (event) { _this.question.onKeyDown(event); }, cols: this.question.cols, rows: this.question.rows, "aria-required": this.question.a11y_input_ariaRequired, "aria-label": this.question.a11y_input_ariaLabel, "aria-labelledby": this.question.a11y_input_ariaLabelledBy, "aria-invalid": this.question.a11y_input_ariaInvalid, "aria-describedby": this.question.a11y_input_ariaDescribedBy, style: { resize: this.question.resizeStyle } }),
|
|
16048
16161
|
counter));
|
|
@@ -16052,9 +16165,19 @@ var SurveyQuestionComment = /** @class */ (function (_super) {
|
|
|
16052
16165
|
|
|
16053
16166
|
var SurveyQuestionCommentItem = /** @class */ (function (_super) {
|
|
16054
16167
|
__extends(SurveyQuestionCommentItem, _super);
|
|
16055
|
-
function SurveyQuestionCommentItem() {
|
|
16056
|
-
|
|
16168
|
+
function SurveyQuestionCommentItem(props) {
|
|
16169
|
+
var _this = _super.call(this, props) || this;
|
|
16170
|
+
_this.state = { comment: _this.getComment() || "" };
|
|
16171
|
+
return _this;
|
|
16057
16172
|
}
|
|
16173
|
+
SurveyQuestionCommentItem.prototype.getStateComment = function () {
|
|
16174
|
+
var comment = this.getComment();
|
|
16175
|
+
var stateComment = this.state.comment;
|
|
16176
|
+
if (stateComment !== undefined && stateComment.trim() !== comment) {
|
|
16177
|
+
stateComment = comment;
|
|
16178
|
+
}
|
|
16179
|
+
return stateComment !== undefined ? stateComment : comment || "";
|
|
16180
|
+
};
|
|
16058
16181
|
SurveyQuestionCommentItem.prototype.canRender = function () {
|
|
16059
16182
|
return !!this.props.question;
|
|
16060
16183
|
};
|
|
@@ -16064,12 +16187,12 @@ var SurveyQuestionCommentItem = /** @class */ (function (_super) {
|
|
|
16064
16187
|
SurveyQuestionCommentItem.prototype.onCommentInput = function (event) {
|
|
16065
16188
|
this.props.question.onCommentInput(event);
|
|
16066
16189
|
};
|
|
16067
|
-
SurveyQuestionCommentItem.prototype.onCommentCompositionUpdate = function (event) {
|
|
16068
|
-
this.props.question.onCompositionUpdateComment(event);
|
|
16069
|
-
};
|
|
16070
16190
|
SurveyQuestionCommentItem.prototype.getComment = function () {
|
|
16071
16191
|
return this.props.question.comment;
|
|
16072
16192
|
};
|
|
16193
|
+
SurveyQuestionCommentItem.prototype.setComment = function (value) {
|
|
16194
|
+
this.props.question.comment = value;
|
|
16195
|
+
};
|
|
16073
16196
|
SurveyQuestionCommentItem.prototype.getId = function () {
|
|
16074
16197
|
return this.props.question.commentId;
|
|
16075
16198
|
};
|
|
@@ -16082,18 +16205,16 @@ var SurveyQuestionCommentItem = /** @class */ (function (_super) {
|
|
|
16082
16205
|
var className = this.props.otherCss || this.cssClasses.comment;
|
|
16083
16206
|
var handleOnChange = function (event) {
|
|
16084
16207
|
_this.setState({ comment: event.target.value });
|
|
16085
|
-
|
|
16208
|
+
// https://github.com/surveyjs/survey-library/issues/7252
|
|
16209
|
+
if (!survey_core__WEBPACK_IMPORTED_MODULE_2__["Helpers"].isTwoValueEquals(_this.getComment(), event.target.value, false, true, false)) {
|
|
16210
|
+
_this.setComment(event.target.value);
|
|
16211
|
+
}
|
|
16086
16212
|
};
|
|
16087
|
-
var
|
|
16088
|
-
var stateComment = !!this.state ? this.state.comment : undefined;
|
|
16089
|
-
if (stateComment !== undefined && stateComment.trim() !== questionComment) {
|
|
16090
|
-
stateComment = questionComment;
|
|
16091
|
-
}
|
|
16092
|
-
var comment = stateComment !== undefined ? stateComment : questionComment || "";
|
|
16213
|
+
var comment = this.getStateComment();
|
|
16093
16214
|
if (question.isReadOnlyRenderDiv()) {
|
|
16094
16215
|
return react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", null, comment);
|
|
16095
16216
|
}
|
|
16096
|
-
return (react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("textarea", { id: this.getId(), className: className, value: comment, disabled: this.isDisplayMode, maxLength: question.getOthersMaxLength(), placeholder: this.getPlaceholder(), onChange: handleOnChange, onBlur: function (e) { _this.onCommentChange(e); handleOnChange(e); }, onInput: function (e) { return _this.onCommentInput(e); },
|
|
16217
|
+
return (react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("textarea", { id: this.getId(), className: className, value: comment, disabled: this.isDisplayMode, maxLength: question.getOthersMaxLength(), placeholder: this.getPlaceholder(), onChange: handleOnChange, onBlur: function (e) { _this.onCommentChange(e); handleOnChange(e); }, onInput: function (e) { return _this.onCommentInput(e); }, "aria-required": question.isRequired || question.a11y_input_ariaRequired, "aria-label": question.ariaLabel || question.a11y_input_ariaLabel, style: { resize: question.resizeStyle } }));
|
|
16097
16218
|
};
|
|
16098
16219
|
return SurveyQuestionCommentItem;
|
|
16099
16220
|
}(_reactquestion_element__WEBPACK_IMPORTED_MODULE_1__["ReactSurveyElement"]));
|
|
@@ -16109,12 +16230,12 @@ var SurveyQuestionOtherValueItem = /** @class */ (function (_super) {
|
|
|
16109
16230
|
SurveyQuestionOtherValueItem.prototype.onCommentInput = function (event) {
|
|
16110
16231
|
this.props.question.onOtherValueInput(event);
|
|
16111
16232
|
};
|
|
16112
|
-
SurveyQuestionOtherValueItem.prototype.onCommentCompositionUpdate = function (event) {
|
|
16113
|
-
this.props.question.onCompositionUpdateOtherValue(event);
|
|
16114
|
-
};
|
|
16115
16233
|
SurveyQuestionOtherValueItem.prototype.getComment = function () {
|
|
16116
16234
|
return this.props.question.otherValue;
|
|
16117
16235
|
};
|
|
16236
|
+
SurveyQuestionOtherValueItem.prototype.setComment = function (value) {
|
|
16237
|
+
this.props.question.otherValue = value;
|
|
16238
|
+
};
|
|
16118
16239
|
SurveyQuestionOtherValueItem.prototype.getId = function () {
|
|
16119
16240
|
return this.props.question.otherId;
|
|
16120
16241
|
};
|
|
@@ -16124,7 +16245,7 @@ var SurveyQuestionOtherValueItem = /** @class */ (function (_super) {
|
|
|
16124
16245
|
return SurveyQuestionOtherValueItem;
|
|
16125
16246
|
}(SurveyQuestionCommentItem));
|
|
16126
16247
|
|
|
16127
|
-
|
|
16248
|
+
_reactquestion_factory__WEBPACK_IMPORTED_MODULE_3__["ReactQuestionFactory"].Instance.registerQuestion("comment", function (props) {
|
|
16128
16249
|
return react__WEBPACK_IMPORTED_MODULE_0__["createElement"](SurveyQuestionComment, props);
|
|
16129
16250
|
});
|
|
16130
16251
|
|
|
@@ -17171,7 +17292,7 @@ var SurveyQuestionMatrixRow = /** @class */ (function (_super) {
|
|
|
17171
17292
|
else {
|
|
17172
17293
|
td = (react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("td", { key: key, "data-responsive-title": column.locText.renderedHtml, className: this.question.cssClasses.cell },
|
|
17173
17294
|
react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("label", { onMouseDown: this.handleOnMouseDown, className: itemClass },
|
|
17174
|
-
react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("input", { id: inputId, type: "radio", className: this.cssClasses.itemValue, name: row.fullName, value: column.value, disabled: this.isDisplayMode, checked: isChecked, onChange: this.handleOnChange, "aria-required": this.question.
|
|
17295
|
+
react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("input", { id: inputId, type: "radio", className: this.cssClasses.itemValue, name: row.fullName, value: column.value, disabled: this.isDisplayMode, checked: isChecked, onChange: this.handleOnChange, "aria-required": this.question.a11y_input_ariaRequired, "aria-label": this.question.getCellAriaLabel(row.locText.renderedHtml, column.locText.renderedHtml), "aria-invalid": this.question.a11y_input_ariaInvalid, "aria-describedby": this.question.a11y_input_ariaDescribedBy }),
|
|
17175
17296
|
react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("span", { className: this.question.cssClasses.materialDecorator }, this.question.itemSvgIcon ?
|
|
17176
17297
|
react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("svg", { className: this.cssClasses.itemDecorator },
|
|
17177
17298
|
react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("use", { xlinkHref: this.question.itemSvgIcon })) :
|
|
@@ -20167,6 +20288,27 @@ var settings = {
|
|
|
20167
20288
|
* Default value: `"none"`
|
|
20168
20289
|
*/
|
|
20169
20290
|
noneItemValue: "none",
|
|
20291
|
+
/**
|
|
20292
|
+
* An object whose properties specify the order of the special choice items (None, Other, Select All) in select-based questions.
|
|
20293
|
+
*
|
|
20294
|
+
* Default value: `{ selectAllItem: [-1], noneItem: [1], otherItem: [2] }`
|
|
20295
|
+
*
|
|
20296
|
+
* Use this object to reorder special choices. Each property accepts an array of integer numbers. Negative numbers place a special choice item above regular choice items, positive numbers place it below them. For instance, the code below specifies the following order of choices: None, Select All, regular choices, Other.
|
|
20297
|
+
*
|
|
20298
|
+
* ```js
|
|
20299
|
+
* import { settings } from "survey-core";
|
|
20300
|
+
*
|
|
20301
|
+
* settings.specialChoicesOrder.noneItem = [-2];
|
|
20302
|
+
* settings.specialChoicesOrder.selectAllItem = [-1];
|
|
20303
|
+
* settings.specialChoicesOrder.otherItem = [1];
|
|
20304
|
+
* ```
|
|
20305
|
+
*
|
|
20306
|
+
* If you want to duplicate a special choice item above and below other choices, add two numbers to the corresponding array:
|
|
20307
|
+
*
|
|
20308
|
+
* ```js
|
|
20309
|
+
* settings.specialChoicesOrder.selectAllItem = [-1, 3] // Displays Select All above and below other choices
|
|
20310
|
+
* ```
|
|
20311
|
+
*/
|
|
20170
20312
|
specialChoicesOrder: {
|
|
20171
20313
|
selectAllItem: [-1],
|
|
20172
20314
|
noneItem: [1],
|
|
@@ -20534,19 +20676,36 @@ var ResponsivityManager = /** @class */ (function () {
|
|
|
20534
20676
|
configurable: true
|
|
20535
20677
|
});
|
|
20536
20678
|
ResponsivityManager.prototype.process = function () {
|
|
20537
|
-
var
|
|
20679
|
+
var _this = this;
|
|
20538
20680
|
if (this.isContainerVisible && !this.model.isResponsivenessDisabled) {
|
|
20539
20681
|
if (!this.isInitialized) {
|
|
20540
20682
|
this.model.setActionsMode("large");
|
|
20541
|
-
|
|
20542
|
-
|
|
20683
|
+
var recalcItemSizes = function () {
|
|
20684
|
+
_this.calcItemsSizes();
|
|
20685
|
+
_this.isInitialized = true;
|
|
20686
|
+
};
|
|
20687
|
+
if (queueMicrotask) {
|
|
20688
|
+
queueMicrotask(recalcItemSizes);
|
|
20689
|
+
}
|
|
20690
|
+
else {
|
|
20691
|
+
recalcItemSizes();
|
|
20692
|
+
}
|
|
20543
20693
|
}
|
|
20544
|
-
var
|
|
20545
|
-
|
|
20546
|
-
var
|
|
20547
|
-
|
|
20694
|
+
var processResponsiveness = function () {
|
|
20695
|
+
var _a;
|
|
20696
|
+
var dotsItemSize = _this.dotsItemSize;
|
|
20697
|
+
if (!_this.dotsItemSize) {
|
|
20698
|
+
var dotsItemElement = (_a = _this.container) === null || _a === void 0 ? void 0 : _a.querySelector(".sv-dots");
|
|
20699
|
+
dotsItemSize = dotsItemElement && _this.calcItemSize(dotsItemElement) || _this.dotsSizeConst;
|
|
20700
|
+
}
|
|
20701
|
+
_this.model.fit(_this.getAvailableSpace(), dotsItemSize);
|
|
20702
|
+
};
|
|
20703
|
+
if (queueMicrotask) {
|
|
20704
|
+
queueMicrotask(processResponsiveness);
|
|
20705
|
+
}
|
|
20706
|
+
else {
|
|
20707
|
+
processResponsiveness();
|
|
20548
20708
|
}
|
|
20549
|
-
this.model.fit(this.getAvailableSpace(), dotsItemSize);
|
|
20550
20709
|
}
|
|
20551
20710
|
};
|
|
20552
20711
|
ResponsivityManager.prototype.dispose = function () {
|
|
@@ -20968,6 +21127,9 @@ function findParentByClassNames(element, classNames) {
|
|
|
20968
21127
|
function sanitizeEditableContent(element) {
|
|
20969
21128
|
if (window.getSelection && document.createRange && element.childNodes.length > 0) {
|
|
20970
21129
|
var selection = document.getSelection();
|
|
21130
|
+
if (selection.rangeCount == 0) {
|
|
21131
|
+
return;
|
|
21132
|
+
}
|
|
20971
21133
|
var range = selection.getRangeAt(0);
|
|
20972
21134
|
range.setStart(range.endContainer, range.endOffset);
|
|
20973
21135
|
range.setEndAfter(element.lastChild);
|