survey-react 1.9.138 → 1.10.1
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 +646 -66
- package/defaultV2.css.map +1 -1
- package/defaultV2.min.css +2 -2
- package/modern.css +20 -3
- package/modern.css.map +1 -1
- package/modern.min.css +2 -2
- 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 +361 -39
- package/survey.react.js +1364 -341
- 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.
|
2
|
+
* surveyjs - Survey JavaScript library v1.10.1
|
3
3
|
* Copyright (c) 2015-2024 Devsoft Baltic OÜ - http://surveyjs.io/
|
4
4
|
* License: MIT (http://www.opensource.org/licenses/mit-license.php)
|
5
5
|
*/
|
@@ -769,9 +769,27 @@ var BaseAction = /** @class */ (function (_super) {
|
|
769
769
|
__extends(BaseAction, _super);
|
770
770
|
function BaseAction() {
|
771
771
|
var _this = _super !== null && _super.apply(this, arguments) || this;
|
772
|
+
_this.rendredIdValue = BaseAction.getNextRendredId();
|
772
773
|
_this.iconSize = 24;
|
773
774
|
return _this;
|
774
775
|
}
|
776
|
+
BaseAction.getNextRendredId = function () { return BaseAction.renderedId++; };
|
777
|
+
Object.defineProperty(BaseAction.prototype, "renderedId", {
|
778
|
+
get: function () { return this.rendredIdValue; },
|
779
|
+
enumerable: false,
|
780
|
+
configurable: true
|
781
|
+
});
|
782
|
+
Object.defineProperty(BaseAction.prototype, "owner", {
|
783
|
+
get: function () { return this.ownerValue; },
|
784
|
+
set: function (val) {
|
785
|
+
if (val !== this.owner) {
|
786
|
+
this.ownerValue = val;
|
787
|
+
this.locStrsChanged();
|
788
|
+
}
|
789
|
+
},
|
790
|
+
enumerable: false,
|
791
|
+
configurable: true
|
792
|
+
});
|
775
793
|
Object.defineProperty(BaseAction.prototype, "visible", {
|
776
794
|
get: function () {
|
777
795
|
return this.getVisible();
|
@@ -896,6 +914,7 @@ var BaseAction = /** @class */ (function (_super) {
|
|
896
914
|
}
|
897
915
|
return args.isTrusted;
|
898
916
|
};
|
917
|
+
BaseAction.renderedId = 1;
|
899
918
|
__decorate([
|
900
919
|
Object(_jsonobject__WEBPACK_IMPORTED_MODULE_2__["property"])()
|
901
920
|
], BaseAction.prototype, "tooltip", void 0);
|
@@ -1848,6 +1867,7 @@ var Base = /** @class */ (function () {
|
|
1848
1867
|
*/
|
1849
1868
|
this.onItemValuePropertyChanged = this.addEvent();
|
1850
1869
|
this.isCreating = true;
|
1870
|
+
this.animationAllowedLock = 0;
|
1851
1871
|
this.bindingsValue = new Bindings(this);
|
1852
1872
|
_jsonobject__WEBPACK_IMPORTED_MODULE_2__["CustomPropertiesCollection"].createProperties(this);
|
1853
1873
|
this.onBaseCreating();
|
@@ -2768,6 +2788,22 @@ var Base = /** @class */ (function () {
|
|
2768
2788
|
if (includeHidden === void 0) { includeHidden = false; }
|
2769
2789
|
return [];
|
2770
2790
|
};
|
2791
|
+
Object.defineProperty(Base.prototype, "animationAllowed", {
|
2792
|
+
get: function () {
|
2793
|
+
return this.getIsAnimationAllowed();
|
2794
|
+
},
|
2795
|
+
enumerable: false,
|
2796
|
+
configurable: true
|
2797
|
+
});
|
2798
|
+
Base.prototype.getIsAnimationAllowed = function () {
|
2799
|
+
return _settings__WEBPACK_IMPORTED_MODULE_3__["settings"].animationEnabled && this.animationAllowedLock >= 0 && !this.isLoadingFromJson && !this.isDisposed;
|
2800
|
+
};
|
2801
|
+
Base.prototype.blockAnimations = function () {
|
2802
|
+
this.animationAllowedLock--;
|
2803
|
+
};
|
2804
|
+
Base.prototype.releaseAnimations = function () {
|
2805
|
+
this.animationAllowedLock++;
|
2806
|
+
};
|
2771
2807
|
Base.currentDependencis = undefined;
|
2772
2808
|
return Base;
|
2773
2809
|
}());
|
@@ -4863,7 +4899,7 @@ var modernCss = {
|
|
4863
4899
|
root: "sv-file",
|
4864
4900
|
other: "sv-comment sv-question__other",
|
4865
4901
|
placeholderInput: "sv-visuallyhidden",
|
4866
|
-
|
4902
|
+
previewItem: "sd-file__preview-item",
|
4867
4903
|
fileSignBottom: "sv-file__sign",
|
4868
4904
|
fileDecorator: "sv-file__decorator",
|
4869
4905
|
fileInput: "sv-visuallyhidden",
|
@@ -5270,7 +5306,7 @@ var defaultStandardCss = {
|
|
5270
5306
|
file: {
|
5271
5307
|
root: "sv_q_file",
|
5272
5308
|
placeholderInput: "sv-visuallyhidden",
|
5273
|
-
|
5309
|
+
previewItem: "sv_q_file_preview",
|
5274
5310
|
removeButton: "sv_q_file_remove_button",
|
5275
5311
|
fileInput: "sv-visuallyhidden",
|
5276
5312
|
removeFile: "sv_q_file_remove",
|
@@ -5484,7 +5520,11 @@ var defaultV2Css = {
|
|
5484
5520
|
footer: "sd-paneldynamic__footer",
|
5485
5521
|
panelFooter: "sd-paneldynamic__panel-footer",
|
5486
5522
|
footerButtonsContainer: "sd-paneldynamic__buttons-container",
|
5523
|
+
panelsContainer: "sd-paneldynamic__panels-container",
|
5487
5524
|
panelWrapperInRow: "sd-paneldynamic__panel-wrapper--in-row",
|
5525
|
+
panelWrapperFadeIn: "sd-paneldynamic__panel-wrapper--fade-in",
|
5526
|
+
panelWrapperFadeOut: "sd-paneldynamic__panel-wrapper--fade-out",
|
5527
|
+
panelWrapperList: "sd-paneldynamic__panel-wrapper--list",
|
5488
5528
|
progressBtnIcon: "icon-progressbuttonv2",
|
5489
5529
|
noEntriesPlaceholder: "sd-paneldynamic__placeholder sd-question__placeholder",
|
5490
5530
|
compact: "sd-element--with-frame sd-element--compact",
|
@@ -5572,6 +5612,7 @@ var defaultV2Css = {
|
|
5572
5612
|
titleExpanded: "sd-element__title--expanded",
|
5573
5613
|
titleCollapsed: "sd-element__title--collapsed",
|
5574
5614
|
titleDisabled: "sd-element__title--disabled",
|
5615
|
+
titleReadOnly: "sd-element__title--readonly",
|
5575
5616
|
titleBar: "sd-action-title-bar",
|
5576
5617
|
requiredText: "sd-question__required-text",
|
5577
5618
|
number: "sd-element__num",
|
@@ -5596,6 +5637,8 @@ var defaultV2Css = {
|
|
5596
5637
|
invisible: "sd-element--invisible",
|
5597
5638
|
composite: "sd-element--complex sd-composite",
|
5598
5639
|
disabled: "sd-question--disabled",
|
5640
|
+
readOnly: "sd-question--readonly",
|
5641
|
+
preview: "sd-question--preview",
|
5599
5642
|
errorsContainer: "sd-element__erbox sd-question__erbox",
|
5600
5643
|
errorsContainerTop: "sd-element__erbox--above-element sd-question__erbox--above-question",
|
5601
5644
|
errorsContainerBottom: "sd-question__erbox--below-question"
|
@@ -5632,6 +5675,9 @@ var defaultV2Css = {
|
|
5632
5675
|
itemSelectAll: "sd-checkbox--selectall",
|
5633
5676
|
itemNone: "sd-checkbox--none",
|
5634
5677
|
itemDisabled: "sd-item--disabled sd-checkbox--disabled",
|
5678
|
+
itemReadOnly: "sd-item--readonly sd-checkbox--readonly",
|
5679
|
+
itemPreview: "sd-item--preview sd-checkbox--preview",
|
5680
|
+
itemPreviewSvgIconId: "#icon-v2check",
|
5635
5681
|
itemChecked: "sd-item--checked sd-checkbox--checked",
|
5636
5682
|
itemHover: "sd-item--allowhover sd-checkbox--allowhover",
|
5637
5683
|
itemInline: "sd-selectbase__item--inline",
|
@@ -5656,6 +5702,9 @@ var defaultV2Css = {
|
|
5656
5702
|
label: "sd-selectbase__label",
|
5657
5703
|
labelChecked: "",
|
5658
5704
|
itemDisabled: "sd-item--disabled sd-radio--disabled",
|
5705
|
+
itemReadOnly: "sd-item--readonly sd-radio--readonly",
|
5706
|
+
itemPreview: "sd-item--preview sd-radio--preview",
|
5707
|
+
itemPreviewSvgIconId: "#icon-v2check",
|
5659
5708
|
itemChecked: "sd-item--checked sd-radio--checked",
|
5660
5709
|
itemHover: "sd-item--allowhover sd-radio--allowhover",
|
5661
5710
|
itemControl: "sd-visuallyhidden sd-item__control sd-radio__control",
|
@@ -5677,18 +5726,26 @@ var defaultV2Css = {
|
|
5677
5726
|
itemExchanged: "sd-boolean--exchanged",
|
5678
5727
|
itemIndeterminate: "sd-boolean--indeterminate",
|
5679
5728
|
itemDisabled: "sd-boolean--disabled",
|
5729
|
+
itemReadOnly: "sd-boolean--readonly",
|
5730
|
+
itemPreview: "sd-boolean--preview",
|
5680
5731
|
itemHover: "sd-boolean--allowhover",
|
5681
5732
|
label: "sd-boolean__label",
|
5682
5733
|
labelTrue: "sd-boolean__label--true",
|
5683
5734
|
labelFalse: "sd-boolean__label--false",
|
5684
5735
|
switch: "sd-boolean__switch",
|
5685
5736
|
disabledLabel: "sd-checkbox__label--disabled",
|
5737
|
+
labelReadOnly: "sd-checkbox__label--readonly",
|
5738
|
+
labelPreview: "sd-checkbox__label--preview",
|
5686
5739
|
sliderText: "sd-boolean__thumb-text",
|
5687
5740
|
slider: "sd-boolean__thumb",
|
5688
5741
|
sliderGhost: "sd-boolean__thumb-ghost",
|
5689
5742
|
//radio
|
5690
5743
|
radioItem: "sd-item",
|
5691
5744
|
radioItemChecked: "sd-item--checked sd-radio--checked",
|
5745
|
+
radioItemDisabled: "sd-item--disabled sd-radio--disabled",
|
5746
|
+
radioItemReadOnly: "sd-item--readonly sd-radio--readonly",
|
5747
|
+
radioItemPreview: "sd-item--preview sd-radio--preview",
|
5748
|
+
itemPreviewSvgIconId: "#icon-v2check",
|
5692
5749
|
radioLabel: "sd-selectbase__label",
|
5693
5750
|
radioControlLabel: "sd-item__control-label",
|
5694
5751
|
radioFieldset: "sd-selectbase",
|
@@ -5705,6 +5762,8 @@ var defaultV2Css = {
|
|
5705
5762
|
checkboxItemChecked: "sd-item--checked sd-checkbox--checked",
|
5706
5763
|
checkboxItemDecorator: "sd-item__svg sd-checkbox__svg",
|
5707
5764
|
checkboxItemDisabled: "sd-item--disabled sd-checkbox--disabled",
|
5765
|
+
checkboxItemReadOnly: "sd-item--readonly sd-checkbox--readonly",
|
5766
|
+
checkboxItemPreview: "sd-item--preview sd-checkbox--preview",
|
5708
5767
|
controlCheckbox: "sd-visuallyhidden sd-item__control sd-checkbox__control",
|
5709
5768
|
checkboxMaterialDecorator: "sd-item__decorator sd-checkbox__decorator",
|
5710
5769
|
checkboxControlLabel: "sd-item__control-label",
|
@@ -5714,6 +5773,8 @@ var defaultV2Css = {
|
|
5714
5773
|
root: "sd-input sd-text",
|
5715
5774
|
small: "sd-row__question--small",
|
5716
5775
|
controlDisabled: "sd-input--disabled",
|
5776
|
+
controlReadOnly: "sd-input--readonly",
|
5777
|
+
controlPreview: "sd-input--preview",
|
5717
5778
|
constrolWithCharacterCounter: "sd-text__character-counter",
|
5718
5779
|
characterCounterBig: "sd-text__character-counter--big",
|
5719
5780
|
content: "sd-text__content sd-question__content",
|
@@ -5724,6 +5785,9 @@ var defaultV2Css = {
|
|
5724
5785
|
root: "sd-multipletext",
|
5725
5786
|
rootMobile: "sd-multipletext--mobile",
|
5726
5787
|
itemLabel: "sd-multipletext__item-container sd-input",
|
5788
|
+
itemLabelReadOnly: "sd-input--readonly",
|
5789
|
+
itemLabelDisabled: "sd-input--disabled",
|
5790
|
+
itemLabelPreview: "sd-input--preview",
|
5727
5791
|
itemLabelOnError: "sd-multipletext__item-container--error",
|
5728
5792
|
itemLabelAllowFocus: "sd-multipletext__item-container--allow-focus",
|
5729
5793
|
itemLabelAnswered: "sd-multipletext__item-container--answered",
|
@@ -5761,6 +5825,8 @@ var defaultV2Css = {
|
|
5761
5825
|
controlInputFieldComponent: "sd-dropdown__input-field-component",
|
5762
5826
|
controlValue: "sd-dropdown__value",
|
5763
5827
|
controlDisabled: "sd-input--disabled",
|
5828
|
+
controlReadOnly: "sd-input--readonly",
|
5829
|
+
controlPreview: "sd-input--preview",
|
5764
5830
|
controlEmpty: "sd-dropdown--empty",
|
5765
5831
|
controlLabel: "sd-item__control-label",
|
5766
5832
|
filterStringInput: "sd-dropdown__filter-string-input",
|
@@ -5777,6 +5843,8 @@ var defaultV2Css = {
|
|
5777
5843
|
itemInline: "sd-imagepicker__item--inline",
|
5778
5844
|
itemChecked: "sd-imagepicker__item--checked",
|
5779
5845
|
itemDisabled: "sd-imagepicker__item--disabled",
|
5846
|
+
itemReadOnly: "sd-imagepicker__item--readonly",
|
5847
|
+
itemPreview: "sd-imagepicker__item--preview",
|
5780
5848
|
itemHover: "sd-imagepicker__item--allowhover",
|
5781
5849
|
label: "sd-imagepicker__label",
|
5782
5850
|
itemDecorator: "sd-imagepicker__item-decorator",
|
@@ -5806,6 +5874,7 @@ var defaultV2Css = {
|
|
5806
5874
|
cell: "sd-table__cell sd-matrix__cell",
|
5807
5875
|
row: "sd-table__row",
|
5808
5876
|
rowDisabled: "sd-table__row-disabled",
|
5877
|
+
rowReadOnly: "sd-table__row-readonly",
|
5809
5878
|
headerCell: "sd-table__cell sd-table__cell--header",
|
5810
5879
|
rowTextCell: "sd-table__cell sd-matrix__cell sd-table__cell--row-text",
|
5811
5880
|
label: "sd-item sd-radio sd-matrix__label",
|
@@ -5813,6 +5882,9 @@ var defaultV2Css = {
|
|
5813
5882
|
itemValue: "sd-visuallyhidden sd-item__control sd-radio__control",
|
5814
5883
|
itemChecked: "sd-item--checked sd-radio--checked",
|
5815
5884
|
itemDisabled: "sd-item--disabled sd-radio--disabled",
|
5885
|
+
itemReadOnly: "sd-item--readonly sd-radio--readonly",
|
5886
|
+
itemPreview: "sd-item--preview sd-radio--preview",
|
5887
|
+
itemPreviewSvgIconId: "#icon-v2check",
|
5816
5888
|
itemHover: "sd-radio--allowhover",
|
5817
5889
|
materialDecorator: "sd-item__decorator sd-radio__decorator",
|
5818
5890
|
itemDecorator: "sd-item__svg sd-radio__svg",
|
@@ -5839,6 +5911,8 @@ var defaultV2Css = {
|
|
5839
5911
|
errorsCellBottom: "sd-table__cell--error-bottom",
|
5840
5912
|
itemCell: "sd-table__cell--item",
|
5841
5913
|
row: "sd-table__row",
|
5914
|
+
rowFadeIn: "sd-table__row--fade-in",
|
5915
|
+
rowFadeOut: "sd-table__row--fade-out",
|
5842
5916
|
expandedRow: "sd-table__row--expanded",
|
5843
5917
|
rowHasPanel: "sd-table__row--has-panel",
|
5844
5918
|
rowHasEndActions: "sd-table__row--has-end-actions",
|
@@ -5877,6 +5951,8 @@ var defaultV2Css = {
|
|
5877
5951
|
content: "sd-matrixdynamic__content sd-question__content",
|
5878
5952
|
cell: "sd-table__cell",
|
5879
5953
|
row: "sd-table__row",
|
5954
|
+
rowFadeIn: "sd-table__row--fade-in",
|
5955
|
+
rowFadeOut: "sd-table__row--fade-out",
|
5880
5956
|
rowHasPanel: "sd-table__row--has-panel",
|
5881
5957
|
rowHasEndActions: "sd-table__row--has-end-actions",
|
5882
5958
|
expandedRow: "sd-table__row--expanded",
|
@@ -5933,6 +6009,8 @@ var defaultV2Css = {
|
|
5933
6009
|
itemStarHover: "sd-rating__item-star--allowhover",
|
5934
6010
|
itemStarSelected: "sd-rating__item-star--selected",
|
5935
6011
|
itemStarDisabled: "sd-rating__item-star--disabled",
|
6012
|
+
itemStarReadOnly: "sd-rating__item-star--readonly",
|
6013
|
+
itemStarPreview: "sd-rating__item-star--preview",
|
5936
6014
|
itemStarHighlighted: "sd-rating__item-star--highlighted",
|
5937
6015
|
itemStarUnhighlighted: "sd-rating__item-star--unhighlighted",
|
5938
6016
|
itemStarSmall: "sd-rating__item-star--small",
|
@@ -5941,6 +6019,8 @@ var defaultV2Css = {
|
|
5941
6019
|
itemSmileyHover: "sd-rating__item-smiley--allowhover",
|
5942
6020
|
itemSmileySelected: "sd-rating__item-smiley--selected",
|
5943
6021
|
itemSmileyDisabled: "sd-rating__item-smiley--disabled",
|
6022
|
+
itemSmileyReadOnly: "sd-rating__item-smiley--readonly",
|
6023
|
+
itemSmileyPreview: "sd-rating__item-smiley--preview",
|
5944
6024
|
itemSmileyHighlighted: "sd-rating__item-star--highlighted",
|
5945
6025
|
itemSmileyScaleColored: "sd-rating__item-smiley--scale-colored",
|
5946
6026
|
itemSmileyRateColored: "sd-rating__item-smiley--rate-colored",
|
@@ -5949,6 +6029,8 @@ var defaultV2Css = {
|
|
5949
6029
|
itemText: "sd-rating__item-text",
|
5950
6030
|
maxText: "sd-rating__item-text sd-rating__max-text",
|
5951
6031
|
itemDisabled: "sd-rating__item--disabled",
|
6032
|
+
itemReadOnly: "sd-rating__item--readonly",
|
6033
|
+
itemPreview: "sd-rating__item--preview",
|
5952
6034
|
itemFixedSize: "sd-rating__item--fixed-size",
|
5953
6035
|
control: "sd-input sd-dropdown",
|
5954
6036
|
itemSmall: "sd-rating--small",
|
@@ -5967,6 +6049,8 @@ var defaultV2Css = {
|
|
5967
6049
|
root: "sd-input sd-comment",
|
5968
6050
|
small: "sd-row__question--small",
|
5969
6051
|
controlDisabled: "sd-input--disabled",
|
6052
|
+
controlReadOnly: "sd-input--readonly",
|
6053
|
+
controlPreview: "sd-input--preview",
|
5970
6054
|
content: "sd-comment__content sd-question__content",
|
5971
6055
|
remainingCharacterCounter: "sd-remaining-character-counter",
|
5972
6056
|
onError: "sd-input--error"
|
@@ -5976,9 +6060,12 @@ var defaultV2Css = {
|
|
5976
6060
|
root: "sd-file",
|
5977
6061
|
rootDragging: "sd-file--dragging",
|
5978
6062
|
rootAnswered: "sd-file--answered",
|
6063
|
+
rootDisabled: "sd-file--disabled",
|
6064
|
+
rootReadOnly: "sd-file--readonly",
|
6065
|
+
rootPreview: "sd-file--preview",
|
5979
6066
|
other: "sd-input sd-comment",
|
5980
6067
|
placeholderInput: "sd-visuallyhidden",
|
5981
|
-
|
6068
|
+
previewItem: "sd-file__preview-item",
|
5982
6069
|
fileSign: "",
|
5983
6070
|
fileList: "sd-file__list",
|
5984
6071
|
fileSignBottom: "sd-file__sign",
|
@@ -6069,9 +6156,12 @@ var defaultV2Css = {
|
|
6069
6156
|
rootMobileMod: "sv-ranking--mobile",
|
6070
6157
|
rootDragMod: "sv-ranking--drag",
|
6071
6158
|
rootDisabled: "sd-ranking--disabled",
|
6159
|
+
rootReadOnly: "sd-ranking--readonly",
|
6160
|
+
rootPreview: "sd-ranking--preview",
|
6072
6161
|
rootDesignMode: "sv-ranking--design-mode",
|
6073
6162
|
rootDragHandleAreaIcon: "sv-ranking--drag-handle-area-icon",
|
6074
6163
|
rootSelectToRankMod: "sv-ranking--select-to-rank",
|
6164
|
+
rootSelectToRankEmptyValueMod: "sv-ranking--select-to-rank-empty-value",
|
6075
6165
|
rootSelectToRankAlignVertical: "sv-ranking--select-to-rank-vertical",
|
6076
6166
|
rootSelectToRankAlignHorizontal: "sv-ranking--select-to-rank-horizontal",
|
6077
6167
|
item: "sv-ranking-item",
|
@@ -6080,6 +6170,8 @@ var defaultV2Css = {
|
|
6080
6170
|
itemIndexEmptyMode: "sv-ranking-item__index--empty sd-ranking-item__index--empty",
|
6081
6171
|
// itemText: "sv-ranking-item__text",
|
6082
6172
|
itemDisabled: "sv-ranking-item--disabled",
|
6173
|
+
itemReadOnly: "sv-ranking-item--readonly",
|
6174
|
+
itemPreview: "sv-ranking-item--preview",
|
6083
6175
|
controlLabel: "sv-ranking-item__text",
|
6084
6176
|
itemGhostNode: "sv-ranking-item__ghost",
|
6085
6177
|
itemIconContainer: "sv-ranking-item__icon-container",
|
@@ -6156,7 +6248,10 @@ var defaultV2Css = {
|
|
6156
6248
|
controlValue: "sd-tagbox__value sd-dropdown__value",
|
6157
6249
|
controlValueItems: "sd-tagbox__value-items",
|
6158
6250
|
placeholderInput: "sd-tagbox__placeholder",
|
6251
|
+
controlEditable: "sd-input--editable",
|
6159
6252
|
controlDisabled: "sd-input--disabled",
|
6253
|
+
controlReadOnly: "sd-input--readonly",
|
6254
|
+
controlPreview: "sd-input--preview",
|
6160
6255
|
controlEmpty: "sd-dropdown--empty sd-tagbox--empty",
|
6161
6256
|
controlLabel: "sd-item__control-label",
|
6162
6257
|
filterStringInput: "sd-tagbox__filter-string-input sd-dropdown__filter-string-input",
|
@@ -8070,6 +8165,7 @@ var DropdownListModel = /** @class */ (function (_super) {
|
|
8070
8165
|
this._popupModel.isFocusedContainer = false;
|
8071
8166
|
this._popupModel.isFocusedContent = _utils_devices__WEBPACK_IMPORTED_MODULE_9__["IsTouch"];
|
8072
8167
|
this._popupModel.setWidthByTarget = !_utils_devices__WEBPACK_IMPORTED_MODULE_9__["IsTouch"];
|
8168
|
+
this._popupModel.locale = this.question.getLocale();
|
8073
8169
|
this.updatePopupFocusFirstInputSelector();
|
8074
8170
|
this.listModel.registerPropertyChangedHandlers(["showFilter"], function () {
|
8075
8171
|
_this.updatePopupFocusFirstInputSelector();
|
@@ -8170,6 +8266,7 @@ var DropdownListModel = /** @class */ (function (_super) {
|
|
8170
8266
|
}
|
8171
8267
|
});
|
8172
8268
|
model.isAllDataLoaded = !this.question.choicesLazyLoadEnabled;
|
8269
|
+
model.actions.forEach(function (a) { return a.disableTabStop = true; });
|
8173
8270
|
};
|
8174
8271
|
DropdownListModel.prototype.updateCssClasses = function (popupCssClass, listCssClasses) {
|
8175
8272
|
this.popupModel.cssClass = new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_8__["CssClassBuilder"]().append(popupCssClass).append(this.popupCssClasses).toString();
|
@@ -8734,6 +8831,7 @@ var DropdownMultiSelectListModel = /** @class */ (function (_super) {
|
|
8734
8831
|
};
|
8735
8832
|
}
|
8736
8833
|
var res = new _multiSelectListModel__WEBPACK_IMPORTED_MODULE_3__["MultiSelectListModel"](visibleItems, _onSelectionChanged, false, undefined, this.question.choicesLazyLoadEnabled ? this.listModelFilterStringChanged : undefined, this.listElementId);
|
8834
|
+
res.actions.forEach(function (a) { return a.disableTabStop = true; });
|
8737
8835
|
this.setOnTextSearchCallbackForListModel(res);
|
8738
8836
|
res.forceShowFilter = true;
|
8739
8837
|
return res;
|
@@ -8881,7 +8979,11 @@ var DropdownMultiSelectListModel = /** @class */ (function (_super) {
|
|
8881
8979
|
__webpack_require__.r(__webpack_exports__);
|
8882
8980
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "dxSurveyService", function() { return dxSurveyService; });
|
8883
8981
|
/* harmony import */ var _settings__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./settings */ "./src/settings.ts");
|
8982
|
+
/* harmony import */ var _surveyStrings__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./surveyStrings */ "./src/surveyStrings.ts");
|
8983
|
+
|
8884
8984
|
|
8985
|
+
var surveyIOSite = "surveyjs.io";
|
8986
|
+
var surveyIOMaxPostSize = 65536;
|
8885
8987
|
/**
|
8886
8988
|
* The class contains methods to work with api.surveyjs.io service.
|
8887
8989
|
*/
|
@@ -8900,7 +9002,7 @@ var dxSurveyService = /** @class */ (function () {
|
|
8900
9002
|
});
|
8901
9003
|
dxSurveyService.prototype.loadSurvey = function (surveyId, onLoad) {
|
8902
9004
|
var xhr = new XMLHttpRequest();
|
8903
|
-
xhr.open("GET",
|
9005
|
+
xhr.open("GET", this.serviceUrl + "/getSurvey?surveyId=" + surveyId);
|
8904
9006
|
xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
|
8905
9007
|
xhr.onload = function () {
|
8906
9008
|
var result = JSON.parse(xhr.response);
|
@@ -8910,7 +9012,7 @@ var dxSurveyService = /** @class */ (function () {
|
|
8910
9012
|
};
|
8911
9013
|
dxSurveyService.prototype.getSurveyJsonAndIsCompleted = function (surveyId, clientId, onLoad) {
|
8912
9014
|
var xhr = new XMLHttpRequest();
|
8913
|
-
xhr.open("GET",
|
9015
|
+
xhr.open("GET", this.serviceUrl +
|
8914
9016
|
"/getSurveyAndIsCompleted?surveyId=" +
|
8915
9017
|
surveyId +
|
8916
9018
|
"&clientId=" +
|
@@ -8924,11 +9026,34 @@ var dxSurveyService = /** @class */ (function () {
|
|
8924
9026
|
};
|
8925
9027
|
xhr.send();
|
8926
9028
|
};
|
9029
|
+
dxSurveyService.prototype.canSendResult = function (result) {
|
9030
|
+
if (!this.isSurveJSIOService)
|
9031
|
+
return true;
|
9032
|
+
var str = JSON.stringify(result);
|
9033
|
+
return str.length < surveyIOMaxPostSize;
|
9034
|
+
};
|
9035
|
+
Object.defineProperty(dxSurveyService.prototype, "isSurveJSIOService", {
|
9036
|
+
get: function () {
|
9037
|
+
return this.serviceUrl.indexOf(surveyIOSite) >= 0;
|
9038
|
+
},
|
9039
|
+
enumerable: false,
|
9040
|
+
configurable: true
|
9041
|
+
});
|
8927
9042
|
dxSurveyService.prototype.sendResult = function (postId, result, onSendResult, clientId, isPartialCompleted) {
|
9043
|
+
if (clientId === void 0) { clientId = null; }
|
9044
|
+
if (isPartialCompleted === void 0) { isPartialCompleted = false; }
|
9045
|
+
if (!this.canSendResult(result)) {
|
9046
|
+
onSendResult(false, _surveyStrings__WEBPACK_IMPORTED_MODULE_1__["surveyLocalization"].getString("savingExceedSize", this.locale), undefined);
|
9047
|
+
}
|
9048
|
+
else {
|
9049
|
+
this.sendResultCore(postId, result, onSendResult, clientId, isPartialCompleted);
|
9050
|
+
}
|
9051
|
+
};
|
9052
|
+
dxSurveyService.prototype.sendResultCore = function (postId, result, onSendResult, clientId, isPartialCompleted) {
|
8928
9053
|
if (clientId === void 0) { clientId = null; }
|
8929
9054
|
if (isPartialCompleted === void 0) { isPartialCompleted = false; }
|
8930
9055
|
var xhr = new XMLHttpRequest();
|
8931
|
-
xhr.open("POST",
|
9056
|
+
xhr.open("POST", this.serviceUrl + "/post/");
|
8932
9057
|
xhr.setRequestHeader("Content-Type", "application/json; charset=utf-8");
|
8933
9058
|
var data = { postId: postId, surveyResult: JSON.stringify(result) };
|
8934
9059
|
if (clientId)
|
@@ -8936,7 +9061,6 @@ var dxSurveyService = /** @class */ (function () {
|
|
8936
9061
|
if (isPartialCompleted)
|
8937
9062
|
data["isPartialCompleted"] = true;
|
8938
9063
|
var dataStringify = JSON.stringify(data);
|
8939
|
-
var self = this;
|
8940
9064
|
xhr.onload = xhr.onerror = function () {
|
8941
9065
|
if (!onSendResult)
|
8942
9066
|
return;
|
@@ -8951,7 +9075,7 @@ var dxSurveyService = /** @class */ (function () {
|
|
8951
9075
|
return;
|
8952
9076
|
onSendFile(xhr.status == 200, JSON.parse(xhr.response));
|
8953
9077
|
};
|
8954
|
-
xhr.open("POST",
|
9078
|
+
xhr.open("POST", this.serviceUrl + "/upload/", true);
|
8955
9079
|
var formData = new FormData();
|
8956
9080
|
formData.append("file", file);
|
8957
9081
|
formData.append("postId", postId);
|
@@ -8960,7 +9084,7 @@ var dxSurveyService = /** @class */ (function () {
|
|
8960
9084
|
dxSurveyService.prototype.getResult = function (resultId, name, onGetResult) {
|
8961
9085
|
var xhr = new XMLHttpRequest();
|
8962
9086
|
var data = "resultId=" + resultId + "&name=" + name;
|
8963
|
-
xhr.open("GET",
|
9087
|
+
xhr.open("GET", this.serviceUrl + "/getResult?" + data);
|
8964
9088
|
xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
|
8965
9089
|
var self = this;
|
8966
9090
|
xhr.onload = function () {
|
@@ -8981,7 +9105,7 @@ var dxSurveyService = /** @class */ (function () {
|
|
8981
9105
|
dxSurveyService.prototype.isCompleted = function (resultId, clientId, onIsCompleted) {
|
8982
9106
|
var xhr = new XMLHttpRequest();
|
8983
9107
|
var data = "resultId=" + resultId + "&clientId=" + clientId;
|
8984
|
-
xhr.open("GET",
|
9108
|
+
xhr.open("GET", this.serviceUrl + "/isCompleted?" + data);
|
8985
9109
|
xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
|
8986
9110
|
var self = this;
|
8987
9111
|
xhr.onload = function () {
|
@@ -8993,6 +9117,13 @@ var dxSurveyService = /** @class */ (function () {
|
|
8993
9117
|
};
|
8994
9118
|
xhr.send();
|
8995
9119
|
};
|
9120
|
+
Object.defineProperty(dxSurveyService.prototype, "serviceUrl", {
|
9121
|
+
get: function () {
|
9122
|
+
return dxSurveyService.serviceUrl || "";
|
9123
|
+
},
|
9124
|
+
enumerable: false,
|
9125
|
+
configurable: true
|
9126
|
+
});
|
8996
9127
|
return dxSurveyService;
|
8997
9128
|
}());
|
8998
9129
|
|
@@ -9674,8 +9805,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
9674
9805
|
|
9675
9806
|
var Version;
|
9676
9807
|
var ReleaseDate;
|
9677
|
-
Version = "" + "1.
|
9678
|
-
ReleaseDate = "" + "2024-04-
|
9808
|
+
Version = "" + "1.10.1";
|
9809
|
+
ReleaseDate = "" + "2024-04-25";
|
9679
9810
|
function checkLibraryVersion(ver, libraryName) {
|
9680
9811
|
if (Version != ver) {
|
9681
9812
|
var str = "survey-core has version '" + Version + "' and " + libraryName
|
@@ -9856,7 +9987,7 @@ function checkPrefix(prefix) {
|
|
9856
9987
|
/*!**************************************!*\
|
9857
9988
|
!*** ./src/entries/core-wo-model.ts ***!
|
9858
9989
|
\**************************************/
|
9859
|
-
/*! 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, QuestionMatrixDropdownRenderedErrorRow, 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, tryFocusPage, createTOCListModel, getTocRootCss, TOCModel, SurveyProgressModel, ProgressButtons, ProgressButtonsResponsivityManager, 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, chooseFiles, sanitizeEditableContent, InputMaskBase, InputMaskPattern, InputMaskNumeric, InputMaskDateTime, InputMaskCurrency, CssClassBuilder, surveyCss, defaultV2Css, defaultV2ThemeName, DragDropCore, DragDropChoices, DragDropRankingSelectToRank, defaultStandardCss, modernCss, SvgIconRegistry, SvgRegistry, SvgBundleViewModel, RendererFactory, ResponsivityManager, VerticalResponsivityManager, unwrap, getOriginalEvent, getElement, createDropdownActionModel, createDropdownActionModelAdvanced, getActionDropdownButtonTarget, BaseAction, Action, ActionDropdownViewModel, AnimationUtils, AnimationPropertyUtils, AnimationGroupUtils, AnimationBoolean, AnimationGroup, AdaptiveActionContainer, defaultActionBarCss, ActionContainer, DragOrClickHelper */
|
9990
|
+
/*! 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, QuestionMatrixDropdownRenderedErrorRow, 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, tryFocusPage, createTOCListModel, getTocRootCss, TOCModel, SurveyProgressModel, ProgressButtons, ProgressButtonsResponsivityManager, 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, chooseFiles, sanitizeEditableContent, InputMaskBase, InputMaskPattern, InputMaskNumeric, InputMaskDateTime, InputMaskCurrency, CssClassBuilder, surveyCss, defaultV2Css, defaultV2ThemeName, DragDropCore, DragDropChoices, DragDropRankingSelectToRank, defaultStandardCss, modernCss, SvgIconRegistry, SvgRegistry, SvgBundleViewModel, RendererFactory, ResponsivityManager, VerticalResponsivityManager, unwrap, getOriginalEvent, getElement, createDropdownActionModel, createDropdownActionModelAdvanced, getActionDropdownButtonTarget, BaseAction, Action, ActionDropdownViewModel, AnimationUtils, AnimationPropertyUtils, AnimationGroupUtils, AnimationProperty, AnimationBoolean, AnimationGroup, AnimationTab, AdaptiveActionContainer, defaultActionBarCss, ActionContainer, DragOrClickHelper */
|
9860
9991
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
9861
9992
|
|
9862
9993
|
"use strict";
|
@@ -10308,10 +10439,14 @@ __webpack_require__.r(__webpack_exports__);
|
|
10308
10439
|
|
10309
10440
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AnimationGroupUtils", function() { return _utils_animation__WEBPACK_IMPORTED_MODULE_8__["AnimationGroupUtils"]; });
|
10310
10441
|
|
10442
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AnimationProperty", function() { return _utils_animation__WEBPACK_IMPORTED_MODULE_8__["AnimationProperty"]; });
|
10443
|
+
|
10311
10444
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AnimationBoolean", function() { return _utils_animation__WEBPACK_IMPORTED_MODULE_8__["AnimationBoolean"]; });
|
10312
10445
|
|
10313
10446
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AnimationGroup", function() { return _utils_animation__WEBPACK_IMPORTED_MODULE_8__["AnimationGroup"]; });
|
10314
10447
|
|
10448
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AnimationTab", function() { return _utils_animation__WEBPACK_IMPORTED_MODULE_8__["AnimationTab"]; });
|
10449
|
+
|
10315
10450
|
/* harmony import */ var _actions_adaptive_container__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../actions/adaptive-container */ "./src/actions/adaptive-container.ts");
|
10316
10451
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AdaptiveActionContainer", function() { return _actions_adaptive_container__WEBPACK_IMPORTED_MODULE_9__["AdaptiveActionContainer"]; });
|
10317
10452
|
|
@@ -10347,7 +10482,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
10347
10482
|
/*!*****************************!*\
|
10348
10483
|
!*** ./src/entries/core.ts ***!
|
10349
10484
|
\*****************************/
|
10350
|
-
/*! 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, QuestionMatrixDropdownRenderedErrorRow, 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, tryFocusPage, createTOCListModel, getTocRootCss, TOCModel, SurveyProgressModel, ProgressButtons, ProgressButtonsResponsivityManager, 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, chooseFiles, sanitizeEditableContent, InputMaskBase, InputMaskPattern, InputMaskNumeric, InputMaskDateTime, InputMaskCurrency, CssClassBuilder, surveyCss, defaultV2Css, defaultV2ThemeName, DragDropCore, DragDropChoices, DragDropRankingSelectToRank, defaultStandardCss, modernCss, SvgIconRegistry, SvgRegistry, SvgBundleViewModel, RendererFactory, ResponsivityManager, VerticalResponsivityManager, unwrap, getOriginalEvent, getElement, createDropdownActionModel, createDropdownActionModelAdvanced, getActionDropdownButtonTarget, BaseAction, Action, ActionDropdownViewModel, AnimationUtils, AnimationPropertyUtils, AnimationGroupUtils, AnimationBoolean, AnimationGroup, AdaptiveActionContainer, defaultActionBarCss, ActionContainer, DragOrClickHelper, Model */
|
10485
|
+
/*! 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, QuestionMatrixDropdownRenderedErrorRow, 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, tryFocusPage, createTOCListModel, getTocRootCss, TOCModel, SurveyProgressModel, ProgressButtons, ProgressButtonsResponsivityManager, 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, chooseFiles, sanitizeEditableContent, InputMaskBase, InputMaskPattern, InputMaskNumeric, InputMaskDateTime, InputMaskCurrency, CssClassBuilder, surveyCss, defaultV2Css, defaultV2ThemeName, DragDropCore, DragDropChoices, DragDropRankingSelectToRank, defaultStandardCss, modernCss, SvgIconRegistry, SvgRegistry, SvgBundleViewModel, RendererFactory, ResponsivityManager, VerticalResponsivityManager, unwrap, getOriginalEvent, getElement, createDropdownActionModel, createDropdownActionModelAdvanced, getActionDropdownButtonTarget, BaseAction, Action, ActionDropdownViewModel, AnimationUtils, AnimationPropertyUtils, AnimationGroupUtils, AnimationProperty, AnimationBoolean, AnimationGroup, AnimationTab, AdaptiveActionContainer, defaultActionBarCss, ActionContainer, DragOrClickHelper, Model */
|
10351
10486
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
10352
10487
|
|
10353
10488
|
"use strict";
|
@@ -10791,10 +10926,14 @@ __webpack_require__.r(__webpack_exports__);
|
|
10791
10926
|
|
10792
10927
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AnimationGroupUtils", function() { return _core_wo_model__WEBPACK_IMPORTED_MODULE_0__["AnimationGroupUtils"]; });
|
10793
10928
|
|
10929
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AnimationProperty", function() { return _core_wo_model__WEBPACK_IMPORTED_MODULE_0__["AnimationProperty"]; });
|
10930
|
+
|
10794
10931
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AnimationBoolean", function() { return _core_wo_model__WEBPACK_IMPORTED_MODULE_0__["AnimationBoolean"]; });
|
10795
10932
|
|
10796
10933
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AnimationGroup", function() { return _core_wo_model__WEBPACK_IMPORTED_MODULE_0__["AnimationGroup"]; });
|
10797
10934
|
|
10935
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AnimationTab", function() { return _core_wo_model__WEBPACK_IMPORTED_MODULE_0__["AnimationTab"]; });
|
10936
|
+
|
10798
10937
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AdaptiveActionContainer", function() { return _core_wo_model__WEBPACK_IMPORTED_MODULE_0__["AdaptiveActionContainer"]; });
|
10799
10938
|
|
10800
10939
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "defaultActionBarCss", function() { return _core_wo_model__WEBPACK_IMPORTED_MODULE_0__["defaultActionBarCss"]; });
|
@@ -11228,7 +11367,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
11228
11367
|
/*!******************************!*\
|
11229
11368
|
!*** ./src/entries/react.ts ***!
|
11230
11369
|
\******************************/
|
11231
|
-
/*! 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, QuestionMatrixDropdownRenderedErrorRow, 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, tryFocusPage, createTOCListModel, getTocRootCss, TOCModel, SurveyProgressModel, ProgressButtons, ProgressButtonsResponsivityManager, 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, chooseFiles, sanitizeEditableContent, InputMaskBase, InputMaskPattern, InputMaskNumeric, InputMaskDateTime, InputMaskCurrency, CssClassBuilder, surveyCss, defaultV2Css, defaultV2ThemeName, DragDropCore, DragDropChoices, DragDropRankingSelectToRank, defaultStandardCss, modernCss, SvgIconRegistry, SvgRegistry, SvgBundleViewModel, RendererFactory, ResponsivityManager, VerticalResponsivityManager, unwrap, getOriginalEvent, getElement, createDropdownActionModel, createDropdownActionModelAdvanced, getActionDropdownButtonTarget, BaseAction, Action, ActionDropdownViewModel, AnimationUtils, AnimationPropertyUtils, AnimationGroupUtils, AnimationBoolean, AnimationGroup, 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, SurveyQuestionMatrixCell, 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, SvgBundleComponent */
|
11370
|
+
/*! 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, QuestionMatrixDropdownRenderedErrorRow, 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, tryFocusPage, createTOCListModel, getTocRootCss, TOCModel, SurveyProgressModel, ProgressButtons, ProgressButtonsResponsivityManager, 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, chooseFiles, sanitizeEditableContent, InputMaskBase, InputMaskPattern, InputMaskNumeric, InputMaskDateTime, InputMaskCurrency, CssClassBuilder, surveyCss, defaultV2Css, defaultV2ThemeName, DragDropCore, DragDropChoices, DragDropRankingSelectToRank, defaultStandardCss, modernCss, SvgIconRegistry, SvgRegistry, SvgBundleViewModel, RendererFactory, ResponsivityManager, VerticalResponsivityManager, unwrap, getOriginalEvent, getElement, createDropdownActionModel, createDropdownActionModelAdvanced, getActionDropdownButtonTarget, BaseAction, Action, ActionDropdownViewModel, AnimationUtils, AnimationPropertyUtils, AnimationGroupUtils, AnimationProperty, AnimationBoolean, AnimationGroup, AnimationTab, 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, SurveyQuestionMatrixCell, 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, SvgBundleComponent */
|
11232
11371
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
11233
11372
|
|
11234
11373
|
"use strict";
|
@@ -11672,10 +11811,14 @@ __webpack_require__.r(__webpack_exports__);
|
|
11672
11811
|
|
11673
11812
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AnimationGroupUtils", function() { return _core__WEBPACK_IMPORTED_MODULE_0__["AnimationGroupUtils"]; });
|
11674
11813
|
|
11814
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AnimationProperty", function() { return _core__WEBPACK_IMPORTED_MODULE_0__["AnimationProperty"]; });
|
11815
|
+
|
11675
11816
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AnimationBoolean", function() { return _core__WEBPACK_IMPORTED_MODULE_0__["AnimationBoolean"]; });
|
11676
11817
|
|
11677
11818
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AnimationGroup", function() { return _core__WEBPACK_IMPORTED_MODULE_0__["AnimationGroup"]; });
|
11678
11819
|
|
11820
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AnimationTab", function() { return _core__WEBPACK_IMPORTED_MODULE_0__["AnimationTab"]; });
|
11821
|
+
|
11679
11822
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "AdaptiveActionContainer", function() { return _core__WEBPACK_IMPORTED_MODULE_0__["AdaptiveActionContainer"]; });
|
11680
11823
|
|
11681
11824
|
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "defaultActionBarCss", function() { return _core__WEBPACK_IMPORTED_MODULE_0__["defaultActionBarCss"]; });
|
@@ -18348,7 +18491,7 @@ module.exports = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\
|
|
18348
18491
|
/*! no static exports found */
|
18349
18492
|
/***/ (function(module, exports) {
|
18350
18493
|
|
18351
|
-
module.exports = "<svg viewBox=\"0 0 48 48\" xmlns=\"http://www.w3.org/2000/svg\"><g><path d=\"M24 39.5057L11.7226 45.9839C10.4095 46.6739 8.87606 45.5622 9.12525 44.096L11.4734 30.373L1.54411 20.6556C0.480254 19.6207 1.06489 17.8095 2.53128 17.5986L16.2559 15.5957L22.3994 3.10891C23.0512 1.77685 24.9488 1.77685 25.6102 3.10891L31.7441 15.5957L45.4687 17.5986C46.9351 17.8095 47.5197 19.6207 46.4559 20.6556L36.5266 30.373L38.8748 44.096C39.1239 45.5622 37.5905 46.6835 36.2774 45.9839L24 39.5057Z\" fill=\"none\"
|
18494
|
+
module.exports = "<svg viewBox=\"0 0 48 48\" xmlns=\"http://www.w3.org/2000/svg\"><g><path d=\"M24 39.5057L11.7226 45.9839C10.4095 46.6739 8.87606 45.5622 9.12525 44.096L11.4734 30.373L1.54411 20.6556C0.480254 19.6207 1.06489 17.8095 2.53128 17.5986L16.2559 15.5957L22.3994 3.10891C23.0512 1.77685 24.9488 1.77685 25.6102 3.10891L31.7441 15.5957L45.4687 17.5986C46.9351 17.8095 47.5197 19.6207 46.4559 20.6556L36.5266 30.373L38.8748 44.096C39.1239 45.5622 37.5905 46.6835 36.2774 45.9839L24 39.5057Z\" fill=\"none\"></path><path d=\"M24.4663 34.6154L24 34.3695L23.5336 34.6154L14.4788 39.389L16.2156 29.2691L16.3044 28.7517L15.9289 28.3848L8.57358 21.1966L18.7249 19.7094L19.245 19.6332L19.4772 19.1616L24 9.97413L28.5228 19.1616L28.755 19.6332L29.275 19.7094L39.4264 21.1966L32.0711 28.3848L31.6956 28.7517L31.7844 29.2691L33.5211 39.389L24.4663 34.6154Z\"></path></g></svg>"
|
18352
18495
|
|
18353
18496
|
/***/ }),
|
18354
18497
|
|
@@ -18370,7 +18513,7 @@ module.exports = "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\
|
|
18370
18513
|
/*! no static exports found */
|
18371
18514
|
/***/ (function(module, exports) {
|
18372
18515
|
|
18373
|
-
module.exports = "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><g><path d=\"M12 19.3373L6.13001 22.4373C5.50001 22.7673 4.77001 22.2373 4.89001 21.5373L6.01001 14.9773L1.26001 10.3273C0.750007 9.83728 1.03001 8.96728 1.73001 8.86728L8.29001 7.90728L11.23 1.93728C11.54 1.29728 12.45 1.29728 12.77 1.93728L15.7 7.90728L22.26 8.86728C22.96 8.96728 23.24 9.83728 22.73 10.3273L17.98 14.9773L19.1 21.5373C19.22 22.2373 18.49 22.7773 17.86 22.4373L11.99 19.3373H12Z\"
|
18516
|
+
module.exports = "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><g><path d=\"M12 19.3373L6.13001 22.4373C5.50001 22.7673 4.77001 22.2373 4.89001 21.5373L6.01001 14.9773L1.26001 10.3273C0.750007 9.83728 1.03001 8.96728 1.73001 8.86728L8.29001 7.90728L11.23 1.93728C11.54 1.29728 12.45 1.29728 12.77 1.93728L15.7 7.90728L22.26 8.86728C22.96 8.96728 23.24 9.83728 22.73 10.3273L17.98 14.9773L19.1 21.5373C19.22 22.2373 18.49 22.7773 17.86 22.4373L11.99 19.3373H12Z\"></path></g></svg>"
|
18374
18517
|
|
18375
18518
|
/***/ }),
|
18376
18519
|
|
@@ -18381,7 +18524,7 @@ module.exports = "<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\
|
|
18381
18524
|
/*! no static exports found */
|
18382
18525
|
/***/ (function(module, exports) {
|
18383
18526
|
|
18384
|
-
module.exports = "<svg viewBox=\"0 0 48 48\" xmlns=\"http://www.w3.org/2000/svg\"><g><path d=\"M24 39.5057L11.7226 45.9839C10.4095 46.6739 8.87606 45.5622 9.12525 44.096L11.4734 30.373L1.54411 20.6556C0.480254 19.6207 1.06489 17.8095 2.53128 17.5986L16.2559 15.5957L22.3994 3.10891C23.0512 1.77685 24.9488 1.77685 25.6102 3.10891L31.7441 15.5957L45.4687 17.5986C46.9351 17.8095 47.5197 19.6207 46.4559 20.6556L36.5266 30.373L38.8748 44.096C39.1239 45.5622 37.5905 46.6835 36.2774 45.9839L24 39.5057Z\"
|
18527
|
+
module.exports = "<svg viewBox=\"0 0 48 48\" xmlns=\"http://www.w3.org/2000/svg\"><g><path d=\"M24 39.5057L11.7226 45.9839C10.4095 46.6739 8.87606 45.5622 9.12525 44.096L11.4734 30.373L1.54411 20.6556C0.480254 19.6207 1.06489 17.8095 2.53128 17.5986L16.2559 15.5957L22.3994 3.10891C23.0512 1.77685 24.9488 1.77685 25.6102 3.10891L31.7441 15.5957L45.4687 17.5986C46.9351 17.8095 47.5197 19.6207 46.4559 20.6556L36.5266 30.373L38.8748 44.096C39.1239 45.5622 37.5905 46.6835 36.2774 45.9839L24 39.5057Z\"></path></g></svg>"
|
18385
18528
|
|
18386
18529
|
/***/ }),
|
18387
18530
|
|
@@ -22276,6 +22419,7 @@ var arabicSurveyStrings = {
|
|
22276
22419
|
savingData: "يتم حفظ النتائج على الخادم ...",
|
22277
22420
|
savingDataError: "حدث خطأ ولم نتمكن من حفظ النتائج.",
|
22278
22421
|
savingDataSuccess: "تم حفظ النتائج بنجاح!",
|
22422
|
+
savingExceedSize: "ردك يتجاوز 64 كيلوبايت. يرجى تقليل حجم الملف (الملفات) والمحاولة مرة أخرى أو الاتصال بمالك الاستطلاع.",
|
22279
22423
|
saveAgainButton: "حاول مجددا",
|
22280
22424
|
timerMin: "دقيقة",
|
22281
22425
|
timerSec: "ثانية",
|
@@ -22287,6 +22431,7 @@ var arabicSurveyStrings = {
|
|
22287
22431
|
timerLimitSurvey: "لقد أنفقت {0} من إجمالي {1}.",
|
22288
22432
|
clearCaption: "واضح",
|
22289
22433
|
signaturePlaceHolder: "وقع هنا",
|
22434
|
+
signaturePlaceHolderReadOnly: "لا يوجد توقيع",
|
22290
22435
|
chooseFileCaption: "اختر ملف",
|
22291
22436
|
takePhotoCaption: "التقاط صورة",
|
22292
22437
|
photoPlaceholder: "انقر فوق الزر أدناه لالتقاط صورة باستخدام الكاميرا.",
|
@@ -22343,7 +22488,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ar"]
|
|
22343
22488
|
// ok: "OK" => "موافق"
|
22344
22489
|
// cancel: "Cancel" => "إلغاء الأمر"
|
22345
22490
|
// refuseItemText: "Refuse to answer" => "رفض الإجابة"
|
22346
|
-
// dontKnowItemText: "Don't know" => "لا أعرف"
|
22491
|
+
// dontKnowItemText: "Don't know" => "لا أعرف"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "ردك يتجاوز 64 كيلوبايت. يرجى تقليل حجم الملف (الملفات) والمحاولة مرة أخرى أو الاتصال بمالك الاستطلاع."
|
22492
|
+
// signaturePlaceHolderReadOnly: "No signature" => "لا يوجد توقيع"
|
22347
22493
|
|
22348
22494
|
|
22349
22495
|
/***/ }),
|
@@ -22429,6 +22575,7 @@ var basqueSurveyStrings = {
|
|
22429
22575
|
savingData: "Erantzunak zerbitzarian gordetzen ari dira...",
|
22430
22576
|
savingDataError: "Erroreren bat gertatu eta erantzunak ez dira zerbitzarian gorde ahal izan.",
|
22431
22577
|
savingDataSuccess: "Erantzunak egoki gorde dira!",
|
22578
|
+
savingExceedSize: "Erantzuna 64 KB-tik gorakoa da. Murriztu artxiboaren tamaina, eta berriro saiatu edo jarri harremanetan inkesta baten jabearekin.",
|
22432
22579
|
saveAgainButton: "Berriro saiatu.",
|
22433
22580
|
timerMin: "min",
|
22434
22581
|
timerSec: "seg",
|
@@ -22440,6 +22587,7 @@ var basqueSurveyStrings = {
|
|
22440
22587
|
timerLimitSurvey: "Zuk orotara {0} gastatu duzu {1}-(e)tik.",
|
22441
22588
|
clearCaption: "Hustu",
|
22442
22589
|
signaturePlaceHolder: "Sinatu hemen",
|
22590
|
+
signaturePlaceHolderReadOnly: "Sinadurarik gabe",
|
22443
22591
|
chooseFileCaption: "Fitxategia hautatu",
|
22444
22592
|
takePhotoCaption: "Argazkia hartu",
|
22445
22593
|
photoPlaceholder: "Egin klik beheko botoian, kamerarekin argazki bat hartzeko.",
|
@@ -22489,7 +22637,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["eu"]
|
|
22489
22637
|
// ok: "OK" => "Ados"
|
22490
22638
|
// cancel: "Cancel" => "Ezeztatu"
|
22491
22639
|
// refuseItemText: "Refuse to answer" => "Erantzuteari uko egin"
|
22492
|
-
// dontKnowItemText: "Don't know" => "Ez dakit"
|
22640
|
+
// dontKnowItemText: "Don't know" => "Ez dakit"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Erantzuna 64 KB-tik gorakoa da. Murriztu artxiboaren tamaina, eta berriro saiatu edo jarri harremanetan inkesta baten jabearekin."
|
22641
|
+
// signaturePlaceHolderReadOnly: "No signature" => "Sinadurarik gabe"
|
22493
22642
|
|
22494
22643
|
|
22495
22644
|
/***/ }),
|
@@ -22575,6 +22724,7 @@ var bulgarianStrings = {
|
|
22575
22724
|
savingData: "Резултатите се запазват на сървъра...",
|
22576
22725
|
savingDataError: "Поради възникнала грешка резултатите не можаха да бъдат запазени.",
|
22577
22726
|
savingDataSuccess: "Резултатите бяха запазени успешно!",
|
22727
|
+
savingExceedSize: "Вашият отговор надхвърля 64KB. Намалете размера на вашите файлове и опитайте отново или се свържете със собственика на проучването.",
|
22578
22728
|
saveAgainButton: "Нов опит",
|
22579
22729
|
timerMin: "мин",
|
22580
22730
|
timerSec: "сек",
|
@@ -22586,6 +22736,7 @@ var bulgarianStrings = {
|
|
22586
22736
|
timerLimitSurvey: "Вие използвахте общо {0} от {1}.",
|
22587
22737
|
clearCaption: "Начално състояние",
|
22588
22738
|
signaturePlaceHolder: "Подпишете тук",
|
22739
|
+
signaturePlaceHolderReadOnly: "Няма подпис",
|
22589
22740
|
chooseFileCaption: "Изберете файл",
|
22590
22741
|
takePhotoCaption: "Направете снимка",
|
22591
22742
|
photoPlaceholder: "Кликнете върху бутона по-долу, за да направите снимка с помощта на камерата.",
|
@@ -22642,7 +22793,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["bg"]
|
|
22642
22793
|
// ok: "OK" => "Добре"
|
22643
22794
|
// cancel: "Cancel" => "Отмени"
|
22644
22795
|
// refuseItemText: "Refuse to answer" => "Отказва да отговори"
|
22645
|
-
// dontKnowItemText: "Don't know" => "Не знам"
|
22796
|
+
// dontKnowItemText: "Don't know" => "Не знам"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Вашият отговор надхвърля 64KB. Намалете размера на вашите файлове и опитайте отново или се свържете със собственика на проучването."
|
22797
|
+
// signaturePlaceHolderReadOnly: "No signature" => "Няма подпис"
|
22646
22798
|
|
22647
22799
|
|
22648
22800
|
/***/ }),
|
@@ -22728,6 +22880,7 @@ var catalanSurveyStrings = {
|
|
22728
22880
|
savingData: "Els resultats s'estan guardant al servidor...",
|
22729
22881
|
savingDataError: "S'ha produït un error i no hem pogut guardar els resultats.",
|
22730
22882
|
savingDataSuccess: "Els resultats es van salvar amb èxit!",
|
22883
|
+
savingExceedSize: "La teva resposta supera els 64KB. Reduïu la mida dels fitxers i torneu-ho a provar o poseu-vos en contacte amb el propietari de l'enquesta.",
|
22731
22884
|
saveAgainButton: "Prova una altra vegada",
|
22732
22885
|
timerMin: "min",
|
22733
22886
|
timerSec: "Seg",
|
@@ -22739,6 +22892,7 @@ var catalanSurveyStrings = {
|
|
22739
22892
|
timerLimitSurvey: "Has gastat {0} d'{1} en total.",
|
22740
22893
|
clearCaption: "Clar",
|
22741
22894
|
signaturePlaceHolder: "Inscriu-te aquí",
|
22895
|
+
signaturePlaceHolderReadOnly: "Sense signatura",
|
22742
22896
|
chooseFileCaption: "Tria un fitxer",
|
22743
22897
|
takePhotoCaption: "Fer foto",
|
22744
22898
|
photoPlaceholder: "Feu clic al botó següent per fer una foto amb la càmera.",
|
@@ -22835,7 +22989,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ca"]
|
|
22835
22989
|
// ok: "OK" => "D'ACORD"
|
22836
22990
|
// cancel: "Cancel" => "Cancel·lar"
|
22837
22991
|
// refuseItemText: "Refuse to answer" => "Negar-se a respondre"
|
22838
|
-
// dontKnowItemText: "Don't know" => "No sé"
|
22992
|
+
// dontKnowItemText: "Don't know" => "No sé"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "La teva resposta supera els 64KB. Reduïu la mida dels fitxers i torneu-ho a provar o poseu-vos en contacte amb el propietari de l'enquesta."
|
22993
|
+
// signaturePlaceHolderReadOnly: "No signature" => "Sense signatura"
|
22839
22994
|
|
22840
22995
|
|
22841
22996
|
/***/ }),
|
@@ -22921,6 +23076,7 @@ var croatianStrings = {
|
|
22921
23076
|
savingData: "Rezultati se spremaju na poslužitelju...",
|
22922
23077
|
savingDataError: "Došlo je do pogreške i nismo mogli spremiti rezultate.",
|
22923
23078
|
savingDataSuccess: "Rezultati su uspješno spremljeni!",
|
23079
|
+
savingExceedSize: "Vaš odgovor premašuje 64KB. Smanjite veličinu datoteka i pokušajte ponovno ili se obratite vlasniku upitnika.",
|
22924
23080
|
saveAgainButton: "Pokušaj ponovo",
|
22925
23081
|
timerMin: "min",
|
22926
23082
|
timerSec: "sec",
|
@@ -22932,6 +23088,7 @@ var croatianStrings = {
|
|
22932
23088
|
timerLimitSurvey: "Ukupno ste potrošili {0} od {1}.",
|
22933
23089
|
clearCaption: "Očistiti",
|
22934
23090
|
signaturePlaceHolder: "Potpiši ovdje",
|
23091
|
+
signaturePlaceHolderReadOnly: "Bez potpisa",
|
22935
23092
|
chooseFileCaption: "Odaberite datoteku",
|
22936
23093
|
takePhotoCaption: "Snimi fotografiju",
|
22937
23094
|
photoPlaceholder: "Kliknite donji gumb da biste snimili fotografiju pomoću kamere.",
|
@@ -22986,7 +23143,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["hr"]
|
|
22986
23143
|
// ok: "OK" => "OK"
|
22987
23144
|
// cancel: "Cancel" => "Otkazati"
|
22988
23145
|
// refuseItemText: "Refuse to answer" => "Odbijte odgovoriti"
|
22989
|
-
// dontKnowItemText: "Don't know" => "Ne znam"
|
23146
|
+
// dontKnowItemText: "Don't know" => "Ne znam"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Vaš odgovor premašuje 64KB. Smanjite veličinu datoteka i pokušajte ponovno ili se obratite vlasniku upitnika."
|
23147
|
+
// signaturePlaceHolderReadOnly: "No signature" => "Bez potpisa"
|
22990
23148
|
|
22991
23149
|
|
22992
23150
|
/***/ }),
|
@@ -23072,6 +23230,7 @@ var czechSurveyStrings = {
|
|
23072
23230
|
savingData: "Výsledky se ukládají na server...",
|
23073
23231
|
savingDataError: "Došlo k chybě a výsledky jsme nemohli uložit.",
|
23074
23232
|
savingDataSuccess: "Výsledky byly úspěšně uloženy!",
|
23233
|
+
savingExceedSize: "Vaše odpověď překračuje 64 kB. Zmenšete prosím velikost svých souborů a zkuste to znovu nebo kontaktujte vlastníka průzkumu.",
|
23075
23234
|
saveAgainButton: "Zkuste to znovu",
|
23076
23235
|
timerMin: "min",
|
23077
23236
|
timerSec: "sek",
|
@@ -23083,6 +23242,7 @@ var czechSurveyStrings = {
|
|
23083
23242
|
timerLimitSurvey: "Celkově jste strávil/a {0} z {1}.",
|
23084
23243
|
clearCaption: "Vymazat",
|
23085
23244
|
signaturePlaceHolder: "Podepište se zde",
|
23245
|
+
signaturePlaceHolderReadOnly: "Bez podpisu",
|
23086
23246
|
chooseFileCaption: "Vyberte soubor",
|
23087
23247
|
takePhotoCaption: "Pořídit fotografii",
|
23088
23248
|
photoPlaceholder: "Kliknutím na tlačítko níže pořídíte fotografii pomocí fotoaparátu.",
|
@@ -23139,7 +23299,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["cs"]
|
|
23139
23299
|
// ok: "OK" => "OK"
|
23140
23300
|
// cancel: "Cancel" => "Zrušit"
|
23141
23301
|
// refuseItemText: "Refuse to answer" => "Odmítnout odpovědět"
|
23142
|
-
// dontKnowItemText: "Don't know" => "Nevím"
|
23302
|
+
// dontKnowItemText: "Don't know" => "Nevím"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Vaše odpověď překračuje 64 kB. Zmenšete prosím velikost svých souborů a zkuste to znovu nebo kontaktujte vlastníka průzkumu."
|
23303
|
+
// signaturePlaceHolderReadOnly: "No signature" => "Bez podpisu"
|
23143
23304
|
|
23144
23305
|
|
23145
23306
|
/***/ }),
|
@@ -23225,6 +23386,7 @@ var danishSurveyStrings = {
|
|
23225
23386
|
savingData: "Resultaterne bliver gemt på serveren...",
|
23226
23387
|
savingDataError: "Der opstod en fejl og vi kunne ikke gemme resultatet.",
|
23227
23388
|
savingDataSuccess: "Resultatet blev gemt!",
|
23389
|
+
savingExceedSize: "Dit svar overstiger 64 KB. Reducer størrelsen på din(e) fil(er), og prøv igen, eller kontakt en undersøgelsesejer.",
|
23228
23390
|
saveAgainButton: "Prøv igen",
|
23229
23391
|
timerMin: "min",
|
23230
23392
|
timerSec: "sek",
|
@@ -23236,6 +23398,7 @@ var danishSurveyStrings = {
|
|
23236
23398
|
timerLimitSurvey: "Du har brugt {0} af {1} i alt.",
|
23237
23399
|
clearCaption: "Fjern",
|
23238
23400
|
signaturePlaceHolder: "Tilmeld dig her",
|
23401
|
+
signaturePlaceHolderReadOnly: "Ingen underskrift",
|
23239
23402
|
chooseFileCaption: "Vælg fil",
|
23240
23403
|
takePhotoCaption: "Tag billede",
|
23241
23404
|
photoPlaceholder: "Klik på knappen nedenfor for at tage et billede med kameraet.",
|
@@ -23292,7 +23455,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["da"]
|
|
23292
23455
|
// ok: "OK" => "OK"
|
23293
23456
|
// cancel: "Cancel" => "Aflyse"
|
23294
23457
|
// refuseItemText: "Refuse to answer" => "Nægt at svare"
|
23295
|
-
// dontKnowItemText: "Don't know" => "Ved ikke"
|
23458
|
+
// dontKnowItemText: "Don't know" => "Ved ikke"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Dit svar overstiger 64 KB. Reducer størrelsen på din(e) fil(er), og prøv igen, eller kontakt en undersøgelsesejer."
|
23459
|
+
// signaturePlaceHolderReadOnly: "No signature" => "Ingen underskrift"
|
23296
23460
|
|
23297
23461
|
|
23298
23462
|
/***/ }),
|
@@ -23378,6 +23542,7 @@ var dutchSurveyStrings = {
|
|
23378
23542
|
savingData: "De resultaten worden bewaard op de server...",
|
23379
23543
|
savingDataError: "Er was een probleem en we konden de resultaten niet bewaren.",
|
23380
23544
|
savingDataSuccess: "De resultaten werden succesvol bewaard!",
|
23545
|
+
savingExceedSize: "Uw antwoord is groter dan 64 kB. Verklein de grootte van uw bestand(en) en probeer het opnieuw of neem contact op met een enquête-eigenaar.",
|
23381
23546
|
saveAgainButton: "Probeer opnieuw",
|
23382
23547
|
timerMin: "minimum",
|
23383
23548
|
timerSec: "sec",
|
@@ -23389,6 +23554,7 @@ var dutchSurveyStrings = {
|
|
23389
23554
|
timerLimitSurvey: "U heeft {0} van {1} in het totaal.",
|
23390
23555
|
clearCaption: "Verwijder",
|
23391
23556
|
signaturePlaceHolder: "Hier tekenen",
|
23557
|
+
signaturePlaceHolderReadOnly: "Geen handtekening",
|
23392
23558
|
chooseFileCaption: "Gekozen bestand",
|
23393
23559
|
takePhotoCaption: "Foto maken",
|
23394
23560
|
photoPlaceholder: "Klik op de onderstaande knop om een foto te maken met de camera.",
|
@@ -23443,7 +23609,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["nl"]
|
|
23443
23609
|
// ok: "OK" => "OK"
|
23444
23610
|
// cancel: "Cancel" => "Annuleren"
|
23445
23611
|
// refuseItemText: "Refuse to answer" => "Weiger te antwoorden"
|
23446
|
-
// dontKnowItemText: "Don't know" => "Weet niet"
|
23612
|
+
// dontKnowItemText: "Don't know" => "Weet niet"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Uw antwoord is groter dan 64 kB. Verklein de grootte van uw bestand(en) en probeer het opnieuw of neem contact op met een enquête-eigenaar."
|
23613
|
+
// signaturePlaceHolderReadOnly: "No signature" => "Geen handtekening"
|
23447
23614
|
|
23448
23615
|
|
23449
23616
|
/***/ }),
|
@@ -23510,7 +23677,7 @@ var englishStrings = {
|
|
23510
23677
|
uploadingFile: "Your file is uploading. Please wait several seconds and try again.",
|
23511
23678
|
loadingFile: "Loading...",
|
23512
23679
|
chooseFile: "Choose file(s)...",
|
23513
|
-
noFileChosen: "No file
|
23680
|
+
noFileChosen: "No file selected",
|
23514
23681
|
filePlaceholder: "Drag and drop a file here or click the button below to select a file to upload.",
|
23515
23682
|
confirmDelete: "Are you sure you want to delete this record?",
|
23516
23683
|
keyDuplicationError: "This value should be unique.",
|
@@ -23529,6 +23696,7 @@ var englishStrings = {
|
|
23529
23696
|
savingData: "The results are being saved on the server...",
|
23530
23697
|
savingDataError: "An error occurred and we could not save the results.",
|
23531
23698
|
savingDataSuccess: "The results were saved successfully!",
|
23699
|
+
savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner.",
|
23532
23700
|
saveAgainButton: "Try again",
|
23533
23701
|
timerMin: "min",
|
23534
23702
|
timerSec: "sec",
|
@@ -23540,6 +23708,7 @@ var englishStrings = {
|
|
23540
23708
|
timerLimitSurvey: "You have spent {0} of {1} in total.",
|
23541
23709
|
clearCaption: "Clear",
|
23542
23710
|
signaturePlaceHolder: "Sign here",
|
23711
|
+
signaturePlaceHolderReadOnly: "No signature",
|
23543
23712
|
chooseFileCaption: "Select File",
|
23544
23713
|
takePhotoCaption: "Take Photo",
|
23545
23714
|
photoPlaceholder: "Click the button below to take a photo using the camera.",
|
@@ -23556,7 +23725,7 @@ var englishStrings = {
|
|
23556
23725
|
filterStringPlaceholder: "Type to search...",
|
23557
23726
|
emptyMessage: "No data to display",
|
23558
23727
|
noEntriesText: "No entries yet.\nClick the button below to add a new entry.",
|
23559
|
-
noEntriesReadonlyText: "No entries
|
23728
|
+
noEntriesReadonlyText: "No entries",
|
23560
23729
|
more: "More",
|
23561
23730
|
tagboxDoneButtonCaption: "OK",
|
23562
23731
|
selectToRankEmptyRankedAreaText: "All choices are selected for ranking",
|
@@ -23654,6 +23823,7 @@ var estonianSurveyStrings = {
|
|
23654
23823
|
savingData: "Salvestan andmed serveris...",
|
23655
23824
|
savingDataError: "Tekkis viga ning me ei saanud vastuseid salvestada.",
|
23656
23825
|
savingDataSuccess: "Vastuste salvestamine õnnestus!",
|
23826
|
+
savingExceedSize: "Teie vastus ületab 64 KB. Vähendage faili(de) mahtu ja proovige uuesti või võtke ühendust uuringu omanikuga.",
|
23657
23827
|
saveAgainButton: "Proovi uuesti",
|
23658
23828
|
timerMin: "min",
|
23659
23829
|
timerSec: "sek",
|
@@ -23665,6 +23835,7 @@ var estonianSurveyStrings = {
|
|
23665
23835
|
timerLimitSurvey: "Oled kulutanud {0} võimalikust {1} koguajast.",
|
23666
23836
|
clearCaption: "Puhasta",
|
23667
23837
|
signaturePlaceHolder: "Allkirjasta siin",
|
23838
|
+
signaturePlaceHolderReadOnly: "Allkiri puudub",
|
23668
23839
|
chooseFileCaption: "Vali fail",
|
23669
23840
|
takePhotoCaption: "Pildistamine",
|
23670
23841
|
photoPlaceholder: "Kaamera abil pildistamiseks klõpsake allolevat nuppu.",
|
@@ -23721,7 +23892,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["et"]
|
|
23721
23892
|
// ok: "OK" => "OK"
|
23722
23893
|
// cancel: "Cancel" => "Tühistama"
|
23723
23894
|
// refuseItemText: "Refuse to answer" => "Keeldu vastamast"
|
23724
|
-
// dontKnowItemText: "Don't know" => "Ei tea"
|
23895
|
+
// dontKnowItemText: "Don't know" => "Ei tea"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Teie vastus ületab 64 KB. Vähendage faili(de) mahtu ja proovige uuesti või võtke ühendust uuringu omanikuga."
|
23896
|
+
// signaturePlaceHolderReadOnly: "No signature" => "Allkiri puudub"
|
23725
23897
|
|
23726
23898
|
|
23727
23899
|
/***/ }),
|
@@ -23807,6 +23979,7 @@ var finnishSurveyStrings = {
|
|
23807
23979
|
savingData: "Tietoja tallennetaan palvelimelle...",
|
23808
23980
|
savingDataError: "Tapahtui virhe, emmekä voineet tallentaa kyselyn tietoja.",
|
23809
23981
|
savingDataSuccess: "Tiedot tallennettiin onnistuneesti!",
|
23982
|
+
savingExceedSize: "Vastauksesi ylittää 64 kt. Pienennä tiedostojesi kokoa ja yritä uudelleen tai ota yhteyttä kyselyn omistajaan.",
|
23810
23983
|
saveAgainButton: "Yritä uudelleen",
|
23811
23984
|
timerMin: "min",
|
23812
23985
|
timerSec: "sek",
|
@@ -23818,6 +23991,7 @@ var finnishSurveyStrings = {
|
|
23818
23991
|
timerLimitSurvey: "Olet käyttänyt yhteensä {0} / {1}.",
|
23819
23992
|
clearCaption: "Tyhjennä",
|
23820
23993
|
signaturePlaceHolder: "Allekirjoita tähän",
|
23994
|
+
signaturePlaceHolderReadOnly: "Ei allekirjoitusta",
|
23821
23995
|
chooseFileCaption: "Valitse tiedosto",
|
23822
23996
|
takePhotoCaption: "Ota valokuva",
|
23823
23997
|
photoPlaceholder: "Napsauta alla olevaa painiketta ottaaksesi valokuvan kameralla.",
|
@@ -23862,7 +24036,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["fi"]
|
|
23862
24036
|
// ok: "OK" => "OKEI"
|
23863
24037
|
// cancel: "Cancel" => "Perua"
|
23864
24038
|
// refuseItemText: "Refuse to answer" => "Kieltäydy vastaamasta"
|
23865
|
-
// dontKnowItemText: "Don't know" => "Ei tiedä"
|
24039
|
+
// dontKnowItemText: "Don't know" => "Ei tiedä"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Vastauksesi ylittää 64 kt. Pienennä tiedostojesi kokoa ja yritä uudelleen tai ota yhteyttä kyselyn omistajaan."
|
24040
|
+
// signaturePlaceHolderReadOnly: "No signature" => "Ei allekirjoitusta"
|
23866
24041
|
|
23867
24042
|
|
23868
24043
|
/***/ }),
|
@@ -23948,6 +24123,7 @@ var frenchSurveyStrings = {
|
|
23948
24123
|
savingData: "Les résultats sont en cours de sauvegarde sur le serveur...",
|
23949
24124
|
savingDataError: "Une erreur est survenue et a empêché la sauvegarde des résultats.",
|
23950
24125
|
savingDataSuccess: "Les résultats ont bien été enregistrés !",
|
24126
|
+
savingExceedSize: "Votre réponse dépasse 64 Ko. Veuillez réduire la taille de votre ou vos fichiers et réessayer ou contacter un propriétaire de sondage.",
|
23951
24127
|
saveAgainButton: "Réessayer",
|
23952
24128
|
timerMin: "min",
|
23953
24129
|
timerSec: "sec",
|
@@ -23959,6 +24135,7 @@ var frenchSurveyStrings = {
|
|
23959
24135
|
timerLimitSurvey: "Vous avez passé {0} sur {1} au total.",
|
23960
24136
|
clearCaption: "Vider",
|
23961
24137
|
signaturePlaceHolder: "Signez ici",
|
24138
|
+
signaturePlaceHolderReadOnly: "Pas de signature",
|
23962
24139
|
chooseFileCaption: "Ajouter un fichier",
|
23963
24140
|
takePhotoCaption: "Prendre une photo",
|
23964
24141
|
photoPlaceholder: "Cliquez sur le bouton ci-dessous pour prendre une photo à l’aide de l’appareil photo.",
|
@@ -24003,7 +24180,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["fr"]
|
|
24003
24180
|
// ok: "OK" => "D’ACCORD"
|
24004
24181
|
// cancel: "Cancel" => "Annuler"
|
24005
24182
|
// refuseItemText: "Refuse to answer" => "Refuser de répondre"
|
24006
|
-
// dontKnowItemText: "Don't know" => "Sais pas"
|
24183
|
+
// dontKnowItemText: "Don't know" => "Sais pas"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Votre réponse dépasse 64 Ko. Veuillez réduire la taille de votre ou vos fichiers et réessayer ou contacter un propriétaire de sondage."
|
24184
|
+
// signaturePlaceHolderReadOnly: "No signature" => "Pas de signature"
|
24007
24185
|
|
24008
24186
|
|
24009
24187
|
/***/ }),
|
@@ -24089,6 +24267,7 @@ var georgianSurveyStrings = {
|
|
24089
24267
|
savingData: "შედეგები ინახება სერვერზე...",
|
24090
24268
|
savingDataError: "დაფიქსირდა შეცდომა და შედეგი ვერ შევინახავდით.",
|
24091
24269
|
savingDataSuccess: "შედეგები წარმატებით გადაარჩინეს!",
|
24270
|
+
savingExceedSize: "თქვენი პასუხი აღემატება 64KB. გთხოვთ, შეამციროთ თქვენი ფაილ(ებ)ის ზომა და სცადოთ ხელახლა ან დაუკავშირდეთ გამოკითხვის მფლობელს.",
|
24092
24271
|
saveAgainButton: "კიდევ სცადე",
|
24093
24272
|
timerMin: "წთ",
|
24094
24273
|
timerSec: "წმ",
|
@@ -24100,6 +24279,7 @@ var georgianSurveyStrings = {
|
|
24100
24279
|
timerLimitSurvey: "თქვენ სულ {1} {0} დახარჯეთ.",
|
24101
24280
|
clearCaption: "მოწმენდილი ცა",
|
24102
24281
|
signaturePlaceHolder: "შესვლა აქ",
|
24282
|
+
signaturePlaceHolderReadOnly: "ხელმოწერა არ არის",
|
24103
24283
|
chooseFileCaption: "ვაუჩერის ნახვა",
|
24104
24284
|
takePhotoCaption: "გადაიღეთ ფოტო",
|
24105
24285
|
photoPlaceholder: "დააჭირეთ ქვემოთ მოცემულ ღილაკს, რომ გადაიღოთ ფოტო კამერის გამოყენებით.",
|
@@ -24209,7 +24389,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ka"]
|
|
24209
24389
|
// ok: "OK" => "კარგი"
|
24210
24390
|
// cancel: "Cancel" => "გაუქმება"
|
24211
24391
|
// refuseItemText: "Refuse to answer" => "უარი პასუხზე"
|
24212
|
-
// dontKnowItemText: "Don't know" => "არ ვიცი"
|
24392
|
+
// dontKnowItemText: "Don't know" => "არ ვიცი"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "თქვენი პასუხი აღემატება 64KB. გთხოვთ, შეამციროთ თქვენი ფაილ(ებ)ის ზომა და სცადოთ ხელახლა ან დაუკავშირდეთ გამოკითხვის მფლობელს."
|
24393
|
+
// signaturePlaceHolderReadOnly: "No signature" => "ხელმოწერა არ არის"
|
24213
24394
|
|
24214
24395
|
|
24215
24396
|
/***/ }),
|
@@ -24295,6 +24476,7 @@ var germanSurveyStrings = {
|
|
24295
24476
|
savingData: "Die Ergebnisse werden auf dem Server gespeichert...",
|
24296
24477
|
savingDataError: "Es ist ein Fehler aufgetreten. Die Ergebnisse konnten nicht gespeichert werden.",
|
24297
24478
|
savingDataSuccess: "Die Ergebnisse wurden gespeichert!",
|
24479
|
+
savingExceedSize: "Ihre Antwort überschreitet 64 KB. Reduzieren Sie die Größe Ihrer Datei(en) und versuchen Sie es erneut, oder wenden Sie sich an einen Umfragebesitzer.",
|
24298
24480
|
saveAgainButton: "Erneut absenden",
|
24299
24481
|
timerMin: "Min.",
|
24300
24482
|
timerSec: "Sek.",
|
@@ -24306,6 +24488,7 @@ var germanSurveyStrings = {
|
|
24306
24488
|
timerLimitSurvey: "Sie haben insgesamt {0} von {1} gebraucht.",
|
24307
24489
|
clearCaption: "Auswahl entfernen",
|
24308
24490
|
signaturePlaceHolder: "Hier unterschreiben",
|
24491
|
+
signaturePlaceHolderReadOnly: "Keine Unterschrift",
|
24309
24492
|
chooseFileCaption: "Datei auswählen",
|
24310
24493
|
takePhotoCaption: "Foto machen",
|
24311
24494
|
photoPlaceholder: "Klicken Sie auf die Schaltfläche unten, um ein Foto mit der Kamera aufzunehmen.",
|
@@ -24349,6 +24532,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["de"]
|
|
24349
24532
|
// cancel: "Cancel" => "Abbrechen"
|
24350
24533
|
// refuseItemText: "Refuse to answer" => "Verweigern Sie die Antwort"
|
24351
24534
|
// dontKnowItemText: "Don't know" => "Weiß ich nicht"
|
24535
|
+
// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Ihre Antwort überschreitet 64 KB. Reduzieren Sie die Größe Ihrer Datei(en) und versuchen Sie es erneut, oder wenden Sie sich an einen Umfragebesitzer."
|
24536
|
+
// signaturePlaceHolderReadOnly: "No signature" => "Keine Unterschrift"
|
24352
24537
|
|
24353
24538
|
|
24354
24539
|
/***/ }),
|
@@ -24434,6 +24619,7 @@ var greekSurveyStrings = {
|
|
24434
24619
|
savingData: "Τα αποτελέσματα αποθηκεύονται στον διακομιστή ...",
|
24435
24620
|
savingDataError: "Παρουσιάστηκε σφάλμα και δεν ήταν δυνατή η αποθήκευση των αποτελεσμάτων.",
|
24436
24621
|
savingDataSuccess: "Τα αποτελέσματα αποθηκεύτηκαν με επιτυχία!",
|
24622
|
+
savingExceedSize: "Η απάντησή σας υπερβαίνει τα 64KB. Μειώστε το μέγεθος των αρχείων σας και προσπαθήστε ξανά ή επικοινωνήστε με έναν κάτοχο έρευνας.",
|
24437
24623
|
saveAgainButton: "Προσπάθησε ξανά",
|
24438
24624
|
timerMin: "ελάχ",
|
24439
24625
|
timerSec: "δευτ",
|
@@ -24445,6 +24631,7 @@ var greekSurveyStrings = {
|
|
24445
24631
|
timerLimitSurvey: "Έχετε ξοδέψει {0} από {1} συνολικά.",
|
24446
24632
|
clearCaption: "Εκκαθάριση",
|
24447
24633
|
signaturePlaceHolder: "Υπογράψτε εδώ",
|
24634
|
+
signaturePlaceHolderReadOnly: "Χωρίς υπογραφή",
|
24448
24635
|
chooseFileCaption: "Επιλέξτε αρχείο",
|
24449
24636
|
takePhotoCaption: "Λήψη φωτογραφίας",
|
24450
24637
|
photoPlaceholder: "Κάντε κλικ στο παρακάτω κουμπί για να τραβήξετε μια φωτογραφία χρησιμοποιώντας την κάμερα.",
|
@@ -24486,7 +24673,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["gr"]
|
|
24486
24673
|
// ok: "OK" => "OK"
|
24487
24674
|
// cancel: "Cancel" => "Ακυρώνω"
|
24488
24675
|
// refuseItemText: "Refuse to answer" => "Αρνηθείτε να απαντήσετε"
|
24489
|
-
// dontKnowItemText: "Don't know" => "Δεν ξέρω"
|
24676
|
+
// dontKnowItemText: "Don't know" => "Δεν ξέρω"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Η απάντησή σας υπερβαίνει τα 64KB. Μειώστε το μέγεθος των αρχείων σας και προσπαθήστε ξανά ή επικοινωνήστε με έναν κάτοχο έρευνας."
|
24677
|
+
// signaturePlaceHolderReadOnly: "No signature" => "Χωρίς υπογραφή"
|
24490
24678
|
|
24491
24679
|
|
24492
24680
|
/***/ }),
|
@@ -24572,6 +24760,7 @@ var hebrewSurveyStrings = {
|
|
24572
24760
|
savingData: "התוצאות נשמרות בשרת ...",
|
24573
24761
|
savingDataError: "אירעה שגיאה ולא הצלחנו לשמור את התוצאות.",
|
24574
24762
|
savingDataSuccess: "התוצאות נשמרו בהצלחה!",
|
24763
|
+
savingExceedSize: "תגובתך עולה על 64KB. הקטן את גודל הקבצים שלך ונסה שוב או פנה לבעלים של סקר.",
|
24575
24764
|
saveAgainButton: "נסה שוב",
|
24576
24765
|
timerMin: "דקה",
|
24577
24766
|
timerSec: "שניות",
|
@@ -24583,6 +24772,7 @@ var hebrewSurveyStrings = {
|
|
24583
24772
|
timerLimitSurvey: "הוצאת סכום כולל של {0} מתוך {1}.",
|
24584
24773
|
clearCaption: "לנקות",
|
24585
24774
|
signaturePlaceHolder: "חתום כאן",
|
24775
|
+
signaturePlaceHolderReadOnly: "אין חתימה",
|
24586
24776
|
chooseFileCaption: "בחר קובץ",
|
24587
24777
|
takePhotoCaption: "צלם תמונה",
|
24588
24778
|
photoPlaceholder: "לחץ על הלחצן למטה כדי לצלם תמונה באמצעות המצלמה.",
|
@@ -24640,6 +24830,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["he"]
|
|
24640
24830
|
// cancel: "Cancel" => "ביטל"
|
24641
24831
|
// refuseItemText: "Refuse to answer" => "מסרבים לענות"
|
24642
24832
|
// dontKnowItemText: "Don't know" => "לא יודע"
|
24833
|
+
// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "תגובתך עולה על 64KB. הקטן את גודל הקבצים שלך ונסה שוב או פנה לבעלים של סקר."
|
24834
|
+
// signaturePlaceHolderReadOnly: "No signature" => "אין חתימה"
|
24643
24835
|
|
24644
24836
|
|
24645
24837
|
/***/ }),
|
@@ -24725,6 +24917,7 @@ var hindiStrings = {
|
|
24725
24917
|
savingData: "परिणाम सर्वर पर सेव हो रहे हैं",
|
24726
24918
|
savingDataError: "एक त्रुटि हुई और हम परिणामों को नहीं सेव कर सके",
|
24727
24919
|
savingDataSuccess: "परिणाम सफलतापूर्वक सेव हो गए",
|
24920
|
+
savingExceedSize: "आपकी प्रतिक्रिया 64KB से अधिक है। कृपया अपनी फ़ाइल(फ़ाइलों) का आकार घटाएँ और पुन: प्रयास करें या सर्वेक्षण स्वामी से संपर्क करें.",
|
24728
24921
|
saveAgainButton: "फिर कोशिश करो",
|
24729
24922
|
timerMin: "मिनट",
|
24730
24923
|
timerSec: "सेकंड",
|
@@ -24736,6 +24929,7 @@ var hindiStrings = {
|
|
24736
24929
|
timerLimitSurvey: "आपने कुल {1} की {0} खर्च की है",
|
24737
24930
|
clearCaption: "स्पष्ट",
|
24738
24931
|
signaturePlaceHolder: "यहां साइन करें",
|
24932
|
+
signaturePlaceHolderReadOnly: "कोई हस्ताक्षर नहीं",
|
24739
24933
|
chooseFileCaption: "फ़ाइल चुनें",
|
24740
24934
|
takePhotoCaption: "फोटो ले लो",
|
24741
24935
|
photoPlaceholder: "कैमरे का उपयोग करके फोटो लेने के लिए नीचे दिए गए बटन पर क्लिक करें।",
|
@@ -24792,7 +24986,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["hi"]
|
|
24792
24986
|
// hideDetails: "Hide Details" => "विवरण छुपाएँ"
|
24793
24987
|
// ok: "OK" => "ठीक है"
|
24794
24988
|
// cancel: "Cancel" => "रद्द करना"// refuseItemText: "Refuse to answer" => "जवाब देने से इनकार"
|
24795
|
-
// dontKnowItemText: "Don't know" => "नहीं मालूम"
|
24989
|
+
// dontKnowItemText: "Don't know" => "नहीं मालूम"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "आपकी प्रतिक्रिया 64KB से अधिक है। कृपया अपनी फ़ाइल(फ़ाइलों) का आकार घटाएँ और पुन: प्रयास करें या सर्वेक्षण स्वामी से संपर्क करें."
|
24990
|
+
// signaturePlaceHolderReadOnly: "No signature" => "कोई हस्ताक्षर नहीं"
|
24796
24991
|
|
24797
24992
|
|
24798
24993
|
/***/ }),
|
@@ -24878,6 +25073,7 @@ var hungarianSurveyStrings = {
|
|
24878
25073
|
savingData: "Eredmény mentése a szerverre...",
|
24879
25074
|
savingDataError: "Egy hiba folytán nem tudtuk elmenteni az eredményt.",
|
24880
25075
|
savingDataSuccess: "Eredmény sikeresen mentve!",
|
25076
|
+
savingExceedSize: "A válasz meghaladja a 64 KB-ot. Kérjük, csökkentse a fájl(ok) méretét, és próbálja újra, vagy lépjen kapcsolatba egy felmérés tulajdonosával.",
|
24881
25077
|
saveAgainButton: "Próbálja újra",
|
24882
25078
|
timerMin: "min",
|
24883
25079
|
timerSec: "sec",
|
@@ -24889,6 +25085,7 @@ var hungarianSurveyStrings = {
|
|
24889
25085
|
timerLimitSurvey: "Összesen {0} / {1} összeget költött el.",
|
24890
25086
|
clearCaption: "Egyértelmű",
|
24891
25087
|
signaturePlaceHolder: "Írja alá itt",
|
25088
|
+
signaturePlaceHolderReadOnly: "Nincs aláírás",
|
24892
25089
|
chooseFileCaption: "Válassz fájlt",
|
24893
25090
|
takePhotoCaption: "Fotó készítése",
|
24894
25091
|
photoPlaceholder: "Kattintson az alábbi gombra, hogy fényképet készítsen a fényképezőgéppel.",
|
@@ -24944,7 +25141,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["hu"]
|
|
24944
25141
|
// ok: "OK" => "OKÉ"
|
24945
25142
|
// cancel: "Cancel" => "Érvénytelenít"
|
24946
25143
|
// refuseItemText: "Refuse to answer" => "A válaszadás megtagadása"
|
24947
|
-
// dontKnowItemText: "Don't know" => "Nem tudom"
|
25144
|
+
// dontKnowItemText: "Don't know" => "Nem tudom"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "A válasz meghaladja a 64 KB-ot. Kérjük, csökkentse a fájl(ok) méretét, és próbálja újra, vagy lépjen kapcsolatba egy felmérés tulajdonosával."
|
25145
|
+
// signaturePlaceHolderReadOnly: "No signature" => "Nincs aláírás"
|
24948
25146
|
|
24949
25147
|
|
24950
25148
|
/***/ }),
|
@@ -25030,6 +25228,7 @@ var icelandicSurveyStrings = {
|
|
25030
25228
|
savingData: "Niðurstöðurnar eru að spara á netþjóninum ... ",
|
25031
25229
|
savingDataError: "Villa kom upp og við gátum ekki vistað niðurstöðurnar.",
|
25032
25230
|
savingDataSuccess: "Árangurinn var vistaður með góðum árangri!",
|
25231
|
+
savingExceedSize: "Svar þitt fer yfir 64KB. Vinsamlegast minnkaðu stærð skráa þinna og reyndu aftur eða hafðu samband við eiganda könnunarinnar.",
|
25033
25232
|
saveAgainButton: "Reyndu aftur",
|
25034
25233
|
timerMin: "mín",
|
25035
25234
|
timerSec: "sek",
|
@@ -25041,6 +25240,7 @@ var icelandicSurveyStrings = {
|
|
25041
25240
|
timerLimitSurvey: "Þú hefur eytt {0} af {1} samtals.",
|
25042
25241
|
clearCaption: "Hreinsa",
|
25043
25242
|
signaturePlaceHolder: "Kvittađu hér",
|
25243
|
+
signaturePlaceHolderReadOnly: "Engin undirskrift",
|
25044
25244
|
chooseFileCaption: "Veldu skrá",
|
25045
25245
|
takePhotoCaption: "Taka mynd",
|
25046
25246
|
photoPlaceholder: "Smelltu á hnappinn hér að neðan til að taka mynd með myndavélinni.",
|
@@ -25097,7 +25297,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["is"]
|
|
25097
25297
|
// ok: "OK" => "ÓKEI"
|
25098
25298
|
// cancel: "Cancel" => "Afturkalla"
|
25099
25299
|
// refuseItemText: "Refuse to answer" => "Neita að svara"
|
25100
|
-
// dontKnowItemText: "Don't know" => "Veit ekki"
|
25300
|
+
// dontKnowItemText: "Don't know" => "Veit ekki"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Svar þitt fer yfir 64KB. Vinsamlegast minnkaðu stærð skráa þinna og reyndu aftur eða hafðu samband við eiganda könnunarinnar."
|
25301
|
+
// signaturePlaceHolderReadOnly: "No signature" => "Engin undirskrift"
|
25101
25302
|
|
25102
25303
|
|
25103
25304
|
/***/ }),
|
@@ -25183,6 +25384,7 @@ var indonesianStrings = {
|
|
25183
25384
|
savingData: "Hasil sedang disimpan pada server...",
|
25184
25385
|
savingDataError: "Kesalahan terjadi dan kami tidak dapat menyimpan hasil.",
|
25185
25386
|
savingDataSuccess: "Hasil telah sukses disimpan!",
|
25387
|
+
savingExceedSize: "Respons Anda melebihi 64 KB. Harap kurangi ukuran file Anda dan coba lagi atau hubungi pemilik survei.",
|
25186
25388
|
saveAgainButton: "Coba lagi",
|
25187
25389
|
timerMin: "menit",
|
25188
25390
|
timerSec: "detik",
|
@@ -25194,6 +25396,7 @@ var indonesianStrings = {
|
|
25194
25396
|
timerLimitSurvey: "Anda telah menghabiskan {0} dari {1} secara keseluruhan.",
|
25195
25397
|
clearCaption: "Bersihkan",
|
25196
25398
|
signaturePlaceHolder: "Tanda tangan di sini",
|
25399
|
+
signaturePlaceHolderReadOnly: "Tidak ada tanda tangan",
|
25197
25400
|
chooseFileCaption: "Pilih File",
|
25198
25401
|
takePhotoCaption: "Ambil Foto",
|
25199
25402
|
photoPlaceholder: "Klik tombol di bawah ini untuk mengambil foto menggunakan kamera.",
|
@@ -25250,7 +25453,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["id"]
|
|
25250
25453
|
// ok: "OK" => "OKE"
|
25251
25454
|
// cancel: "Cancel" => "Membatalkan"
|
25252
25455
|
// refuseItemText: "Refuse to answer" => "Menolak untuk menjawab"
|
25253
|
-
// dontKnowItemText: "Don't know" => "Tidak tahu"
|
25456
|
+
// dontKnowItemText: "Don't know" => "Tidak tahu"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Respons Anda melebihi 64 KB. Harap kurangi ukuran file Anda dan coba lagi atau hubungi pemilik survei."
|
25457
|
+
// signaturePlaceHolderReadOnly: "No signature" => "Tidak ada tanda tangan"
|
25254
25458
|
|
25255
25459
|
|
25256
25460
|
/***/ }),
|
@@ -25336,6 +25540,7 @@ var italianSurveyStrings = {
|
|
25336
25540
|
savingData: "Salvataggio dati sul server...",
|
25337
25541
|
savingDataError: "Si è verificato un errore e non è stato possibile salvare i risultati.",
|
25338
25542
|
savingDataSuccess: "I risultati sono stati salvati con successo!",
|
25543
|
+
savingExceedSize: "La tua risposta supera i 64 KB. Riduci le dimensioni dei tuoi file e riprova o contatta il proprietario di un'indagine.",
|
25339
25544
|
saveAgainButton: "Riprova",
|
25340
25545
|
timerMin: "min",
|
25341
25546
|
timerSec: "sec",
|
@@ -25347,6 +25552,7 @@ var italianSurveyStrings = {
|
|
25347
25552
|
timerLimitSurvey: "Hai impiegato {0} di {1} in totale.",
|
25348
25553
|
clearCaption: "Cancella",
|
25349
25554
|
signaturePlaceHolder: "Firmare qui",
|
25555
|
+
signaturePlaceHolderReadOnly: "Nessuna firma",
|
25350
25556
|
chooseFileCaption: "Scegliere il file",
|
25351
25557
|
takePhotoCaption: "Scatta foto",
|
25352
25558
|
photoPlaceholder: "Fai clic sul pulsante qui sotto per scattare una foto utilizzando la fotocamera.",
|
@@ -25391,7 +25597,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["it"]
|
|
25391
25597
|
// ok: "OK" => "OK"
|
25392
25598
|
// cancel: "Cancel" => "Annulla"
|
25393
25599
|
// refuseItemText: "Refuse to answer" => "Rifiuta di rispondere"
|
25394
|
-
// dontKnowItemText: "Don't know" => "Non lo so"
|
25600
|
+
// dontKnowItemText: "Don't know" => "Non lo so"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "La tua risposta supera i 64 KB. Riduci le dimensioni dei tuoi file e riprova o contatta il proprietario di un'indagine."
|
25601
|
+
// signaturePlaceHolderReadOnly: "No signature" => "Nessuna firma"
|
25395
25602
|
|
25396
25603
|
|
25397
25604
|
/***/ }),
|
@@ -25477,6 +25684,7 @@ var japaneseSurveyStrings = {
|
|
25477
25684
|
savingData: "結果はサーバーに保存されています...。",
|
25478
25685
|
savingDataError: "エラーが発生し、結果を保存できませんでした。",
|
25479
25686
|
savingDataSuccess: "結果は無事に保存されました",
|
25687
|
+
savingExceedSize: "回答は 64 KB を超えています。ファイルのサイズを小さくしてもう一度お試しいただくか、アンケートの所有者にお問い合わせください。",
|
25480
25688
|
saveAgainButton: "もう一度試してみてください。",
|
25481
25689
|
timerMin: "僅少",
|
25482
25690
|
timerSec: "セック",
|
@@ -25488,6 +25696,7 @@ var japaneseSurveyStrings = {
|
|
25488
25696
|
timerLimitSurvey: "合計で{1}の{0}を使ったことがあります。",
|
25489
25697
|
clearCaption: "空白",
|
25490
25698
|
signaturePlaceHolder: "ここに署名",
|
25699
|
+
signaturePlaceHolderReadOnly: "署名なし",
|
25491
25700
|
chooseFileCaption: "ファイルを選択",
|
25492
25701
|
takePhotoCaption: "写真を撮る",
|
25493
25702
|
photoPlaceholder: "下のボタンをクリックして、カメラを使用して写真を撮ります。",
|
@@ -25544,7 +25753,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ja"]
|
|
25544
25753
|
// ok: "OK" => "わかりました"
|
25545
25754
|
// cancel: "Cancel" => "キャンセル"
|
25546
25755
|
// refuseItemText: "Refuse to answer" => "回答を拒否する"
|
25547
|
-
// dontKnowItemText: "Don't know" => "わかりません"
|
25756
|
+
// dontKnowItemText: "Don't know" => "わかりません"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "回答は 64 KB を超えています。ファイルのサイズを小さくしてもう一度お試しいただくか、アンケートの所有者にお問い合わせください。"
|
25757
|
+
// signaturePlaceHolderReadOnly: "No signature" => "署名なし"
|
25548
25758
|
|
25549
25759
|
|
25550
25760
|
/***/ }),
|
@@ -25630,6 +25840,7 @@ var kazakhStrings = {
|
|
25630
25840
|
savingData: "Нәтижелер серверде сақталады...",
|
25631
25841
|
savingDataError: "Қателік туындады, нәтиже сақталынбады.",
|
25632
25842
|
savingDataSuccess: "Нәтиже ойдағыдай сақталды!",
|
25843
|
+
savingExceedSize: "Сіздің жауабыңыз 64КБ-тан асады. Файлдың өлшемін азайтып, қайталап көріңіз немесе сауалнама иесіне хабарласыңыз.",
|
25633
25844
|
saveAgainButton: "Қайтадан байқап көру",
|
25634
25845
|
timerMin: "мин",
|
25635
25846
|
timerSec: "сек",
|
@@ -25641,6 +25852,7 @@ var kazakhStrings = {
|
|
25641
25852
|
timerLimitSurvey: "Сіз бүкіл сауалнама үшін {0} ден {1} кетірдіңіз ",
|
25642
25853
|
clearCaption: "Тазалау",
|
25643
25854
|
signaturePlaceHolder: "Осында кіру",
|
25855
|
+
signaturePlaceHolderReadOnly: "Қолдың No",
|
25644
25856
|
chooseFileCaption: "Файл таңдаңыз",
|
25645
25857
|
takePhotoCaption: "Фотосуретке түсу",
|
25646
25858
|
photoPlaceholder: "Камераны пайдаланып суретке түсу үшін төмендегі түймені басыңыз.",
|
@@ -25697,7 +25909,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["kk"]
|
|
25697
25909
|
// ok: "OK" => "ЖАҚСЫ"
|
25698
25910
|
// cancel: "Cancel" => "Болдырмау"
|
25699
25911
|
// refuseItemText: "Refuse to answer" => "Жауап беруден бас тарту"
|
25700
|
-
// dontKnowItemText: "Don't know" => "Білмеймін"
|
25912
|
+
// dontKnowItemText: "Don't know" => "Білмеймін"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Сіздің жауабыңыз 64КБ-тан асады. Файлдың өлшемін азайтып, қайталап көріңіз немесе сауалнама иесіне хабарласыңыз."
|
25913
|
+
// signaturePlaceHolderReadOnly: "No signature" => "Қолдың No"
|
25701
25914
|
|
25702
25915
|
|
25703
25916
|
/***/ }),
|
@@ -25783,6 +25996,7 @@ var koreanStrings = {
|
|
25783
25996
|
savingData: "결과가 서버에 저장 중입니다...",
|
25784
25997
|
savingDataError: "오류가 발생하여 결과를 저장할 수 없습니다.",
|
25785
25998
|
savingDataSuccess: "결과가 성공적으로 저장되었습니다.",
|
25999
|
+
savingExceedSize: "응답이 64KB를 초과합니다. 파일 크기를 줄인 후 다시 시도하거나 설문조사 소유자에게 문의하세요.",
|
25786
26000
|
saveAgainButton: "다시 시도하세요.",
|
25787
26001
|
timerMin: "분",
|
25788
26002
|
timerSec: "초",
|
@@ -25794,6 +26008,7 @@ var koreanStrings = {
|
|
25794
26008
|
timerLimitSurvey: "총 {0}/{1}이 걸렸습니다.",
|
25795
26009
|
clearCaption: "지우기",
|
25796
26010
|
signaturePlaceHolder: "서명하세요.",
|
26011
|
+
signaturePlaceHolderReadOnly: "서명 없음",
|
25797
26012
|
chooseFileCaption: "파일 선택",
|
25798
26013
|
takePhotoCaption: "사진 찍기",
|
25799
26014
|
photoPlaceholder: "아래 버튼을 클릭하여 카메라로 사진을 찍습니다.",
|
@@ -25837,7 +26052,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ko"]
|
|
25837
26052
|
// ok: "OK" => "그래"
|
25838
26053
|
// cancel: "Cancel" => "취소"
|
25839
26054
|
// refuseItemText: "Refuse to answer" => "대답 거부"
|
25840
|
-
// dontKnowItemText: "Don't know" => "모르다"
|
26055
|
+
// dontKnowItemText: "Don't know" => "모르다"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "응답이 64KB를 초과합니다. 파일 크기를 줄인 후 다시 시도하거나 설문조사 소유자에게 문의하세요."
|
26056
|
+
// signaturePlaceHolderReadOnly: "No signature" => "서명 없음"
|
25841
26057
|
|
25842
26058
|
|
25843
26059
|
/***/ }),
|
@@ -25923,6 +26139,7 @@ var latvianSurveyStrings = {
|
|
25923
26139
|
savingData: "Rezultāti tiek saglabāti serverī ...",
|
25924
26140
|
savingDataError: "Radās kļūda, un mēs nevarējām saglabāt rezultātus.",
|
25925
26141
|
savingDataSuccess: "Rezultāti tika veiksmīgi saglabāti!",
|
26142
|
+
savingExceedSize: "Jūsu atbilde pārsniedz 64 KB. Lūdzu, samaziniet sava(-u) faila(-u) lielumu un mēģiniet vēlreiz vai sazinieties ar aptaujas īpašnieku.",
|
25926
26143
|
saveAgainButton: "Mēģiniet vēlreiz",
|
25927
26144
|
timerMin: "min",
|
25928
26145
|
timerSec: "sek",
|
@@ -25934,6 +26151,7 @@ var latvianSurveyStrings = {
|
|
25934
26151
|
timerLimitSurvey: "Kopā esat iztērējis {0} no {1}.",
|
25935
26152
|
clearCaption: "Iztīrīt",
|
25936
26153
|
signaturePlaceHolder: "Parakstieties šeit",
|
26154
|
+
signaturePlaceHolderReadOnly: "Nav paraksta",
|
25937
26155
|
chooseFileCaption: "Izvēlēties failu",
|
25938
26156
|
takePhotoCaption: "Uzņemt fotoattēlu",
|
25939
26157
|
photoPlaceholder: "Noklikšķiniet uz pogas zemāk, lai uzņemtu fotoattēlu, izmantojot kameru.",
|
@@ -25978,7 +26196,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["lv"]
|
|
25978
26196
|
// ok: "OK" => "LABI"
|
25979
26197
|
// cancel: "Cancel" => "Atcelt"
|
25980
26198
|
// refuseItemText: "Refuse to answer" => "Atteikties atbildēt"
|
25981
|
-
// dontKnowItemText: "Don't know" => "Es nezinu"
|
26199
|
+
// dontKnowItemText: "Don't know" => "Es nezinu"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Jūsu atbilde pārsniedz 64 KB. Lūdzu, samaziniet sava(-u) faila(-u) lielumu un mēģiniet vēlreiz vai sazinieties ar aptaujas īpašnieku."
|
26200
|
+
// signaturePlaceHolderReadOnly: "No signature" => "Nav paraksta"
|
25982
26201
|
|
25983
26202
|
|
25984
26203
|
/***/ }),
|
@@ -26064,6 +26283,7 @@ var lithuaniaSurveyStrings = {
|
|
26064
26283
|
savingData: "Rezultatai saugomi serveryje...",
|
26065
26284
|
savingDataError: "Įvyko klaida ir mes negalėjome išsaugoti rezultatų.",
|
26066
26285
|
savingDataSuccess: "Rezultatai buvo išsaugoti sėkmingai!",
|
26286
|
+
savingExceedSize: "Jūsų atsakymas viršija 64 KB. Sumažinkite failo (-ų) dydį ir bandykite dar kartą arba susisiekite su apklausos savininku.",
|
26067
26287
|
saveAgainButton: "Bandyti dar kartą",
|
26068
26288
|
timerMin: "min",
|
26069
26289
|
timerSec: "sek",
|
@@ -26075,6 +26295,7 @@ var lithuaniaSurveyStrings = {
|
|
26075
26295
|
timerLimitSurvey: "Praleidote {0} iš {1} iš viso.",
|
26076
26296
|
clearCaption: "Valyti",
|
26077
26297
|
signaturePlaceHolder: "Pasirašykite čia",
|
26298
|
+
signaturePlaceHolderReadOnly: "Nėra parašo",
|
26078
26299
|
chooseFileCaption: "Pasirinkti failą",
|
26079
26300
|
takePhotoCaption: "Fotografuoti",
|
26080
26301
|
photoPlaceholder: "Spustelėkite žemiau esantį mygtuką, kad nufotografuotumėte fotoaparatu.",
|
@@ -26131,7 +26352,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["lt"]
|
|
26131
26352
|
// ok: "OK" => "GERAI"
|
26132
26353
|
// cancel: "Cancel" => "Atšaukti"
|
26133
26354
|
// refuseItemText: "Refuse to answer" => "Atsisakyti atsakyti"
|
26134
|
-
// dontKnowItemText: "Don't know" => "Nežinau"
|
26355
|
+
// dontKnowItemText: "Don't know" => "Nežinau"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Jūsų atsakymas viršija 64 KB. Sumažinkite failo (-ų) dydį ir bandykite dar kartą arba susisiekite su apklausos savininku."
|
26356
|
+
// signaturePlaceHolderReadOnly: "No signature" => "Nėra parašo"
|
26135
26357
|
|
26136
26358
|
|
26137
26359
|
/***/ }),
|
@@ -26217,6 +26439,7 @@ var macedonianSurveyStrings = {
|
|
26217
26439
|
savingData: "Резултатите се зачувуваат на серверот ...",
|
26218
26440
|
savingDataError: "Настана грешка и не можевме да ги зачуваме резултатите.",
|
26219
26441
|
savingDataSuccess: "Резултатите беа успешно зачувани!",
|
26442
|
+
savingExceedSize: "Вашиот одговор надминува 64KB. Ве молиме да ја намалите големината на вашата(ите) датотека(и) и обидете се повторно или контактирајте го сопственикот на истражувањето.",
|
26220
26443
|
saveAgainButton: "Обиди се повторно",
|
26221
26444
|
timerMin: "мин",
|
26222
26445
|
timerSec: "сек",
|
@@ -26228,6 +26451,7 @@ var macedonianSurveyStrings = {
|
|
26228
26451
|
timerLimitSurvey: "Вие потрошивте вкупно {0} од {1}.",
|
26229
26452
|
clearCaption: "Да расчисти",
|
26230
26453
|
signaturePlaceHolder: "Потпиши се овде.",
|
26454
|
+
signaturePlaceHolderReadOnly: "Нема потпис",
|
26231
26455
|
chooseFileCaption: "Изберете датотека",
|
26232
26456
|
takePhotoCaption: "Фотографирајте",
|
26233
26457
|
photoPlaceholder: "Кликнете на копчето подолу за да фотографирате користејќи ја камерата.",
|
@@ -26278,7 +26502,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["mk"]
|
|
26278
26502
|
// ok: "OK" => "ДОБРО"
|
26279
26503
|
// cancel: "Cancel" => "Откажи"
|
26280
26504
|
// refuseItemText: "Refuse to answer" => "Одбиј да одговориш."
|
26281
|
-
// dontKnowItemText: "Don't know" => "Не знам"
|
26505
|
+
// dontKnowItemText: "Don't know" => "Не знам"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Вашиот одговор надминува 64KB. Ве молиме да ја намалите големината на вашата(ите) датотека(и) и обидете се повторно или контактирајте го сопственикот на истражувањето."
|
26506
|
+
// signaturePlaceHolderReadOnly: "No signature" => "Нема потпис"
|
26282
26507
|
|
26283
26508
|
|
26284
26509
|
/***/ }),
|
@@ -26364,6 +26589,7 @@ var malaySurveyStrings = {
|
|
26364
26589
|
savingData: "Keputusan sedang disimpan pada pelayan...",
|
26365
26590
|
savingDataError: "Ralat berlaku dan kami tidak dapat menyimpan keputusan.",
|
26366
26591
|
savingDataSuccess: "Keputusan berjaya disimpan!",
|
26592
|
+
savingExceedSize: "Jawapan anda melebihi 64KB. Sila kurangkan saiz fail anda dan cuba lagi atau hubungi pemilik tinjauan.",
|
26367
26593
|
saveAgainButton: "Cuba lagi",
|
26368
26594
|
timerMin: "min",
|
26369
26595
|
timerSec: "saat",
|
@@ -26375,6 +26601,7 @@ var malaySurveyStrings = {
|
|
26375
26601
|
timerLimitSurvey: "Anda telah meluangkan {0} daripada {1} secara keseluruhan.",
|
26376
26602
|
clearCaption: "Kosongkan",
|
26377
26603
|
signaturePlaceHolder: "Tandatangan di sini",
|
26604
|
+
signaturePlaceHolderReadOnly: "Tiada tandatangan",
|
26378
26605
|
chooseFileCaption: "Pilih fail",
|
26379
26606
|
takePhotoCaption: "Ambil gambar",
|
26380
26607
|
photoPlaceholder: "Klik butang di bawah untuk mengambil gambar menggunakan kamera.",
|
@@ -26421,7 +26648,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ms"]
|
|
26421
26648
|
// ok: "OK" => "OK"
|
26422
26649
|
// cancel: "Cancel" => "Batal"
|
26423
26650
|
// refuseItemText: "Refuse to answer" => "Enggan menjawab"
|
26424
|
-
// dontKnowItemText: "Don't know" => "Tak tahu"
|
26651
|
+
// dontKnowItemText: "Don't know" => "Tak tahu"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Jawapan anda melebihi 64KB. Sila kurangkan saiz fail anda dan cuba lagi atau hubungi pemilik tinjauan."
|
26652
|
+
// signaturePlaceHolderReadOnly: "No signature" => "Tiada tandatangan"
|
26425
26653
|
|
26426
26654
|
|
26427
26655
|
/***/ }),
|
@@ -26531,6 +26759,7 @@ var norwegianSurveyStrings = {
|
|
26531
26759
|
savingData: "Resultatene lagres på serveren ...",
|
26532
26760
|
savingDataError: "Det oppsto en feil, og vi kunne ikke lagre resultatene.",
|
26533
26761
|
savingDataSuccess: "Resultatene ble lagret!",
|
26762
|
+
savingExceedSize: "Svaret ditt overstiger 64 kB. Reduser størrelsen på filen(e) din(e), og prøv på nytt, eller kontakt eieren av en spørreundersøkelse.",
|
26534
26763
|
saveAgainButton: "Prøv igjen",
|
26535
26764
|
timerMin: "min",
|
26536
26765
|
timerSec: "sek",
|
@@ -26542,6 +26771,7 @@ var norwegianSurveyStrings = {
|
|
26542
26771
|
timerLimitSurvey: "Du har tilbrakt {0} av {1} totalt.",
|
26543
26772
|
clearCaption: "Klar",
|
26544
26773
|
signaturePlaceHolder: "Logg inn her",
|
26774
|
+
signaturePlaceHolderReadOnly: "Ingen signatur",
|
26545
26775
|
chooseFileCaption: "Velg Fil",
|
26546
26776
|
takePhotoCaption: "Ta bilde",
|
26547
26777
|
photoPlaceholder: "Klikk på knappen nedenfor for å ta et bilde med kameraet.",
|
@@ -26598,7 +26828,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["no"]
|
|
26598
26828
|
// ok: "OK" => "OK"
|
26599
26829
|
// cancel: "Cancel" => "Annullere"
|
26600
26830
|
// refuseItemText: "Refuse to answer" => "Nekter å svare"
|
26601
|
-
// dontKnowItemText: "Don't know" => "Vet ikke"
|
26831
|
+
// dontKnowItemText: "Don't know" => "Vet ikke"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Svaret ditt overstiger 64 kB. Reduser størrelsen på filen(e) din(e), og prøv på nytt, eller kontakt eieren av en spørreundersøkelse."
|
26832
|
+
// signaturePlaceHolderReadOnly: "No signature" => "Ingen signatur"
|
26602
26833
|
|
26603
26834
|
|
26604
26835
|
/***/ }),
|
@@ -26684,6 +26915,7 @@ var persianSurveyStrings = {
|
|
26684
26915
|
savingData: "نتایج در حال ذخیره سازی در سرور است",
|
26685
26916
|
savingDataError: "خطایی در ذخیره سازی نتایج رخ داده است",
|
26686
26917
|
savingDataSuccess: "نتایج با موفقیت ذخیره شد",
|
26918
|
+
savingExceedSize: "پاسخ شما بیش از 64KB است. لطفا اندازه فایل(های) خود را کاهش دهید و دوباره تلاش کنید یا با صاحب نظرسنجی تماس بگیرید.",
|
26687
26919
|
saveAgainButton: "مجدد تلاش کنید",
|
26688
26920
|
timerMin: "دقیقه",
|
26689
26921
|
timerSec: "ثانیه",
|
@@ -26695,6 +26927,7 @@ var persianSurveyStrings = {
|
|
26695
26927
|
timerLimitSurvey: "شما مدت {0} از {1} را در مجموع سپری کرده اید.",
|
26696
26928
|
clearCaption: "خالی کردن",
|
26697
26929
|
signaturePlaceHolder: "اینجا را امضا کنید",
|
26930
|
+
signaturePlaceHolderReadOnly: "بدون امضا",
|
26698
26931
|
chooseFileCaption: "انتخاب فایل",
|
26699
26932
|
takePhotoCaption: "گرفتن عکس",
|
26700
26933
|
photoPlaceholder: "روی دکمه زیر کلیک کنید تا با استفاده از دوربین عکس بگیرید.",
|
@@ -26751,7 +26984,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["fa"]
|
|
26751
26984
|
// ok: "OK" => "باشه"
|
26752
26985
|
// cancel: "Cancel" => "لغو"
|
26753
26986
|
// refuseItemText: "Refuse to answer" => "امتناع از پاسخ دادن"
|
26754
|
-
// dontKnowItemText: "Don't know" => "نمی دانم"
|
26987
|
+
// dontKnowItemText: "Don't know" => "نمی دانم"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "پاسخ شما بیش از 64KB است. لطفا اندازه فایل(های) خود را کاهش دهید و دوباره تلاش کنید یا با صاحب نظرسنجی تماس بگیرید."
|
26988
|
+
// signaturePlaceHolderReadOnly: "No signature" => "بدون امضا"
|
26755
26989
|
|
26756
26990
|
|
26757
26991
|
/***/ }),
|
@@ -26837,6 +27071,7 @@ var polishSurveyStrings = {
|
|
26837
27071
|
savingData: "Zapisuję wyniki ankiety na serwerze...",
|
26838
27072
|
savingDataError: "Wystąpił błąd i wyniki nie mogły zostać zapisane.",
|
26839
27073
|
savingDataSuccess: "Wyniki zostały poprawnie zapisane!",
|
27074
|
+
savingExceedSize: "Twoja odpowiedź przekracza 64 KB. Zmniejsz rozmiar plików i spróbuj ponownie lub skontaktuj się z właścicielem ankiety.",
|
26840
27075
|
saveAgainButton: "Spróbuj ponownie",
|
26841
27076
|
timerMin: "min",
|
26842
27077
|
timerSec: "sek",
|
@@ -26848,6 +27083,7 @@ var polishSurveyStrings = {
|
|
26848
27083
|
timerLimitSurvey: "Spędziłeś {0} z {1}.",
|
26849
27084
|
clearCaption: "Wyczyść",
|
26850
27085
|
signaturePlaceHolder: "Podpisz tutaj",
|
27086
|
+
signaturePlaceHolderReadOnly: "Brak podpisu",
|
26851
27087
|
chooseFileCaption: "Wybierz plik",
|
26852
27088
|
takePhotoCaption: "Zrób zdjęcie",
|
26853
27089
|
photoPlaceholder: "Kliknij przycisk poniżej, aby zrobić zdjęcie aparatem.",
|
@@ -26892,7 +27128,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["pl"]
|
|
26892
27128
|
// ok: "OK" => "OK"
|
26893
27129
|
// cancel: "Cancel" => "Anuluj"
|
26894
27130
|
// refuseItemText: "Refuse to answer" => "Odmów odpowiedzi"
|
26895
|
-
// dontKnowItemText: "Don't know" => "Nie wiem"
|
27131
|
+
// dontKnowItemText: "Don't know" => "Nie wiem"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Twoja odpowiedź przekracza 64 KB. Zmniejsz rozmiar plików i spróbuj ponownie lub skontaktuj się z właścicielem ankiety."
|
27132
|
+
// signaturePlaceHolderReadOnly: "No signature" => "Brak podpisu"
|
26896
27133
|
|
26897
27134
|
|
26898
27135
|
/***/ }),
|
@@ -26981,6 +27218,7 @@ var portugueseBrSurveyStrings = {
|
|
26981
27218
|
savingData: "Os resultados esto sendo salvos no servidor...",
|
26982
27219
|
savingDataError: "Ocorreu um erro e não foi possível salvar os resultados.",
|
26983
27220
|
savingDataSuccess: "Os resultados foram salvos com sucesso!",
|
27221
|
+
savingExceedSize: "Sua resposta excede 64KB. Reduza o tamanho do(s) seu(s) arquivo(s) e tente novamente ou entre em contato com o proprietário do questionário.",
|
26984
27222
|
saveAgainButton: "Tentar novamente",
|
26985
27223
|
timerMin: "Min",
|
26986
27224
|
timerSec: "segundo",
|
@@ -26992,6 +27230,7 @@ var portugueseBrSurveyStrings = {
|
|
26992
27230
|
timerLimitSurvey: "Gastou {0} de {1} no total.",
|
26993
27231
|
clearCaption: "Claro",
|
26994
27232
|
signaturePlaceHolder: "Assine aqui",
|
27233
|
+
signaturePlaceHolderReadOnly: "Sem assinatura",
|
26995
27234
|
chooseFileCaption: "Escolher arquivo",
|
26996
27235
|
takePhotoCaption: "Tirar foto",
|
26997
27236
|
photoPlaceholder: "Clique no botão abaixo para tirar uma foto usando a câmera.",
|
@@ -27095,7 +27334,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["pt-b
|
|
27095
27334
|
// ok: "OK" => "OKEY"
|
27096
27335
|
// cancel: "Cancel" => "Cancelar"
|
27097
27336
|
// refuseItemText: "Refuse to answer" => "Recusar-se a responder"
|
27098
|
-
// dontKnowItemText: "Don't know" => "Não sei"
|
27337
|
+
// dontKnowItemText: "Don't know" => "Não sei"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Sua resposta excede 64KB. Reduza o tamanho do(s) seu(s) arquivo(s) e tente novamente ou entre em contato com o proprietário do questionário."
|
27338
|
+
// signaturePlaceHolderReadOnly: "No signature" => "Sem assinatura"
|
27099
27339
|
|
27100
27340
|
|
27101
27341
|
/***/ }),
|
@@ -27181,6 +27421,7 @@ var portugueseSurveyStrings = {
|
|
27181
27421
|
savingData: "Os resultados estão a ser guardados no servidor...",
|
27182
27422
|
savingDataError: "Ocorreu um erro e não foi possível guardar os resultados.",
|
27183
27423
|
savingDataSuccess: "Os resultados foram guardados com sucesso!",
|
27424
|
+
savingExceedSize: "Sua resposta excede 64KB. Reduza o tamanho do(s) seu(s) arquivo(s) e tente novamente ou entre em contato com o proprietário do questionário.",
|
27184
27425
|
saveAgainButton: "Tente novamente",
|
27185
27426
|
timerMin: "min",
|
27186
27427
|
timerSec: "seg",
|
@@ -27192,6 +27433,7 @@ var portugueseSurveyStrings = {
|
|
27192
27433
|
timerLimitSurvey: "Você gastou {0} de {1} no total.",
|
27193
27434
|
clearCaption: "Limpar",
|
27194
27435
|
signaturePlaceHolder: "Assine aqui",
|
27436
|
+
signaturePlaceHolderReadOnly: "Sem assinatura",
|
27195
27437
|
chooseFileCaption: "Escolher ficheiro",
|
27196
27438
|
takePhotoCaption: "Tirar foto",
|
27197
27439
|
photoPlaceholder: "Clique no botão abaixo para tirar uma foto usando a câmera.",
|
@@ -27233,7 +27475,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["pt"]
|
|
27233
27475
|
// ok: "OK" => "OKEY"
|
27234
27476
|
// cancel: "Cancel" => "Cancelar"
|
27235
27477
|
// refuseItemText: "Refuse to answer" => "Recusar-se a responder"
|
27236
|
-
// dontKnowItemText: "Don't know" => "Não sei"
|
27478
|
+
// dontKnowItemText: "Don't know" => "Não sei"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Sua resposta excede 64KB. Reduza o tamanho do(s) seu(s) arquivo(s) e tente novamente ou entre em contato com o proprietário do questionário."
|
27479
|
+
// signaturePlaceHolderReadOnly: "No signature" => "Sem assinatura"
|
27237
27480
|
|
27238
27481
|
|
27239
27482
|
/***/ }),
|
@@ -27319,6 +27562,7 @@ var romanianSurveyStrings = {
|
|
27319
27562
|
savingData: "Rezultatele sunt în curs de salvare...",
|
27320
27563
|
savingDataError: "A intervenit o eroare, rezultatele nu au putut fi salvate.",
|
27321
27564
|
savingDataSuccess: "Rezultatele au fost salvate cu succes!",
|
27565
|
+
savingExceedSize: "Răspunsul tău depășește 64KB. Reduceți dimensiunea fișierelor și încercați din nou sau contactați un proprietar de sondaj.",
|
27322
27566
|
saveAgainButton: "Încercați din nou",
|
27323
27567
|
timerMin: "min",
|
27324
27568
|
timerSec: "sec",
|
@@ -27330,6 +27574,7 @@ var romanianSurveyStrings = {
|
|
27330
27574
|
timerLimitSurvey: "Ați petrecut {0} din {1} în total.",
|
27331
27575
|
clearCaption: "clar",
|
27332
27576
|
signaturePlaceHolder: "Semnează aici",
|
27577
|
+
signaturePlaceHolderReadOnly: "Fără semnătură",
|
27333
27578
|
chooseFileCaption: "Alege fișierul",
|
27334
27579
|
takePhotoCaption: "Faceți o fotografie",
|
27335
27580
|
photoPlaceholder: "Faceți clic pe butonul de mai jos pentru a face o fotografie folosind camera.",
|
@@ -27386,7 +27631,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ro"]
|
|
27386
27631
|
// ok: "OK" => "OK"
|
27387
27632
|
// cancel: "Cancel" => "Anula"
|
27388
27633
|
// refuseItemText: "Refuse to answer" => "Refuză să răspundă"
|
27389
|
-
// dontKnowItemText: "Don't know" => "Nu ştiu"
|
27634
|
+
// dontKnowItemText: "Don't know" => "Nu ştiu"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Răspunsul tău depășește 64KB. Reduceți dimensiunea fișierelor și încercați din nou sau contactați un proprietar de sondaj."
|
27635
|
+
// signaturePlaceHolderReadOnly: "No signature" => "Fără semnătură"
|
27390
27636
|
|
27391
27637
|
|
27392
27638
|
/***/ }),
|
@@ -27472,6 +27718,7 @@ var russianSurveyStrings = {
|
|
27472
27718
|
savingData: "Результаты сохраняются на сервер...",
|
27473
27719
|
savingDataError: "Произошла ошибка, результат не был сохранён.",
|
27474
27720
|
savingDataSuccess: "Результат успешно сохранён!",
|
27721
|
+
savingExceedSize: "Ваш ответ превышает 64 КБ. Уменьшите размер файла (файлов) и повторите попытку или обратитесь к владельцу опроса.",
|
27475
27722
|
saveAgainButton: "Попробовать снова",
|
27476
27723
|
timerMin: "мин",
|
27477
27724
|
timerSec: "сек",
|
@@ -27483,6 +27730,7 @@ var russianSurveyStrings = {
|
|
27483
27730
|
timerLimitSurvey: "Вы потратили {0} из {1} для всего теста.",
|
27484
27731
|
clearCaption: "Очистить",
|
27485
27732
|
signaturePlaceHolder: "Подпишите здесь",
|
27733
|
+
signaturePlaceHolderReadOnly: "Без подписи",
|
27486
27734
|
chooseFileCaption: "Выберите файл",
|
27487
27735
|
takePhotoCaption: "Сделать фото",
|
27488
27736
|
photoPlaceholder: "Нажмите кнопку ниже, чтобы сделать снимок с помощью камеры.",
|
@@ -27523,7 +27771,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ru"]
|
|
27523
27771
|
// noUploadFilesHandler: "Files cannot be uploaded. Please add a handler for the 'onUploadFiles' event." => "Файлы не могут быть загружены. Пожалуйста, добавьте обработчик для события 'onUploadFiles'."
|
27524
27772
|
// showDetails: "Show Details" => "Показать подробности"
|
27525
27773
|
// hideDetails: "Hide Details" => "Скрыть подробности"
|
27526
|
-
// cancel: "Cancel" => "Отмена"
|
27774
|
+
// cancel: "Cancel" => "Отмена"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Ваш ответ превышает 64 КБ. Уменьшите размер файла (файлов) и повторите попытку или обратитесь к владельцу опроса."
|
27775
|
+
// signaturePlaceHolderReadOnly: "No signature" => "Без подписи"
|
27527
27776
|
|
27528
27777
|
|
27529
27778
|
/***/ }),
|
@@ -27609,6 +27858,7 @@ var serbianStrings = {
|
|
27609
27858
|
savingData: "U toku je čuvanje podataka na serveru...",
|
27610
27859
|
savingDataError: "Došlo je do greške i rezultati nisu sačuvani.",
|
27611
27860
|
savingDataSuccess: "Rezultati su uspešno sačuvani!",
|
27861
|
+
savingExceedSize: "Vaš odgovor premašuje 64KB. Smanjite veličinu datoteka i pokušajte ponovo ili se obratite vlasniku ankete.",
|
27612
27862
|
saveAgainButton: "Pokušajte ponovo",
|
27613
27863
|
timerMin: "min",
|
27614
27864
|
timerSec: "sek",
|
@@ -27620,6 +27870,7 @@ var serbianStrings = {
|
|
27620
27870
|
timerLimitSurvey: "Proveli ste {0} od {1} ukupno.",
|
27621
27871
|
clearCaption: "Poništi",
|
27622
27872
|
signaturePlaceHolder: "Potpišite ovde",
|
27873
|
+
signaturePlaceHolderReadOnly: "Bez potpisa",
|
27623
27874
|
chooseFileCaption: "Izaberi fajl",
|
27624
27875
|
takePhotoCaption: "Fotografisanje",
|
27625
27876
|
photoPlaceholder: "Kliknite na dugme ispod da biste snimili fotografiju pomoću fotoaparata.",
|
@@ -27671,7 +27922,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["rs"]
|
|
27671
27922
|
// ok: "OK" => "U redu"
|
27672
27923
|
// cancel: "Cancel" => "Otkaži"
|
27673
27924
|
// refuseItemText: "Refuse to answer" => "Odbijanje odgovora"
|
27674
|
-
// dontKnowItemText: "Don't know" => "Ne znam"
|
27925
|
+
// dontKnowItemText: "Don't know" => "Ne znam"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Vaš odgovor premašuje 64KB. Smanjite veličinu datoteka i pokušajte ponovo ili se obratite vlasniku ankete."
|
27926
|
+
// signaturePlaceHolderReadOnly: "No signature" => "Bez potpisa"
|
27675
27927
|
|
27676
27928
|
|
27677
27929
|
/***/ }),
|
@@ -27757,6 +28009,7 @@ var simplifiedChineseSurveyStrings = {
|
|
27757
28009
|
savingData: "正在将结果保存到服务器...",
|
27758
28010
|
savingDataError: "在保存结果过程中发生了错误,结果未能保存",
|
27759
28011
|
savingDataSuccess: "结果保存成功!",
|
28012
|
+
savingExceedSize: "您的回复超过 64KB。请减小文件的大小,然后重试或联系调查所有者。",
|
27760
28013
|
saveAgainButton: "请重试",
|
27761
28014
|
timerMin: "分",
|
27762
28015
|
timerSec: "秒",
|
@@ -27768,6 +28021,7 @@ var simplifiedChineseSurveyStrings = {
|
|
27768
28021
|
timerLimitSurvey: "总计用时 {0} 共 {1}.",
|
27769
28022
|
clearCaption: "清除",
|
27770
28023
|
signaturePlaceHolder: "在此签名",
|
28024
|
+
signaturePlaceHolderReadOnly: "无签名",
|
27771
28025
|
chooseFileCaption: "选择文件",
|
27772
28026
|
takePhotoCaption: "拍照",
|
27773
28027
|
photoPlaceholder: "单击下面的按钮使用相机拍照。",
|
@@ -27818,7 +28072,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["zh-c
|
|
27818
28072
|
// ok: "OK" => "还行"
|
27819
28073
|
// cancel: "Cancel" => "取消"
|
27820
28074
|
// refuseItemText: "Refuse to answer" => "拒绝回答"
|
27821
|
-
// dontKnowItemText: "Don't know" => "不知道"
|
28075
|
+
// dontKnowItemText: "Don't know" => "不知道"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "您的回复超过 64KB。请减小文件的大小,然后重试或联系调查所有者。"
|
28076
|
+
// signaturePlaceHolderReadOnly: "No signature" => "无签名"
|
27822
28077
|
|
27823
28078
|
|
27824
28079
|
/***/ }),
|
@@ -27904,6 +28159,7 @@ var slovakSurveyStrings = {
|
|
27904
28159
|
savingData: "Výsledky sa ukladajú na server...",
|
27905
28160
|
savingDataError: "V dôsledku chyby sa nepodarilo výsledky uložiť.",
|
27906
28161
|
savingDataSuccess: "Výsledky sa úspešne uložili.",
|
28162
|
+
savingExceedSize: "Vaša odpoveď presahuje 64 kB. Zmenšite veľkosť svojich súborov a skúste to znova alebo kontaktujte vlastníka prieskumu.",
|
27907
28163
|
saveAgainButton: "Skúste to znova",
|
27908
28164
|
timerMin: "min",
|
27909
28165
|
timerSec: "s",
|
@@ -27915,6 +28171,7 @@ var slovakSurveyStrings = {
|
|
27915
28171
|
timerLimitSurvey: "Celkovo ste strávili {0} z {1}.",
|
27916
28172
|
clearCaption: "Vymazať",
|
27917
28173
|
signaturePlaceHolder: "Podpísať tu",
|
28174
|
+
signaturePlaceHolderReadOnly: "Bez podpisu",
|
27918
28175
|
chooseFileCaption: "Vybrať súbor",
|
27919
28176
|
takePhotoCaption: "Odfotiť",
|
27920
28177
|
photoPlaceholder: "Kliknutím na tlačidlo nižšie nasnímate fotografiu pomocou fotoaparátu.",
|
@@ -27961,7 +28218,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["sk"]
|
|
27961
28218
|
// ok: "OK" => "OK"
|
27962
28219
|
// cancel: "Cancel" => "Zrušiť"
|
27963
28220
|
// refuseItemText: "Refuse to answer" => "Odmietnuť odpovedať"
|
27964
|
-
// dontKnowItemText: "Don't know" => "Neviem"
|
28221
|
+
// dontKnowItemText: "Don't know" => "Neviem"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Vaša odpoveď presahuje 64 kB. Zmenšite veľkosť svojich súborov a skúste to znova alebo kontaktujte vlastníka prieskumu."
|
28222
|
+
// signaturePlaceHolderReadOnly: "No signature" => "Bez podpisu"
|
27965
28223
|
|
27966
28224
|
|
27967
28225
|
/***/ }),
|
@@ -28047,6 +28305,7 @@ var spanishSurveyStrings = {
|
|
28047
28305
|
savingData: "Los resultados se están guardando en el servidor...",
|
28048
28306
|
savingDataError: "Los resultados se están guardando en el servidor...",
|
28049
28307
|
savingDataSuccess: "¡Los resultados se guardaron con éxito!",
|
28308
|
+
savingExceedSize: "Su respuesta supera los 64 KB. Reduzca el tamaño de su(s) archivo(s) e inténtelo de nuevo o póngase en contacto con el propietario de una encuesta.",
|
28050
28309
|
saveAgainButton: "Inténtalo de nuevo.",
|
28051
28310
|
timerMin: "min",
|
28052
28311
|
timerSec: "sec",
|
@@ -28058,6 +28317,7 @@ var spanishSurveyStrings = {
|
|
28058
28317
|
timerLimitSurvey: "Usted ha gastado {0} de {1} en total.",
|
28059
28318
|
clearCaption: "Borrar",
|
28060
28319
|
signaturePlaceHolder: "Firma aqui",
|
28320
|
+
signaturePlaceHolderReadOnly: "Sin firma",
|
28061
28321
|
chooseFileCaption: "Elija el archivo",
|
28062
28322
|
takePhotoCaption: "Tomar foto",
|
28063
28323
|
photoPlaceholder: "Haga clic en el botón de abajo para tomar una foto con la cámara.",
|
@@ -28102,7 +28362,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["es"]
|
|
28102
28362
|
// ok: "OK" => "De acuerdo"
|
28103
28363
|
// cancel: "Cancel" => "Cancelar"
|
28104
28364
|
// refuseItemText: "Refuse to answer" => "Negarse a responder"
|
28105
|
-
// dontKnowItemText: "Don't know" => "No sé"
|
28365
|
+
// dontKnowItemText: "Don't know" => "No sé"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Su respuesta supera los 64 KB. Reduzca el tamaño de su(s) archivo(s) e inténtelo de nuevo o póngase en contacto con el propietario de una encuesta."
|
28366
|
+
// signaturePlaceHolderReadOnly: "No signature" => "Sin firma"
|
28106
28367
|
|
28107
28368
|
|
28108
28369
|
/***/ }),
|
@@ -28188,6 +28449,7 @@ var swahiliStrings = {
|
|
28188
28449
|
savingData: "Matokeo yamehifadhiwa kwa seva...",
|
28189
28450
|
savingDataError: "Kosa limetokea na hatukuweza kuhifadhi matokeo.",
|
28190
28451
|
savingDataSuccess: "Matokeo yamehifadhiwa!",
|
28452
|
+
savingExceedSize: "Jibu lako ni zaidi ya 64KB. Tafadhali punguza ukubwa wa faili yako na jaribu tena au wasiliana na mmiliki wa utafiti.",
|
28191
28453
|
saveAgainButton: "Jaribu tena",
|
28192
28454
|
timerMin: "dakika",
|
28193
28455
|
timerSec: "sekunde",
|
@@ -28199,6 +28461,7 @@ var swahiliStrings = {
|
|
28199
28461
|
timerLimitSurvey: "Umetumia {0} ya {1} kwa jumla.",
|
28200
28462
|
clearCaption: "Ondoa",
|
28201
28463
|
signaturePlaceHolder: "Ingia hapa",
|
28464
|
+
signaturePlaceHolderReadOnly: "Hakuna saini",
|
28202
28465
|
chooseFileCaption: "Chagua faili",
|
28203
28466
|
takePhotoCaption: "Chukua Picha",
|
28204
28467
|
photoPlaceholder: "Bonyeza kitufe hapa chini ili kupiga picha kwa kutumia kamera.",
|
@@ -28255,7 +28518,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["sw"]
|
|
28255
28518
|
// ok: "OK" => "Sawa kabisa"
|
28256
28519
|
// cancel: "Cancel" => "Katisha"
|
28257
28520
|
// refuseItemText: "Refuse to answer" => "Kukataa kujibu"
|
28258
|
-
// dontKnowItemText: "Don't know" => "Sijui"
|
28521
|
+
// dontKnowItemText: "Don't know" => "Sijui"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Jibu lako ni zaidi ya 64KB. Tafadhali punguza ukubwa wa faili yako na jaribu tena au wasiliana na mmiliki wa utafiti."
|
28522
|
+
// signaturePlaceHolderReadOnly: "No signature" => "Hakuna saini"
|
28259
28523
|
|
28260
28524
|
|
28261
28525
|
/***/ }),
|
@@ -28341,6 +28605,7 @@ var swedishSurveyStrings = {
|
|
28341
28605
|
savingData: "Resultaten sparas på servern ...",
|
28342
28606
|
savingDataError: "Ett fel inträffade och vi kunde inte spara resultaten.",
|
28343
28607
|
savingDataSuccess: "Resultaten lyckades sparas!",
|
28608
|
+
savingExceedSize: "Ditt svar överskrider 64 kB. Minska storleken på dina filer och försök igen eller kontakta en undersökningsägare.",
|
28344
28609
|
saveAgainButton: "Försök igen",
|
28345
28610
|
timerMin: "min",
|
28346
28611
|
timerSec: "sek",
|
@@ -28352,6 +28617,7 @@ var swedishSurveyStrings = {
|
|
28352
28617
|
timerLimitSurvey: "Du har spenderat {0} av {1} totalt.",
|
28353
28618
|
clearCaption: "Klar",
|
28354
28619
|
signaturePlaceHolder: "Signera här",
|
28620
|
+
signaturePlaceHolderReadOnly: "Ingen signatur",
|
28355
28621
|
chooseFileCaption: "Välj fil",
|
28356
28622
|
takePhotoCaption: "Ta foto",
|
28357
28623
|
photoPlaceholder: "Klicka på knappen nedan för att ta ett foto med kameran.",
|
@@ -28396,7 +28662,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["sv"]
|
|
28396
28662
|
// ok: "OK" => "OKEJ"
|
28397
28663
|
// cancel: "Cancel" => "Annullera"
|
28398
28664
|
// refuseItemText: "Refuse to answer" => "Vägra svara"
|
28399
|
-
// dontKnowItemText: "Don't know" => "Vet inte"
|
28665
|
+
// dontKnowItemText: "Don't know" => "Vet inte"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Ditt svar överskrider 64 kB. Minska storleken på dina filer och försök igen eller kontakta en undersökningsägare."
|
28666
|
+
// signaturePlaceHolderReadOnly: "No signature" => "Ingen signatur"
|
28400
28667
|
|
28401
28668
|
|
28402
28669
|
/***/ }),
|
@@ -28589,6 +28856,7 @@ var teluguStrings = {
|
|
28589
28856
|
savingData: "ఫలితాంశాలు సర్వర్లో సేవ్ అవుతున్నాయి",
|
28590
28857
|
savingDataError: "ఒక లోపము సంభవించినది అందుకని ఫలితాంశాలను సేవ్ చేయలేకపోయాము ",
|
28591
28858
|
savingDataSuccess: "ఫలితాంశాలను విజయవంతంగా సేవ్ చేసాము",
|
28859
|
+
savingExceedSize: "మీ ప్రతిస్పందన 64KBని మించిపోయింది. దయచేసి మీ ఫైల్(లు) పరిమాణాన్ని తగ్గించండి మరియు మళ్లీ ప్రయత్నించండి లేదా సర్వే యజమానిని సంప్రదించండి.",
|
28592
28860
|
saveAgainButton: "మళ్లీ ప్రయత్నించు",
|
28593
28861
|
timerMin: "నిమిషాలు ",
|
28594
28862
|
timerSec: "సెకండ్లు",
|
@@ -28600,6 +28868,7 @@ var teluguStrings = {
|
|
28600
28868
|
timerLimitSurvey: " మొత్తంగా మీరు {1} లో {0} ని ఉపయోగించారు ",
|
28601
28869
|
clearCaption: "స్పష్టమ్",
|
28602
28870
|
signaturePlaceHolder: "ఇక్కడ సంతకం చేయండి",
|
28871
|
+
signaturePlaceHolderReadOnly: "సంతకం లేదు",
|
28603
28872
|
chooseFileCaption: "ఫైల్ ఎంచుకోండి",
|
28604
28873
|
takePhotoCaption: "ఫోటో తీసుకోండి",
|
28605
28874
|
photoPlaceholder: "కెమెరాను ఉపయోగించి ఫోటో తీయడానికి దిగువ బటన్ మీద క్లిక్ చేయండి.",
|
@@ -28656,7 +28925,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["tel"
|
|
28656
28925
|
// hideDetails: "Hide Details" => "వివరాలను దాచండి"
|
28657
28926
|
// ok: "OK" => "సరే"
|
28658
28927
|
// cancel: "Cancel" => "రద్దు"// refuseItemText: "Refuse to answer" => "సమాధానం ఇవ్వడానికి నిరాకరించండి"
|
28659
|
-
// dontKnowItemText: "Don't know" => "తెలియదు"
|
28928
|
+
// dontKnowItemText: "Don't know" => "తెలియదు"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "మీ ప్రతిస్పందన 64KBని మించిపోయింది. దయచేసి మీ ఫైల్(లు) పరిమాణాన్ని తగ్గించండి మరియు మళ్లీ ప్రయత్నించండి లేదా సర్వే యజమానిని సంప్రదించండి."
|
28929
|
+
// signaturePlaceHolderReadOnly: "No signature" => "సంతకం లేదు"
|
28660
28930
|
|
28661
28931
|
|
28662
28932
|
/***/ }),
|
@@ -28742,6 +29012,7 @@ var thaiStrings = {
|
|
28742
29012
|
savingData: "ผลลัพท์กำลังบันทึกลงที่เซิร์ฟเวอร์...",
|
28743
29013
|
savingDataError: "มีความผิดพลาดเกิดขึ้นส่งผลให้ไม่สามารถบันทึกผลได้",
|
28744
29014
|
savingDataSuccess: "บันทึกสำเร็จแล้ว",
|
29015
|
+
savingExceedSize: "คําตอบของคุณเกิน 64KB โปรดลดขนาดไฟล์ของคุณแล้วลองอีกครั้งหรือติดต่อเจ้าของแบบสํารวจ",
|
28745
29016
|
saveAgainButton: "รบกวนลองอีกครั้ง",
|
28746
29017
|
timerMin: "นาที",
|
28747
29018
|
timerSec: "วินาที",
|
@@ -28753,6 +29024,7 @@ var thaiStrings = {
|
|
28753
29024
|
timerLimitSurvey: "คุณใช้เวลา {0} ของ {1} รวมทั้งหมด",
|
28754
29025
|
clearCaption: "เคลียร์",
|
28755
29026
|
signaturePlaceHolder: "ลงชื่อที่นี่",
|
29027
|
+
signaturePlaceHolderReadOnly: "ไม่มีลายเซ็น",
|
28756
29028
|
chooseFileCaption: "เลือกไฟล์",
|
28757
29029
|
takePhotoCaption: "ถ่ายรูป",
|
28758
29030
|
photoPlaceholder: "คลิกปุ่มด้านล่างเพื่อถ่ายภาพโดยใช้กล้อง",
|
@@ -28808,7 +29080,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["th"]
|
|
28808
29080
|
// hideDetails: "Hide Details" => "ซ่อนรายละเอียด"
|
28809
29081
|
// ok: "OK" => "ตกลง, ได้"
|
28810
29082
|
// cancel: "Cancel" => "ยกเลิก"// refuseItemText: "Refuse to answer" => "ปฏิเสธที่จะตอบ"
|
28811
|
-
// dontKnowItemText: "Don't know" => "ไม่ทราบ"
|
29083
|
+
// dontKnowItemText: "Don't know" => "ไม่ทราบ"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "คําตอบของคุณเกิน 64KB โปรดลดขนาดไฟล์ของคุณแล้วลองอีกครั้งหรือติดต่อเจ้าของแบบสํารวจ"
|
29084
|
+
// signaturePlaceHolderReadOnly: "No signature" => "ไม่มีลายเซ็น"
|
28812
29085
|
|
28813
29086
|
|
28814
29087
|
/***/ }),
|
@@ -28894,6 +29167,7 @@ var traditionalChineseSurveyStrings = {
|
|
28894
29167
|
savingData: "正在將結果保存到服務器...",
|
28895
29168
|
savingDataError: "在保存結果過程中發生了錯誤,結果未能保存",
|
28896
29169
|
savingDataSuccess: "結果保存成功!",
|
29170
|
+
savingExceedSize: "您的回復超過 64KB。請減小檔的大小,然後重試或聯繫調查擁有者。",
|
28897
29171
|
saveAgainButton: "請重試",
|
28898
29172
|
timerMin: "最小",
|
28899
29173
|
timerSec: "秒",
|
@@ -28905,6 +29179,7 @@ var traditionalChineseSurveyStrings = {
|
|
28905
29179
|
timerLimitSurvey: "您總共花費了{1}的{0}。",
|
28906
29180
|
clearCaption: "清楚",
|
28907
29181
|
signaturePlaceHolder: "在此簽名",
|
29182
|
+
signaturePlaceHolderReadOnly: "無簽名",
|
28908
29183
|
chooseFileCaption: "選擇檔案",
|
28909
29184
|
takePhotoCaption: "拍照",
|
28910
29185
|
photoPlaceholder: "按下下面的按鈕使用相機拍照。",
|
@@ -28995,7 +29270,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["zh-t
|
|
28995
29270
|
// hideDetails: "Hide Details" => "隱藏詳細資訊"
|
28996
29271
|
// ok: "OK" => "還行"
|
28997
29272
|
// cancel: "Cancel" => "取消"// refuseItemText: "Refuse to answer" => "拒絕回答"
|
28998
|
-
// dontKnowItemText: "Don't know" => "不知道"
|
29273
|
+
// dontKnowItemText: "Don't know" => "不知道"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "您的回復超過 64KB。請減小檔的大小,然後重試或聯繫調查擁有者。"
|
29274
|
+
// signaturePlaceHolderReadOnly: "No signature" => "無簽名"
|
28999
29275
|
|
29000
29276
|
|
29001
29277
|
/***/ }),
|
@@ -29081,6 +29357,7 @@ var turkishSurveyStrings = {
|
|
29081
29357
|
savingData: "Sonuçlar sunucuya kaydediliyor...",
|
29082
29358
|
savingDataError: "Bir hata oluştu ve sonuçlar kaydedilemedi.",
|
29083
29359
|
savingDataSuccess: "Sonuçlar başarıyla kaydedildi!",
|
29360
|
+
savingExceedSize: "Yanıtınız 64 KB'ı aşıyor. Lütfen dosyalarınızın boyutunu küçültün ve tekrar deneyin veya bir anket sahibiyle iletişime geçin.",
|
29084
29361
|
saveAgainButton: "Tekrar deneyin",
|
29085
29362
|
timerMin: "dakika",
|
29086
29363
|
timerSec: "saniye",
|
@@ -29092,6 +29369,7 @@ var turkishSurveyStrings = {
|
|
29092
29369
|
timerLimitSurvey: "Toplamda {0}/{1} harcadınız.",
|
29093
29370
|
clearCaption: "Temizle",
|
29094
29371
|
signaturePlaceHolder: "Burayı imzalayın",
|
29372
|
+
signaturePlaceHolderReadOnly: "İmza yok",
|
29095
29373
|
chooseFileCaption: "Dosya seçin",
|
29096
29374
|
takePhotoCaption: "Fotoğraf Çekin",
|
29097
29375
|
photoPlaceholder: "Kamerayı kullanarak fotoğraf çekmek için aşağıdaki düğmeyi tıklayın.",
|
@@ -29129,7 +29407,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["tr"]
|
|
29129
29407
|
// hideDetails: "Hide Details" => "Detayları Gizle"
|
29130
29408
|
// ok: "OK" => "TAMAM"
|
29131
29409
|
// cancel: "Cancel" => "İptal"// refuseItemText: "Refuse to answer" => "Cevap vermeyi reddet"
|
29132
|
-
// dontKnowItemText: "Don't know" => "Bilmiyorum"
|
29410
|
+
// dontKnowItemText: "Don't know" => "Bilmiyorum"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Yanıtınız 64 KB'ı aşıyor. Lütfen dosyalarınızın boyutunu küçültün ve tekrar deneyin veya bir anket sahibiyle iletişime geçin."
|
29411
|
+
// signaturePlaceHolderReadOnly: "No signature" => "İmza yok"
|
29133
29412
|
|
29134
29413
|
|
29135
29414
|
/***/ }),
|
@@ -29215,6 +29494,7 @@ var ukrainianSurveyStrings = {
|
|
29215
29494
|
savingData: "Результати зберігаються на сервер...",
|
29216
29495
|
savingDataError: "Відбулася помилка, результат не був збережений.",
|
29217
29496
|
savingDataSuccess: "Резвультат успішно збережений!",
|
29497
|
+
savingExceedSize: "Ваша відповідь перевищує 64 КБ. Будь ласка, зменшіть розмір файлу (файлів) і повторіть спробу або зв'яжіться з власником опитування.",
|
29218
29498
|
saveAgainButton: "Спробувати знову",
|
29219
29499
|
timerMin: "хв",
|
29220
29500
|
timerSec: "сек",
|
@@ -29226,6 +29506,7 @@ var ukrainianSurveyStrings = {
|
|
29226
29506
|
timerLimitSurvey: "Ви витратили {0} з {1} для всього тесту.",
|
29227
29507
|
clearCaption: "Очистити",
|
29228
29508
|
signaturePlaceHolder: "Підпишіться тут",
|
29509
|
+
signaturePlaceHolderReadOnly: "Без підпису",
|
29229
29510
|
chooseFileCaption: "Виберіть файл",
|
29230
29511
|
takePhotoCaption: "Зробити фото",
|
29231
29512
|
photoPlaceholder: "Натисніть кнопку нижче, щоб зробити фото за допомогою камери.",
|
@@ -29281,7 +29562,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ua"]
|
|
29281
29562
|
// hideDetails: "Hide Details" => "Сховати подробиці"
|
29282
29563
|
// ok: "OK" => "ГАРАЗД"
|
29283
29564
|
// cancel: "Cancel" => "Скасувати"// refuseItemText: "Refuse to answer" => "Відмовтеся відповідати"
|
29284
|
-
// dontKnowItemText: "Don't know" => "Не знаю"
|
29565
|
+
// dontKnowItemText: "Don't know" => "Не знаю"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Ваша відповідь перевищує 64 КБ. Будь ласка, зменшіть розмір файлу (файлів) і повторіть спробу або зв'яжіться з власником опитування."
|
29566
|
+
// signaturePlaceHolderReadOnly: "No signature" => "Без підпису"
|
29285
29567
|
|
29286
29568
|
|
29287
29569
|
/***/ }),
|
@@ -29367,6 +29649,7 @@ var vietnameseSurveyStrings = {
|
|
29367
29649
|
savingData: "Kết quả đang lưu lại trên hệ thống...",
|
29368
29650
|
savingDataError: "Có lỗi xảy ra và chúng ta không thể lưu kết quả.",
|
29369
29651
|
savingDataSuccess: "Kết quả đã được lưu thành công!",
|
29652
|
+
savingExceedSize: "Phản hồi của bạn vượt quá 64KB. Vui lòng giảm kích thước (các) tệp của bạn và thử lại hoặc liên hệ với chủ sở hữu khảo sát.",
|
29370
29653
|
saveAgainButton: "Thử lại",
|
29371
29654
|
timerMin: "phút",
|
29372
29655
|
timerSec: "giây",
|
@@ -29378,6 +29661,7 @@ var vietnameseSurveyStrings = {
|
|
29378
29661
|
timerLimitSurvey: "Bạn đã sử dụng {0} / {1} trên toàn bộ.",
|
29379
29662
|
clearCaption: "Xóa",
|
29380
29663
|
signaturePlaceHolder: "Ký tên tại đây",
|
29664
|
+
signaturePlaceHolderReadOnly: "Không có chữ ký",
|
29381
29665
|
chooseFileCaption: "Chọn tập tin",
|
29382
29666
|
takePhotoCaption: "Chụp ảnh",
|
29383
29667
|
photoPlaceholder: "Nhấp vào nút bên dưới để chụp ảnh bằng máy ảnh.",
|
@@ -29434,7 +29718,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["vi"]
|
|
29434
29718
|
// hideDetails: "Hide Details" => "Ẩn chi tiết"
|
29435
29719
|
// ok: "OK" => "OK"
|
29436
29720
|
// cancel: "Cancel" => "Hủy"// refuseItemText: "Refuse to answer" => "Từ chối trả lời"
|
29437
|
-
// dontKnowItemText: "Don't know" => "Không biết"
|
29721
|
+
// dontKnowItemText: "Don't know" => "Không biết"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Phản hồi của bạn vượt quá 64KB. Vui lòng giảm kích thước (các) tệp của bạn và thử lại hoặc liên hệ với chủ sở hữu khảo sát."
|
29722
|
+
// signaturePlaceHolderReadOnly: "No signature" => "Không có chữ ký"
|
29438
29723
|
|
29439
29724
|
|
29440
29725
|
/***/ }),
|
@@ -29520,6 +29805,7 @@ var welshSurveyStrings = {
|
|
29520
29805
|
savingData: "Mae’r canlyniadau’n cael eu cadw ar y gweinydd...",
|
29521
29806
|
savingDataError: "Roedd gwall a doedd dim modd cadw’r canlyniadau.",
|
29522
29807
|
savingDataSuccess: "Wedi llwyddo i gadw’r canlyniadau!",
|
29808
|
+
savingExceedSize: "Mae eich ymateb yn fwy na 64KB. Lleihau maint eich ffeil(au) a cheisiwch eto neu cysylltwch â pherchennog yr arolwg.",
|
29523
29809
|
saveAgainButton: "Rhowch gynnig arall arni",
|
29524
29810
|
timerMin: "mun",
|
29525
29811
|
timerSec: "eil",
|
@@ -29531,6 +29817,7 @@ var welshSurveyStrings = {
|
|
29531
29817
|
timerLimitSurvey: "Rydych chi wedi treulio {0} o {1} gyda’i gilydd.",
|
29532
29818
|
clearCaption: "Clirio",
|
29533
29819
|
signaturePlaceHolder: "Arwydd yma",
|
29820
|
+
signaturePlaceHolderReadOnly: "Dim llofnod",
|
29534
29821
|
chooseFileCaption: "Dewiswch ffeil ",
|
29535
29822
|
takePhotoCaption: "Tynnu Llun",
|
29536
29823
|
photoPlaceholder: "Cliciwch y botwm isod i dynnu llun gan ddefnyddio'r camera.",
|
@@ -29586,7 +29873,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["cy"]
|
|
29586
29873
|
// hideDetails: "Hide Details" => "Manylion Cuddio"
|
29587
29874
|
// ok: "OK" => "OCÊ"
|
29588
29875
|
// cancel: "Cancel" => "Canslo"// refuseItemText: "Refuse to answer" => "Gwrthod ateb"
|
29589
|
-
// dontKnowItemText: "Don't know" => "Ddim yn gwybod"
|
29876
|
+
// dontKnowItemText: "Don't know" => "Ddim yn gwybod"// savingExceedSize: "Your response exceeds 64KB. Please reduce the size of your file(s) and try again or contact a survey owner." => "Mae eich ymateb yn fwy na 64KB. Lleihau maint eich ffeil(au) a cheisiwch eto neu cysylltwch â pherchennog yr arolwg."
|
29877
|
+
// signaturePlaceHolderReadOnly: "No signature" => "Dim llofnod"
|
29590
29878
|
|
29591
29879
|
|
29592
29880
|
/***/ }),
|
@@ -30059,9 +30347,6 @@ var InputElementAdapter = /** @class */ (function () {
|
|
30059
30347
|
if (_value === null || _value === undefined) {
|
30060
30348
|
_value = "";
|
30061
30349
|
}
|
30062
|
-
else if (typeof _value !== "string") {
|
30063
|
-
_value = _value.toString();
|
30064
|
-
}
|
30065
30350
|
this.inputElement.value = inputMaskInstance.getMaskedValue(_value);
|
30066
30351
|
this.prevUnmaskedValue = _value;
|
30067
30352
|
inputMaskInstance.onPropertyChanged.add(this.inputMaskInstancePropertyChangedHandler);
|
@@ -30182,17 +30467,12 @@ var InputMaskBase = /** @class */ (function (_super) {
|
|
30182
30467
|
});
|
30183
30468
|
return res;
|
30184
30469
|
};
|
30185
|
-
// public get maskedInputValue(): string {
|
30186
|
-
// return this.input.value;
|
30187
|
-
// }
|
30188
|
-
// public get unmaskedInputValue(): string {
|
30189
|
-
// return this.getUnmaskedValue(this.input.value, true);
|
30190
|
-
// }
|
30191
30470
|
InputMaskBase.prototype.processInput = function (args) {
|
30192
30471
|
return { value: args.prevValue, caretPosition: args.selectionEnd, cancelPreventDefault: false };
|
30193
30472
|
};
|
30194
30473
|
InputMaskBase.prototype.getUnmaskedValue = function (src) { return src; };
|
30195
30474
|
InputMaskBase.prototype.getMaskedValue = function (src) { return src; };
|
30475
|
+
InputMaskBase.prototype.getTextAlignment = function () { return "auto"; };
|
30196
30476
|
__decorate([
|
30197
30477
|
Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
|
30198
30478
|
], InputMaskBase.prototype, "saveMaskedValue", void 0);
|
@@ -30369,6 +30649,17 @@ var __extends = (undefined && undefined.__extends) || (function () {
|
|
30369
30649
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
30370
30650
|
};
|
30371
30651
|
})();
|
30652
|
+
var __assign = (undefined && undefined.__assign) || function () {
|
30653
|
+
__assign = Object.assign || function(t) {
|
30654
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
30655
|
+
s = arguments[i];
|
30656
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
30657
|
+
t[p] = s[p];
|
30658
|
+
}
|
30659
|
+
return t;
|
30660
|
+
};
|
30661
|
+
return __assign.apply(this, arguments);
|
30662
|
+
};
|
30372
30663
|
var __decorate = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
|
30373
30664
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
30374
30665
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
@@ -30380,11 +30671,15 @@ var __decorate = (undefined && undefined.__decorate) || function (decorators, ta
|
|
30380
30671
|
|
30381
30672
|
function getMaxCountLexem(currentLexemType, count) {
|
30382
30673
|
switch (currentLexemType) {
|
30383
|
-
case
|
30384
|
-
case
|
30674
|
+
case "hour":
|
30675
|
+
case "minute":
|
30676
|
+
case "second":
|
30677
|
+
case "day":
|
30678
|
+
case "month": {
|
30385
30679
|
return 2;
|
30386
30680
|
}
|
30387
|
-
case
|
30681
|
+
case "timeMarker":
|
30682
|
+
case "year": {
|
30388
30683
|
return count;
|
30389
30684
|
}
|
30390
30685
|
default: {
|
@@ -30416,7 +30711,8 @@ function getDefaultYearForValidation(minYear, maxYear) {
|
|
30416
30711
|
function getDateTimeLexems(pattern) {
|
30417
30712
|
var result = [];
|
30418
30713
|
var prevLexemType;
|
30419
|
-
var createOrUpdateLexem = function (currentLexemType, currentChar) {
|
30714
|
+
var createOrUpdateLexem = function (currentLexemType, currentChar, upperCase) {
|
30715
|
+
if (upperCase === void 0) { upperCase = false; }
|
30420
30716
|
if (!!prevLexemType && prevLexemType === currentLexemType) {
|
30421
30717
|
result[result.length - 1].count++;
|
30422
30718
|
var maxCount = getMaxCountLexem(currentLexemType, result[result.length - 1].count);
|
@@ -30425,23 +30721,41 @@ function getDateTimeLexems(pattern) {
|
|
30425
30721
|
else {
|
30426
30722
|
var maxCount = getMaxCountLexem(currentLexemType, 1);
|
30427
30723
|
// result.push({ type: currentLexemType, value: currentChar, count: 1, data: { value: "", isCompleted: false, isCorrect: false }, maxCount: maxCount });
|
30428
|
-
result.push({ type: currentLexemType, value: currentChar, count: 1, maxCount: maxCount });
|
30724
|
+
result.push({ type: currentLexemType, value: currentChar, count: 1, maxCount: maxCount, upperCase: upperCase });
|
30429
30725
|
}
|
30430
30726
|
};
|
30431
30727
|
for (var index = 0; index < pattern.length; index++) {
|
30432
30728
|
var currentChar = pattern[index];
|
30433
30729
|
switch (currentChar) {
|
30434
30730
|
case "m":
|
30435
|
-
createOrUpdateLexem("month",
|
30731
|
+
createOrUpdateLexem("month", currentChar);
|
30436
30732
|
break;
|
30437
30733
|
case "d":
|
30438
|
-
createOrUpdateLexem("day",
|
30734
|
+
createOrUpdateLexem("day", currentChar);
|
30439
30735
|
break;
|
30440
30736
|
case "y":
|
30441
|
-
createOrUpdateLexem("year",
|
30737
|
+
createOrUpdateLexem("year", currentChar);
|
30738
|
+
break;
|
30739
|
+
case "h":
|
30740
|
+
createOrUpdateLexem("hour", currentChar, false);
|
30741
|
+
break;
|
30742
|
+
case "H":
|
30743
|
+
createOrUpdateLexem("hour", currentChar, true);
|
30744
|
+
break;
|
30745
|
+
case "M":
|
30746
|
+
createOrUpdateLexem("minute", currentChar);
|
30747
|
+
break;
|
30748
|
+
case "s":
|
30749
|
+
createOrUpdateLexem("second", currentChar);
|
30750
|
+
break;
|
30751
|
+
case "t":
|
30752
|
+
createOrUpdateLexem("timeMarker", currentChar);
|
30753
|
+
break;
|
30754
|
+
case "T":
|
30755
|
+
createOrUpdateLexem("timeMarker", currentChar, true);
|
30442
30756
|
break;
|
30443
30757
|
default:
|
30444
|
-
result.push({ type: "separator", value: currentChar, count: 1, maxCount: 1 });
|
30758
|
+
result.push({ type: "separator", value: currentChar, count: 1, maxCount: 1, upperCase: false });
|
30445
30759
|
break;
|
30446
30760
|
}
|
30447
30761
|
prevLexemType = result[result.length - 1].type;
|
@@ -30472,11 +30786,42 @@ var InputMaskDateTime = /** @class */ (function (_super) {
|
|
30472
30786
|
__extends(InputMaskDateTime, _super);
|
30473
30787
|
function InputMaskDateTime() {
|
30474
30788
|
var _this = _super !== null && _super.apply(this, arguments) || this;
|
30789
|
+
_this.defaultDate = "1970-01-01T";
|
30475
30790
|
_this.turnOfTheCentury = 68;
|
30791
|
+
_this.twelve = 12;
|
30476
30792
|
_this.lexems = [];
|
30477
30793
|
_this.inputDateTimeData = [];
|
30794
|
+
_this.validBeginningOfNumbers = {
|
30795
|
+
hour: 1,
|
30796
|
+
hourU: 2,
|
30797
|
+
minute: 5,
|
30798
|
+
second: 5,
|
30799
|
+
day: 3,
|
30800
|
+
month: 1,
|
30801
|
+
};
|
30478
30802
|
return _this;
|
30479
30803
|
}
|
30804
|
+
Object.defineProperty(InputMaskDateTime.prototype, "hasDatePart", {
|
30805
|
+
get: function () {
|
30806
|
+
return this.lexems.some(function (l) { return l.type === "day" || l.type === "month" || l.type === "year"; });
|
30807
|
+
},
|
30808
|
+
enumerable: false,
|
30809
|
+
configurable: true
|
30810
|
+
});
|
30811
|
+
Object.defineProperty(InputMaskDateTime.prototype, "hasTimePart", {
|
30812
|
+
get: function () {
|
30813
|
+
return this.lexems.some(function (l) { return l.type === "hour" || l.type === "minute" || l.type === "second"; });
|
30814
|
+
},
|
30815
|
+
enumerable: false,
|
30816
|
+
configurable: true
|
30817
|
+
});
|
30818
|
+
Object.defineProperty(InputMaskDateTime.prototype, "is12Hours", {
|
30819
|
+
get: function () {
|
30820
|
+
return this.lexems.filter(function (l) { return l.type === "hour" && !l.upperCase; }).length > 0;
|
30821
|
+
},
|
30822
|
+
enumerable: false,
|
30823
|
+
configurable: true
|
30824
|
+
});
|
30480
30825
|
InputMaskDateTime.prototype.getType = function () {
|
30481
30826
|
return "datetimemask";
|
30482
30827
|
};
|
@@ -30496,20 +30841,45 @@ var InputMaskDateTime = /** @class */ (function (_super) {
|
|
30496
30841
|
var _this = this;
|
30497
30842
|
var date = new Date(str);
|
30498
30843
|
this.initInputDateTimeData();
|
30844
|
+
if (!this.hasDatePart) {
|
30845
|
+
date = new Date(this.defaultDate + str);
|
30846
|
+
}
|
30499
30847
|
if (!isNaN(date)) {
|
30500
30848
|
this.lexems.forEach(function (lexem, index) {
|
30501
30849
|
var inputData = _this.inputDateTimeData[index];
|
30502
30850
|
inputData.isCompleted = true;
|
30503
30851
|
switch (lexem.type) {
|
30504
|
-
case
|
30852
|
+
case "hour": {
|
30853
|
+
if (!_this.is12Hours) {
|
30854
|
+
inputData.value = date.getHours().toString();
|
30855
|
+
}
|
30856
|
+
else {
|
30857
|
+
inputData.value = ((date.getHours() - 1) % _this.twelve + 1).toString();
|
30858
|
+
}
|
30859
|
+
break;
|
30860
|
+
}
|
30861
|
+
case "minute": {
|
30862
|
+
inputData.value = date.getMinutes().toString();
|
30863
|
+
break;
|
30864
|
+
}
|
30865
|
+
case "second": {
|
30866
|
+
inputData.value = date.getSeconds().toString();
|
30867
|
+
break;
|
30868
|
+
}
|
30869
|
+
case "timeMarker": {
|
30870
|
+
var marker = (date.getHours() >= _this.twelve) ? "pm" : "am";
|
30871
|
+
inputData.value = lexem.upperCase ? marker.toUpperCase() : marker;
|
30872
|
+
break;
|
30873
|
+
}
|
30874
|
+
case "day": {
|
30505
30875
|
inputData.value = date.getDate().toString();
|
30506
30876
|
break;
|
30507
30877
|
}
|
30508
|
-
case
|
30878
|
+
case "month": {
|
30509
30879
|
inputData.value = (date.getMonth() + 1).toString();
|
30510
30880
|
break;
|
30511
30881
|
}
|
30512
|
-
case
|
30882
|
+
case "year": {
|
30513
30883
|
var year = date.getFullYear();
|
30514
30884
|
if (lexem.count == 2)
|
30515
30885
|
year = year % 100;
|
@@ -30533,6 +30903,7 @@ var InputMaskDateTime = /** @class */ (function (_super) {
|
|
30533
30903
|
};
|
30534
30904
|
InputMaskDateTime.prototype.getISO_8601Format = function (dateTime) {
|
30535
30905
|
var date = [];
|
30906
|
+
var time = [];
|
30536
30907
|
if (dateTime.year !== undefined) {
|
30537
30908
|
var year = this.getPlaceholder(4, dateTime.year.toString(), "0") + dateTime.year;
|
30538
30909
|
date.push(year);
|
@@ -30545,7 +30916,26 @@ var InputMaskDateTime = /** @class */ (function (_super) {
|
|
30545
30916
|
var day = this.getPlaceholder(2, dateTime.day.toString(), "0") + dateTime.day;
|
30546
30917
|
date.push(day);
|
30547
30918
|
}
|
30548
|
-
|
30919
|
+
if (dateTime.hour !== undefined) {
|
30920
|
+
var hour = this.getPlaceholder(2, dateTime.hour.toString(), "0") + dateTime.hour;
|
30921
|
+
time.push(hour);
|
30922
|
+
}
|
30923
|
+
if (dateTime.minute !== undefined && dateTime.hour !== undefined) {
|
30924
|
+
var minute = this.getPlaceholder(2, dateTime.minute.toString(), "0") + dateTime.minute;
|
30925
|
+
time.push(minute);
|
30926
|
+
}
|
30927
|
+
if (dateTime.second !== undefined && dateTime.minute !== undefined && dateTime.hour !== undefined) {
|
30928
|
+
var second = this.getPlaceholder(2, dateTime.second.toString(), "0") + dateTime.second;
|
30929
|
+
time.push(second);
|
30930
|
+
}
|
30931
|
+
var result = [];
|
30932
|
+
if (date.length > 0) {
|
30933
|
+
result.push(date.join("-"));
|
30934
|
+
}
|
30935
|
+
if (time.length > 1) {
|
30936
|
+
result.push(time.join(":"));
|
30937
|
+
}
|
30938
|
+
return result.join("T");
|
30549
30939
|
};
|
30550
30940
|
InputMaskDateTime.prototype.isYearValid = function (dateTime) {
|
30551
30941
|
if (dateTime.min === undefined && dateTime.max === undefined)
|
@@ -30555,74 +30945,153 @@ var InputMaskDateTime = /** @class */ (function (_super) {
|
|
30555
30945
|
var maxYearPart = dateTime.max.toISOString().slice(0, data.length);
|
30556
30946
|
return dateTime.year >= parseInt(minYearPart) && dateTime.year <= parseInt(maxYearPart);
|
30557
30947
|
};
|
30948
|
+
InputMaskDateTime.prototype.createIDateTimeCompositionWithDefaults = function (dateTime, isUpperLimit) {
|
30949
|
+
var min = dateTime.min;
|
30950
|
+
var max = dateTime.max;
|
30951
|
+
var year = dateTime.year !== undefined ? dateTime.year : getDefaultYearForValidation(min.getFullYear(), max.getFullYear());
|
30952
|
+
var month = dateTime.month !== undefined ? dateTime.month : (isUpperLimit && this.hasDatePart ? 12 : 1);
|
30953
|
+
var day = dateTime.day !== undefined ? dateTime.day : (isUpperLimit && this.hasDatePart ? this.getMaxDateForMonth(year, month) : 1);
|
30954
|
+
var hour = dateTime.hour !== undefined ? dateTime.hour : (isUpperLimit ? 23 : 0);
|
30955
|
+
var minute = dateTime.minute !== undefined ? dateTime.minute : (isUpperLimit ? 59 : 0);
|
30956
|
+
var second = dateTime.second !== undefined ? dateTime.second : (isUpperLimit ? 59 : 0);
|
30957
|
+
return { year: year, month: month, day: day, hour: hour, minute: minute, second: second };
|
30958
|
+
};
|
30959
|
+
InputMaskDateTime.prototype.getMaxDateForMonth = function (year, month) {
|
30960
|
+
if (month == 2)
|
30961
|
+
return year % 4 == 0 && year % 100 != 0 || year % 400 ? 29 : 28;
|
30962
|
+
return [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31][month - 1];
|
30963
|
+
};
|
30558
30964
|
InputMaskDateTime.prototype.isDateValid = function (dateTime) {
|
30559
30965
|
var min = dateTime.min;
|
30560
30966
|
var max = dateTime.max;
|
30561
30967
|
var year = dateTime.year !== undefined ? dateTime.year : getDefaultYearForValidation(min.getFullYear(), max.getFullYear());
|
30562
30968
|
var month = dateTime.month !== undefined ? dateTime.month : 1;
|
30563
30969
|
var day = dateTime.day !== undefined ? dateTime.day : 1;
|
30564
|
-
var date = new Date(this.getISO_8601Format({ year: year, month: month, day: day }));
|
30565
30970
|
var monthIndex = month - 1;
|
30971
|
+
var date = new Date(this.getISO_8601Format(this.createIDateTimeCompositionWithDefaults(dateTime, false)));
|
30972
|
+
var dateH = new Date(this.getISO_8601Format(this.createIDateTimeCompositionWithDefaults(dateTime, true)));
|
30566
30973
|
return !isNaN(date) &&
|
30567
30974
|
date.getDate() === day &&
|
30568
30975
|
date.getMonth() === monthIndex &&
|
30569
30976
|
date.getFullYear() === year &&
|
30570
|
-
|
30977
|
+
dateH >= dateTime.min && date <= dateTime.max;
|
30571
30978
|
};
|
30572
30979
|
InputMaskDateTime.prototype.getPlaceholder = function (lexemLength, str, char) {
|
30573
30980
|
var paddingsLength = lexemLength - (str || "").length;
|
30574
30981
|
var paddings = paddingsLength > 0 ? char.repeat(paddingsLength) : "";
|
30575
30982
|
return paddings;
|
30576
30983
|
};
|
30984
|
+
InputMaskDateTime.prototype.isDateValid12 = function (dateTime12) {
|
30985
|
+
if (!this.is12Hours)
|
30986
|
+
return this.isDateValid(dateTime12);
|
30987
|
+
if (this.is12Hours && dateTime12.hour > this.twelve) {
|
30988
|
+
return false;
|
30989
|
+
}
|
30990
|
+
if (!dateTime12.timeMarker) {
|
30991
|
+
if (this.isDateValid(dateTime12))
|
30992
|
+
return true;
|
30993
|
+
dateTime12.hour += this.twelve;
|
30994
|
+
return this.isDateValid(dateTime12);
|
30995
|
+
}
|
30996
|
+
else if (dateTime12.timeMarker[0].toLowerCase() === "p") {
|
30997
|
+
if (dateTime12.hour !== this.twelve) {
|
30998
|
+
dateTime12.hour += this.twelve;
|
30999
|
+
}
|
31000
|
+
return this.isDateValid(dateTime12);
|
31001
|
+
}
|
31002
|
+
else {
|
31003
|
+
if (dateTime12.hour === this.twelve) {
|
31004
|
+
dateTime12.hour = 0;
|
31005
|
+
}
|
31006
|
+
return this.isDateValid(dateTime12);
|
31007
|
+
}
|
31008
|
+
};
|
31009
|
+
InputMaskDateTime.prototype.updateTimeMarkerInputDateTimeData = function (newItem, dateTime) {
|
31010
|
+
var data = newItem.value;
|
31011
|
+
if (!data)
|
31012
|
+
return;
|
31013
|
+
var propertyName = "timeMarker";
|
31014
|
+
var tempDateTime = __assign({}, dateTime);
|
31015
|
+
tempDateTime[propertyName] = data;
|
31016
|
+
if (this.isDateValid12(tempDateTime)) {
|
31017
|
+
newItem.isCompleted = true;
|
31018
|
+
}
|
31019
|
+
else {
|
31020
|
+
data = data.slice(0, data.length - 1);
|
31021
|
+
}
|
31022
|
+
newItem.value = data || undefined;
|
31023
|
+
dateTime[propertyName] = data || undefined;
|
31024
|
+
return;
|
31025
|
+
};
|
30577
31026
|
InputMaskDateTime.prototype.updateInputDateTimeData = function (newItem, dateTime) {
|
30578
31027
|
var data = newItem.value;
|
30579
31028
|
if (!data)
|
30580
31029
|
return;
|
30581
31030
|
var propertyName = newItem.lexem.type;
|
30582
|
-
|
31031
|
+
var tempDateTime = __assign({}, dateTime);
|
31032
|
+
tempDateTime[propertyName] = parseInt(data);
|
30583
31033
|
if (data.length === newItem.lexem.maxCount) {
|
30584
|
-
if (this.
|
31034
|
+
if (this.isDateValid12(tempDateTime)) {
|
30585
31035
|
newItem.isCompleted = true;
|
31036
|
+
newItem.value = data || undefined;
|
31037
|
+
dateTime[propertyName] = parseInt(data) > 0 ? parseInt(data) : undefined;
|
31038
|
+
return;
|
30586
31039
|
}
|
30587
31040
|
else {
|
30588
31041
|
data = data.slice(0, data.length - 1);
|
30589
31042
|
}
|
30590
31043
|
}
|
30591
|
-
|
30592
|
-
|
31044
|
+
tempDateTime[propertyName] = parseInt(data);
|
31045
|
+
var firstDigit = parseInt(data[0]);
|
31046
|
+
var validBeginningOfNumber = this.validBeginningOfNumbers[propertyName + (newItem.lexem.upperCase ? "U" : "")];
|
31047
|
+
if ((propertyName === "year" && !this.isYearValid(tempDateTime))) {
|
30593
31048
|
data = data.slice(0, data.length - 1);
|
31049
|
+
newItem.isCompleted = false;
|
30594
31050
|
}
|
30595
|
-
else if (
|
30596
|
-
if (this.
|
31051
|
+
else if (validBeginningOfNumber !== undefined && firstDigit > validBeginningOfNumber) {
|
31052
|
+
if (this.isDateValid12(tempDateTime)) {
|
30597
31053
|
newItem.isCompleted = true;
|
30598
31054
|
}
|
30599
31055
|
else {
|
30600
31056
|
data = data.slice(0, data.length - 1);
|
30601
31057
|
}
|
30602
31058
|
}
|
30603
|
-
else if (
|
30604
|
-
|
30605
|
-
|
30606
|
-
var maxValue = propertyName === "month" ? 3 : 10;
|
30607
|
-
newItem.isCompleted = true;
|
30608
|
-
for (var index = 0; index < maxValue; index++) {
|
30609
|
-
dateTime[propertyName] = tempValue + index;
|
30610
|
-
if (this.isDateValid(dateTime)) {
|
30611
|
-
newItem.isCompleted = false;
|
30612
|
-
break;
|
30613
|
-
}
|
30614
|
-
}
|
30615
|
-
dateTime[propertyName] = prevValue;
|
30616
|
-
if (newItem.isCompleted && !this.isDateValid(dateTime)) {
|
31059
|
+
else if (validBeginningOfNumber !== undefined && firstDigit !== 0 && firstDigit <= validBeginningOfNumber) {
|
31060
|
+
this.checkValidationDateTimePart(tempDateTime, propertyName, newItem);
|
31061
|
+
if (newItem.isCompleted && !this.isDateValid12(tempDateTime)) {
|
30617
31062
|
data = data.slice(0, data.length - 1);
|
30618
31063
|
}
|
30619
31064
|
}
|
30620
31065
|
newItem.value = data || undefined;
|
30621
31066
|
dateTime[propertyName] = parseInt(data) > 0 ? parseInt(data) : undefined;
|
30622
31067
|
};
|
31068
|
+
InputMaskDateTime.prototype.checkValidationDateTimePart = function (dateTime, propertyName, newItem) {
|
31069
|
+
var prevValue = dateTime[propertyName];
|
31070
|
+
var tempValue = prevValue * 10;
|
31071
|
+
var maxValue = 10;
|
31072
|
+
if (propertyName === "month")
|
31073
|
+
maxValue = 3;
|
31074
|
+
if (propertyName === "hour")
|
31075
|
+
maxValue = this.is12Hours ? 3 : 5;
|
31076
|
+
newItem.isCompleted = true;
|
31077
|
+
for (var index = 0; index < maxValue; index++) {
|
31078
|
+
dateTime[propertyName] = tempValue + index;
|
31079
|
+
if (this.isDateValid12(dateTime)) {
|
31080
|
+
newItem.isCompleted = false;
|
31081
|
+
break;
|
31082
|
+
}
|
31083
|
+
}
|
31084
|
+
dateTime[propertyName] = prevValue;
|
31085
|
+
};
|
30623
31086
|
InputMaskDateTime.prototype.getCorrectDatePartFormat = function (inputData, matchWholeMask) {
|
30624
31087
|
var lexem = inputData.lexem;
|
30625
31088
|
var dataStr = inputData.value || "";
|
31089
|
+
if (!!dataStr && lexem.type === "timeMarker") {
|
31090
|
+
if (matchWholeMask) {
|
31091
|
+
dataStr = dataStr + this.getPlaceholder(lexem.count, dataStr, lexem.value);
|
31092
|
+
}
|
31093
|
+
return dataStr;
|
31094
|
+
}
|
30626
31095
|
if (!!dataStr && inputData.isCompleted) {
|
30627
31096
|
dataStr = parseInt(dataStr).toString();
|
30628
31097
|
}
|
@@ -30640,12 +31109,24 @@ var InputMaskDateTime = /** @class */ (function (_super) {
|
|
30640
31109
|
return dataStr;
|
30641
31110
|
};
|
30642
31111
|
InputMaskDateTime.prototype.createIDateTimeComposition = function () {
|
31112
|
+
var isoMin, isoMax;
|
31113
|
+
if (this.hasDatePart) {
|
31114
|
+
isoMin = this.min || "0001-01-01";
|
31115
|
+
isoMax = this.max || "9999-12-31";
|
31116
|
+
}
|
31117
|
+
else {
|
31118
|
+
isoMin = this.defaultDate + (this.min || "00:00:00");
|
31119
|
+
isoMax = this.defaultDate + (this.max || "23:59:59");
|
31120
|
+
}
|
30643
31121
|
var tempDateTime = {
|
31122
|
+
hour: undefined,
|
31123
|
+
minute: undefined,
|
31124
|
+
second: undefined,
|
30644
31125
|
day: undefined,
|
30645
31126
|
month: undefined,
|
30646
31127
|
year: undefined,
|
30647
|
-
min: new Date(
|
30648
|
-
max: new Date(
|
31128
|
+
min: new Date(isoMin),
|
31129
|
+
max: new Date(isoMax)
|
30649
31130
|
};
|
30650
31131
|
return tempDateTime;
|
30651
31132
|
};
|
@@ -30672,6 +31153,10 @@ var InputMaskDateTime = /** @class */ (function (_super) {
|
|
30672
31153
|
for (var index = 0; index < this.inputDateTimeData.length; index++) {
|
30673
31154
|
var inputData = this.inputDateTimeData[index];
|
30674
31155
|
switch (inputData.lexem.type) {
|
31156
|
+
case "timeMarker":
|
31157
|
+
case "hour":
|
31158
|
+
case "minute":
|
31159
|
+
case "second":
|
30675
31160
|
case "day":
|
30676
31161
|
case "month":
|
30677
31162
|
case "year":
|
@@ -30680,7 +31165,7 @@ var InputMaskDateTime = /** @class */ (function (_super) {
|
|
30680
31165
|
return result;
|
30681
31166
|
}
|
30682
31167
|
else {
|
30683
|
-
var _matchWholeMask = matchWholeMask || lastItemWithDataIndex
|
31168
|
+
var _matchWholeMask = matchWholeMask || lastItemWithDataIndex > index;
|
30684
31169
|
var data = this.getCorrectDatePartFormat(inputData, _matchWholeMask);
|
30685
31170
|
result += (prevSeparator + data);
|
30686
31171
|
prevIsCompleted = inputData.isCompleted;
|
@@ -30693,15 +31178,38 @@ var InputMaskDateTime = /** @class */ (function (_super) {
|
|
30693
31178
|
}
|
30694
31179
|
return result;
|
30695
31180
|
};
|
31181
|
+
InputMaskDateTime.prototype.cleanTimeMarker = function (str, upperCase) {
|
31182
|
+
var result = "";
|
31183
|
+
str = str.toUpperCase();
|
31184
|
+
for (var i = 0; i < str.length; i++) {
|
31185
|
+
if (!result && (str[i] == "P" || str[i] == "A") || result && str[i] == "M")
|
31186
|
+
result += str[i];
|
31187
|
+
}
|
31188
|
+
if (upperCase) {
|
31189
|
+
result = result.toUpperCase();
|
31190
|
+
}
|
31191
|
+
else {
|
31192
|
+
result = result.toLowerCase();
|
31193
|
+
}
|
31194
|
+
return result;
|
31195
|
+
};
|
30696
31196
|
InputMaskDateTime.prototype.setInputDateTimeData = function (numberParts) {
|
30697
31197
|
var _this = this;
|
30698
31198
|
var numberPartsArrayIndex = 0;
|
30699
31199
|
this.initInputDateTimeData();
|
30700
31200
|
this.lexems.forEach(function (lexem, index) {
|
30701
|
-
if (
|
31201
|
+
if (numberParts.length > 0 && numberPartsArrayIndex < numberParts.length) {
|
31202
|
+
if (lexem.type === "separator")
|
31203
|
+
return;
|
30702
31204
|
var inputData = _this.inputDateTimeData[index];
|
30703
31205
|
var currentPart = numberParts[numberPartsArrayIndex];
|
30704
|
-
var _data =
|
31206
|
+
var _data = void 0;
|
31207
|
+
if (lexem.type === "timeMarker") {
|
31208
|
+
_data = _this.cleanTimeMarker(currentPart, lexem.upperCase);
|
31209
|
+
}
|
31210
|
+
else {
|
31211
|
+
_data = _this.leaveOnlyNumbers(currentPart);
|
31212
|
+
}
|
30705
31213
|
inputData.value = _data.slice(0, lexem.maxCount);
|
30706
31214
|
numberPartsArrayIndex++;
|
30707
31215
|
}
|
@@ -30714,7 +31222,14 @@ var InputMaskDateTime = /** @class */ (function (_super) {
|
|
30714
31222
|
var inputParts = this.getParts(input);
|
30715
31223
|
this.setInputDateTimeData(inputParts);
|
30716
31224
|
var tempDateTime = this.createIDateTimeComposition();
|
30717
|
-
this.inputDateTimeData.forEach(function (itemData) {
|
31225
|
+
this.inputDateTimeData.forEach(function (itemData) {
|
31226
|
+
if (itemData.lexem.type === "timeMarker") {
|
31227
|
+
_this.updateTimeMarkerInputDateTimeData(itemData, tempDateTime);
|
31228
|
+
}
|
31229
|
+
else {
|
31230
|
+
_this.updateInputDateTimeData(itemData, tempDateTime);
|
31231
|
+
}
|
31232
|
+
});
|
30718
31233
|
var result = this.getFormatedString(matchWholeMask);
|
30719
31234
|
return result;
|
30720
31235
|
};
|
@@ -30732,6 +31247,11 @@ var InputMaskDateTime = /** @class */ (function (_super) {
|
|
30732
31247
|
foundPseudoSeparator = false;
|
30733
31248
|
curPart += inputChar;
|
30734
31249
|
}
|
31250
|
+
else if (lexemsWithValue[inputParts.length].type === "timeMarker") {
|
31251
|
+
foundSeparator = false;
|
31252
|
+
foundPseudoSeparator = false;
|
31253
|
+
curPart += inputChar;
|
31254
|
+
}
|
30735
31255
|
else {
|
30736
31256
|
if (separators.indexOf(inputChar) !== -1) {
|
30737
31257
|
if (!foundPseudoSeparator) {
|
@@ -30760,17 +31280,27 @@ var InputMaskDateTime = /** @class */ (function (_super) {
|
|
30760
31280
|
};
|
30761
31281
|
InputMaskDateTime.prototype.getUnmaskedValue = function (src) {
|
30762
31282
|
var _this = this;
|
31283
|
+
var _a;
|
30763
31284
|
var input = (src === undefined || src === null) ? "" : src.toString();
|
30764
31285
|
var inputParts = this.getParts(input);
|
30765
31286
|
this.setInputDateTimeData(inputParts);
|
31287
|
+
var timeMarker = (_a = this.inputDateTimeData.filter(function (idtd) { return idtd.lexem.type === "timeMarker"; })[0]) === null || _a === void 0 ? void 0 : _a.value.toLowerCase()[0];
|
30766
31288
|
var tempDateTime = this.createIDateTimeComposition();
|
31289
|
+
var uncompleted = false;
|
30767
31290
|
this.inputDateTimeData.forEach(function (inputData) {
|
30768
31291
|
var str = inputData.value;
|
30769
|
-
if (
|
30770
|
-
return
|
30771
|
-
|
31292
|
+
if (inputData.lexem.type == "timeMarker" || inputData.lexem.type == "separator")
|
31293
|
+
return;
|
31294
|
+
if (!str || str.length < inputData.lexem.count) {
|
31295
|
+
uncompleted = true;
|
31296
|
+
return;
|
31297
|
+
}
|
31298
|
+
var value = parseInt(_this.parseTwoDigitYear(inputData));
|
31299
|
+
if (inputData.lexem.type == "hour" && timeMarker === "p" && value != _this.twelve)
|
31300
|
+
value += _this.twelve;
|
31301
|
+
tempDateTime[inputData.lexem.type] = value;
|
30772
31302
|
});
|
30773
|
-
return this.getISO_8601Format(tempDateTime);
|
31303
|
+
return uncompleted ? "" : this.getISO_8601Format(tempDateTime);
|
30774
31304
|
};
|
30775
31305
|
InputMaskDateTime.prototype.getMaskedValue = function (src) {
|
30776
31306
|
return this.getMaskedStrFromISO(src);
|
@@ -30982,9 +31512,6 @@ var InputMaskNumeric = /** @class */ (function (_super) {
|
|
30982
31512
|
InputMaskNumeric.prototype.parseNumber = function (src) {
|
30983
31513
|
var result = { integralPart: "", fractionalPart: "", hasDecimalSeparator: false, isNegative: false };
|
30984
31514
|
var input = (src === undefined || src === null) ? "" : src.toString();
|
30985
|
-
if (typeof src === "number") {
|
30986
|
-
input = src.toString().replace(".", this.decimalSeparator);
|
30987
|
-
}
|
30988
31515
|
var minusCharCount = 0;
|
30989
31516
|
for (var inputIndex = 0; inputIndex < input.length; inputIndex++) {
|
30990
31517
|
var currentChar = input[inputIndex];
|
@@ -31024,8 +31551,7 @@ var InputMaskNumeric = /** @class */ (function (_super) {
|
|
31024
31551
|
};
|
31025
31552
|
InputMaskNumeric.prototype.getNumberMaskedValue = function (src, matchWholeMask) {
|
31026
31553
|
if (matchWholeMask === void 0) { matchWholeMask = false; }
|
31027
|
-
var
|
31028
|
-
var parsedNumber = this.parseNumber(input);
|
31554
|
+
var parsedNumber = this.parseNumber(src);
|
31029
31555
|
if (!this.validateNumber(parsedNumber, matchWholeMask)) {
|
31030
31556
|
return null;
|
31031
31557
|
}
|
@@ -31036,8 +31562,13 @@ var InputMaskNumeric = /** @class */ (function (_super) {
|
|
31036
31562
|
var parsedNumber = this.parseNumber(str);
|
31037
31563
|
return this.convertNumber(parsedNumber);
|
31038
31564
|
};
|
31565
|
+
InputMaskNumeric.prototype.getTextAlignment = function () {
|
31566
|
+
return "right";
|
31567
|
+
};
|
31039
31568
|
InputMaskNumeric.prototype.getMaskedValue = function (src) {
|
31040
|
-
|
31569
|
+
var input = (src === undefined || src === null) ? "" : src.toString();
|
31570
|
+
input = input.replace(".", this.decimalSeparator);
|
31571
|
+
return this.getNumberMaskedValue(input, true);
|
31041
31572
|
};
|
31042
31573
|
InputMaskNumeric.prototype.getUnmaskedValue = function (src) {
|
31043
31574
|
return this.getNumberUnmaskedValue(src);
|
@@ -32121,6 +32652,10 @@ var QuestionRowModel = /** @class */ (function (_super) {
|
|
32121
32652
|
enumerable: false,
|
32122
32653
|
configurable: true
|
32123
32654
|
});
|
32655
|
+
QuestionRowModel.prototype.getIsAnimationAllowed = function () {
|
32656
|
+
var _a;
|
32657
|
+
return _super.prototype.getIsAnimationAllowed.call(this) && this.visible && ((_a = this.panel) === null || _a === void 0 ? void 0 : _a.animationAllowed);
|
32658
|
+
};
|
32124
32659
|
QuestionRowModel.prototype.getVisibleElementsAnimationOptions = function () {
|
32125
32660
|
var _this = this;
|
32126
32661
|
var beforeRunAnimation = function (el) {
|
@@ -32128,7 +32663,7 @@ var QuestionRowModel = /** @class */ (function (_super) {
|
|
32128
32663
|
el.style.setProperty("--animation-width", Object(_utils_utils__WEBPACK_IMPORTED_MODULE_8__["getElementWidth"])(el) + "px");
|
32129
32664
|
};
|
32130
32665
|
return {
|
32131
|
-
isAnimationEnabled: function () {
|
32666
|
+
isAnimationEnabled: function () { return _this.animationAllowed; },
|
32132
32667
|
getAnimatedElement: function (element) { return element.getWrapperElement(); },
|
32133
32668
|
getLeaveOptions: function (element) {
|
32134
32669
|
var surveyElement = element;
|
@@ -32277,7 +32812,7 @@ var QuestionRowModel = /** @class */ (function (_super) {
|
|
32277
32812
|
return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_9__["CssClassBuilder"]()
|
32278
32813
|
.append(this.panel.cssClasses.row)
|
32279
32814
|
.append(this.panel.cssClasses.rowCompact, this.panel["isCompact"])
|
32280
|
-
.append(this.panel.cssClasses.pageRow, this.panel.isPage ||
|
32815
|
+
.append(this.panel.cssClasses.pageRow, this.panel.isPage || this.panel.showPanelAsPage)
|
32281
32816
|
.append(this.panel.cssClasses.rowMultiple, this.visibleElements.length > 1)
|
32282
32817
|
.toString();
|
32283
32818
|
};
|
@@ -32341,7 +32876,7 @@ var PanelModelBase = /** @class */ (function (_super) {
|
|
32341
32876
|
el.style.setProperty("--animation-height", el.offsetHeight + "px");
|
32342
32877
|
};
|
32343
32878
|
return {
|
32344
|
-
isAnimationEnabled: function () { return
|
32879
|
+
isAnimationEnabled: function () { return _this.animationAllowed; },
|
32345
32880
|
getAnimatedElement: function (row) { return row.getRootElement(); },
|
32346
32881
|
getLeaveOptions: function (_) {
|
32347
32882
|
return { cssClass: _this.cssClasses.rowFadeOut,
|
@@ -32378,14 +32913,14 @@ var PanelModelBase = /** @class */ (function (_super) {
|
|
32378
32913
|
return "panelbase";
|
32379
32914
|
};
|
32380
32915
|
PanelModelBase.prototype.setSurveyImpl = function (value, isLight) {
|
32381
|
-
this.
|
32916
|
+
this.blockAnimations();
|
32382
32917
|
_super.prototype.setSurveyImpl.call(this, value, isLight);
|
32383
32918
|
if (this.isDesignMode)
|
32384
32919
|
this.onVisibleChanged();
|
32385
32920
|
for (var i = 0; i < this.elements.length; i++) {
|
32386
32921
|
this.elements[i].setSurveyImpl(value, isLight);
|
32387
32922
|
}
|
32388
|
-
this.
|
32923
|
+
this.releaseAnimations();
|
32389
32924
|
};
|
32390
32925
|
PanelModelBase.prototype.endLoadingFromJson = function () {
|
32391
32926
|
_super.prototype.endLoadingFromJson.call(this);
|
@@ -33200,13 +33735,13 @@ var PanelModelBase = /** @class */ (function (_super) {
|
|
33200
33735
|
return new QuestionRowModel(this);
|
33201
33736
|
};
|
33202
33737
|
PanelModelBase.prototype.onSurveyLoad = function () {
|
33203
|
-
this.
|
33738
|
+
this.blockAnimations();
|
33204
33739
|
_super.prototype.onSurveyLoad.call(this);
|
33205
33740
|
for (var i = 0; i < this.elements.length; i++) {
|
33206
33741
|
this.elements[i].onSurveyLoad();
|
33207
33742
|
}
|
33208
33743
|
this.onElementVisibilityChanged(this);
|
33209
|
-
this.
|
33744
|
+
this.releaseAnimations();
|
33210
33745
|
};
|
33211
33746
|
PanelModelBase.prototype.onFirstRendering = function () {
|
33212
33747
|
_super.prototype.onFirstRendering.call(this);
|
@@ -33240,9 +33775,9 @@ var PanelModelBase = /** @class */ (function (_super) {
|
|
33240
33775
|
PanelModelBase.prototype.onRowsChanged = function () {
|
33241
33776
|
if (this.isLoadingFromJson)
|
33242
33777
|
return;
|
33243
|
-
this.
|
33778
|
+
this.blockAnimations();
|
33244
33779
|
this.setArrayPropertyDirectly("rows", this.buildRows());
|
33245
|
-
this.
|
33780
|
+
this.releaseAnimations();
|
33246
33781
|
};
|
33247
33782
|
PanelModelBase.prototype.blockRowsUpdates = function () {
|
33248
33783
|
this.locCountRowUpdates++;
|
@@ -34324,7 +34859,10 @@ var PanelModel = /** @class */ (function (_super) {
|
|
34324
34859
|
};
|
34325
34860
|
Object.defineProperty(PanelModel.prototype, "showPanelAsPage", {
|
34326
34861
|
get: function () {
|
34327
|
-
|
34862
|
+
var panel = this;
|
34863
|
+
if (!!panel.originalPage)
|
34864
|
+
return true;
|
34865
|
+
return panel.survey.isShowingPreview && panel.survey.isSinglePage && !!panel.parent && !!panel.parent.originalPage;
|
34328
34866
|
},
|
34329
34867
|
enumerable: false,
|
34330
34868
|
configurable: true
|
@@ -35985,6 +36523,7 @@ var PopupDropdownViewModel = /** @class */ (function (_super) {
|
|
35985
36523
|
this.resizeEventCallback();
|
35986
36524
|
}
|
35987
36525
|
_global_variables_utils__WEBPACK_IMPORTED_MODULE_6__["DomWindowHelper"].addEventListener("scroll", this.scrollEventCallBack);
|
36526
|
+
this._isPositionSetValue = true;
|
35988
36527
|
};
|
35989
36528
|
Object.defineProperty(PopupDropdownViewModel.prototype, "shouldCreateResizeCallback", {
|
35990
36529
|
get: function () {
|
@@ -36725,6 +37264,7 @@ var PopupBaseViewModel = /** @class */ (function (_super) {
|
|
36725
37264
|
if (!val) {
|
36726
37265
|
_this.updateOnHiding();
|
36727
37266
|
_this.updateIsVisible(val);
|
37267
|
+
_this._isPositionSetValue = false;
|
36728
37268
|
}
|
36729
37269
|
else {
|
36730
37270
|
_this.updateIsVisible(val);
|
@@ -36735,7 +37275,9 @@ var PopupBaseViewModel = /** @class */ (function (_super) {
|
|
36735
37275
|
_this.onModelIsVisibleChangedCallback = function () {
|
36736
37276
|
_this.isVisible = _this.model.isVisible;
|
36737
37277
|
};
|
37278
|
+
_this._isPositionSetValue = false;
|
36738
37279
|
_this.model = model;
|
37280
|
+
_this.locale = _this.model.locale;
|
36739
37281
|
return _this;
|
36740
37282
|
}
|
36741
37283
|
PopupBaseViewModel.prototype.updateIsVisible = function (val) {
|
@@ -36971,12 +37513,20 @@ var PopupBaseViewModel = /** @class */ (function (_super) {
|
|
36971
37513
|
this.focusContainer();
|
36972
37514
|
}
|
36973
37515
|
};
|
37516
|
+
Object.defineProperty(PopupBaseViewModel.prototype, "isPositionSet", {
|
37517
|
+
get: function () {
|
37518
|
+
return this._isPositionSetValue;
|
37519
|
+
},
|
37520
|
+
enumerable: false,
|
37521
|
+
configurable: true
|
37522
|
+
});
|
36974
37523
|
PopupBaseViewModel.prototype.updateOnShowing = function () {
|
36975
37524
|
this.prevActiveElement = _settings__WEBPACK_IMPORTED_MODULE_4__["settings"].environment.root.activeElement;
|
36976
37525
|
if (this.isOverlay) {
|
36977
37526
|
this.resetDimensionsAndPositionStyleProperties();
|
36978
37527
|
}
|
36979
37528
|
this.switchFocus();
|
37529
|
+
this._isPositionSetValue = true;
|
36980
37530
|
};
|
36981
37531
|
PopupBaseViewModel.prototype.updateOnHiding = function () {
|
36982
37532
|
if (this.isFocusedContent && this.prevActiveElement) {
|
@@ -38149,8 +38699,7 @@ var Question = /** @class */ (function (_super) {
|
|
38149
38699
|
};
|
38150
38700
|
Question.prototype.runTriggers = function (name, value) {
|
38151
38701
|
var _this = this;
|
38152
|
-
if (this.
|
38153
|
-
(this.parentQuestion && this.parentQuestion.getValueName() === name))
|
38702
|
+
if (this.isSettingQuestionValue || (this.parentQuestion && this.parentQuestion.getValueName() === name))
|
38154
38703
|
return;
|
38155
38704
|
this.triggersInfo.forEach(function (info) {
|
38156
38705
|
_this.runTriggerInfo(info, name, value);
|
@@ -38244,10 +38793,11 @@ var Question = /** @class */ (function (_super) {
|
|
38244
38793
|
});
|
38245
38794
|
Question.prototype.getTitleOwner = function () { return this; };
|
38246
38795
|
Question.prototype.getIsTitleRenderedAsString = function () { return this.titleLocation === "hidden"; };
|
38796
|
+
Question.prototype.notifySurveyOnChildrenVisibilityChanged = function () { return false; };
|
38247
38797
|
Question.prototype.notifySurveyVisibilityChanged = function () {
|
38248
38798
|
if (!this.survey || this.isLoadingFromJson)
|
38249
38799
|
return;
|
38250
|
-
this.survey.questionVisibilityChanged(this, this.isVisible);
|
38800
|
+
this.survey.questionVisibilityChanged(this, this.isVisible, !this.parentQuestion || this.parentQuestion.notifySurveyOnChildrenVisibilityChanged());
|
38251
38801
|
var isClearOnHidden = this.isClearValueOnHidden;
|
38252
38802
|
if (!this.visible) {
|
38253
38803
|
this.clearValueOnHidding(isClearOnHidden);
|
@@ -38840,7 +39390,9 @@ var Question = /** @class */ (function (_super) {
|
|
38840
39390
|
Question.prototype.getRootCss = function () {
|
38841
39391
|
return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_10__["CssClassBuilder"]()
|
38842
39392
|
.append(this.cssRoot)
|
38843
|
-
.append(this.cssClasses.
|
39393
|
+
.append(this.cssClasses.readOnly, this.isReadOnlyStyle)
|
39394
|
+
.append(this.cssClasses.disabled, this.isDisabledStyle)
|
39395
|
+
.append(this.cssClasses.preview, this.isPreviewStyle)
|
38844
39396
|
.append(this.cssClasses.invisible, !this.isDesignMode && this.areInvisibleElementsShowing && !this.visible)
|
38845
39397
|
.toString();
|
38846
39398
|
};
|
@@ -39365,6 +39917,7 @@ var Question = /** @class */ (function (_super) {
|
|
39365
39917
|
configurable: true
|
39366
39918
|
});
|
39367
39919
|
Question.prototype.getFilteredValue = function () { return this.value; };
|
39920
|
+
Question.prototype.getFilteredName = function () { return this.getValueName(); };
|
39368
39921
|
Object.defineProperty(Question.prototype, "valueForSurvey", {
|
39369
39922
|
get: function () {
|
39370
39923
|
if (!!this.valueToDataCallback) {
|
@@ -39967,7 +40520,7 @@ var Question = /** @class */ (function (_super) {
|
|
39967
40520
|
};
|
39968
40521
|
Question.prototype.addConditionObjectsByContext = function (objects, context) {
|
39969
40522
|
objects.push({
|
39970
|
-
name: this.
|
40523
|
+
name: this.getFilteredName(),
|
39971
40524
|
text: this.processedTitle,
|
39972
40525
|
question: this,
|
39973
40526
|
});
|
@@ -43009,15 +43562,20 @@ var QuestionSelectBase = /** @class */ (function (_super) {
|
|
43009
43562
|
.append(this.cssClasses.itemInline, !this.hasColumns && this.colCount === 0)
|
43010
43563
|
.append("sv-q-col-" + this.getCurrentColCount(), !this.hasColumns && this.colCount !== 0)
|
43011
43564
|
.append(this.cssClasses.itemOnError, this.hasCssError());
|
43012
|
-
var
|
43565
|
+
var readOnlyStyles = this.getIsDisableAndReadOnlyStyles(!item.isEnabled);
|
43566
|
+
var isReadOnly = readOnlyStyles[0];
|
43567
|
+
var isDisabled = readOnlyStyles[1];
|
43013
43568
|
var isChecked = this.isItemSelected(item) ||
|
43014
43569
|
(this.isOtherSelected && this.otherItem.value === item.value);
|
43015
43570
|
var allowHover = !isDisabled && !isChecked && !(!!this.survey && this.survey.isDesignMode);
|
43016
43571
|
var isNone = item === this.noneItem;
|
43017
|
-
options.isDisabled = isDisabled;
|
43572
|
+
options.isDisabled = isDisabled || isReadOnly;
|
43018
43573
|
options.isChecked = isChecked;
|
43019
43574
|
options.isNone = isNone;
|
43020
|
-
return builder
|
43575
|
+
return builder
|
43576
|
+
.append(this.cssClasses.itemDisabled, isDisabled)
|
43577
|
+
.append(this.cssClasses.itemReadOnly, isReadOnly)
|
43578
|
+
.append(this.cssClasses.itemPreview, this.isPreviewStyle)
|
43021
43579
|
.append(this.cssClasses.itemChecked, isChecked)
|
43022
43580
|
.append(this.cssClasses.itemHover, allowHover)
|
43023
43581
|
.append(this.cssClasses.itemNone, isNone)
|
@@ -43180,6 +43738,9 @@ var QuestionSelectBase = /** @class */ (function (_super) {
|
|
43180
43738
|
};
|
43181
43739
|
Object.defineProperty(QuestionSelectBase.prototype, "itemSvgIcon", {
|
43182
43740
|
get: function () {
|
43741
|
+
if (this.isPreviewStyle && this.cssClasses.itemPreviewSvgIconId) {
|
43742
|
+
return this.cssClasses.itemPreviewSvgIconId;
|
43743
|
+
}
|
43183
43744
|
return this.cssClasses.itemSvgIconId;
|
43184
43745
|
},
|
43185
43746
|
enumerable: false,
|
@@ -43739,7 +44300,9 @@ var QuestionBooleanModel = /** @class */ (function (_super) {
|
|
43739
44300
|
return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_3__["CssClassBuilder"]()
|
43740
44301
|
.append(css.item)
|
43741
44302
|
.append(css.itemOnError, this.hasCssError())
|
43742
|
-
.append(css.itemDisabled, this.
|
44303
|
+
.append(css.itemDisabled, this.isDisabledStyle)
|
44304
|
+
.append(css.itemReadOnly, this.isReadOnlyStyle)
|
44305
|
+
.append(css.itemPreview, this.isPreviewStyle)
|
43743
44306
|
.append(css.itemHover, !this.isDesignMode)
|
43744
44307
|
.append(css.itemChecked, !!this.booleanValue)
|
43745
44308
|
.append(css.itemExchanged, !!this.swapOrder)
|
@@ -43754,6 +44317,9 @@ var QuestionBooleanModel = /** @class */ (function (_super) {
|
|
43754
44317
|
item: this.cssClasses.checkboxItem,
|
43755
44318
|
itemOnError: this.cssClasses.checkboxItemOnError,
|
43756
44319
|
itemDisabled: this.cssClasses.checkboxItemDisabled,
|
44320
|
+
itemDisable: this.cssClasses.checkboxItemDisabled,
|
44321
|
+
itemReadOnly: this.cssClasses.checkboxItemReadOnly,
|
44322
|
+
itemPreview: this.cssClasses.checkboxItemPreview,
|
43757
44323
|
itemChecked: this.cssClasses.checkboxItemChecked,
|
43758
44324
|
itemIndeterminate: this.cssClasses.checkboxItemIndeterminate
|
43759
44325
|
});
|
@@ -43761,7 +44327,9 @@ var QuestionBooleanModel = /** @class */ (function (_super) {
|
|
43761
44327
|
QuestionBooleanModel.prototype.getLabelCss = function (checked) {
|
43762
44328
|
return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_3__["CssClassBuilder"]()
|
43763
44329
|
.append(this.cssClasses.label)
|
43764
|
-
.append(this.cssClasses.disabledLabel, this.booleanValue === !checked || this.
|
44330
|
+
.append(this.cssClasses.disabledLabel, this.booleanValue === !checked || this.isDisabledStyle)
|
44331
|
+
.append(this.cssClasses.labelReadOnly, this.isReadOnlyStyle)
|
44332
|
+
.append(this.cssClasses.labelPreview, this.isPreviewStyle)
|
43765
44333
|
.append(this.cssClasses.labelTrue, !this.isIndeterminate && checked === !this.swapOrder)
|
43766
44334
|
.append(this.cssClasses.labelFalse, !this.isIndeterminate && checked === this.swapOrder)
|
43767
44335
|
.toString();
|
@@ -43779,6 +44347,16 @@ var QuestionBooleanModel = /** @class */ (function (_super) {
|
|
43779
44347
|
enumerable: false,
|
43780
44348
|
configurable: true
|
43781
44349
|
});
|
44350
|
+
Object.defineProperty(QuestionBooleanModel.prototype, "itemSvgIcon", {
|
44351
|
+
get: function () {
|
44352
|
+
if (this.isPreviewStyle && this.cssClasses.itemPreviewSvgIconId) {
|
44353
|
+
return this.cssClasses.itemPreviewSvgIconId;
|
44354
|
+
}
|
44355
|
+
return this.cssClasses.itemSvgIconId;
|
44356
|
+
},
|
44357
|
+
enumerable: false,
|
44358
|
+
configurable: true
|
44359
|
+
});
|
43782
44360
|
Object.defineProperty(QuestionBooleanModel.prototype, "allowClick", {
|
43783
44361
|
get: function () {
|
43784
44362
|
return this.isIndeterminate && !this.isInputReadOnly;
|
@@ -43844,6 +44422,15 @@ var QuestionBooleanModel = /** @class */ (function (_super) {
|
|
43844
44422
|
if (css.radioItemChecked && value === this.booleanValue) {
|
43845
44423
|
className = (className ? className + " " : "") + css.radioItemChecked;
|
43846
44424
|
}
|
44425
|
+
if (this.isDisabledStyle) {
|
44426
|
+
className += " " + css.radioItemDisabled;
|
44427
|
+
}
|
44428
|
+
if (this.isReadOnlyStyle) {
|
44429
|
+
className += " " + css.radioItemReadOnly;
|
44430
|
+
}
|
44431
|
+
if (this.isPreviewStyle) {
|
44432
|
+
className += " " + css.radioItemPreview;
|
44433
|
+
}
|
43847
44434
|
return className;
|
43848
44435
|
};
|
43849
44436
|
QuestionBooleanModel.prototype.supportResponsiveness = function () {
|
@@ -44484,6 +45071,13 @@ var QuestionCheckboxModel = /** @class */ (function (_super) {
|
|
44484
45071
|
enumerable: false,
|
44485
45072
|
configurable: true
|
44486
45073
|
});
|
45074
|
+
QuestionCheckboxModel.prototype.getFilteredName = function () {
|
45075
|
+
var res = _super.prototype.getFilteredName.call(this);
|
45076
|
+
if (this.hasFilteredValue) {
|
45077
|
+
res += "-unwrapped";
|
45078
|
+
}
|
45079
|
+
return res;
|
45080
|
+
};
|
44487
45081
|
QuestionCheckboxModel.prototype.getFilteredValue = function () {
|
44488
45082
|
if (this.hasFilteredValue)
|
44489
45083
|
return this.renderedValue;
|
@@ -45089,7 +45683,7 @@ var QuestionCommentModel = /** @class */ (function (_super) {
|
|
45089
45683
|
});
|
45090
45684
|
Object.defineProperty(QuestionCommentModel.prototype, "renderedAllowResize", {
|
45091
45685
|
get: function () {
|
45092
|
-
return this.allowResize && (this.survey && this.survey.allowResizeComment);
|
45686
|
+
return this.allowResize && (this.survey && this.survey.allowResizeComment) && !this.isPreviewStyle && !this.isReadOnlyStyle;
|
45093
45687
|
},
|
45094
45688
|
enumerable: false,
|
45095
45689
|
configurable: true
|
@@ -45207,6 +45801,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
45207
45801
|
/* harmony import */ var _textPreProcessor__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./textPreProcessor */ "./src/textPreProcessor.ts");
|
45208
45802
|
/* harmony import */ var _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./utils/cssClassBuilder */ "./src/utils/cssClassBuilder.ts");
|
45209
45803
|
/* harmony import */ var _error__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./error */ "./src/error.ts");
|
45804
|
+
/* harmony import */ var _console_warnings__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./console-warnings */ "./src/console-warnings.ts");
|
45210
45805
|
var __extends = (undefined && undefined.__extends) || (function () {
|
45211
45806
|
var extendStatics = function (d, b) {
|
45212
45807
|
extendStatics = Object.setPrototypeOf ||
|
@@ -45229,6 +45824,7 @@ var __extends = (undefined && undefined.__extends) || (function () {
|
|
45229
45824
|
|
45230
45825
|
|
45231
45826
|
|
45827
|
+
|
45232
45828
|
var ComponentQuestionJSON = /** @class */ (function () {
|
45233
45829
|
function ComponentQuestionJSON(name, json) {
|
45234
45830
|
this.name = name;
|
@@ -45820,15 +46416,15 @@ var QuestionCustomModel = /** @class */ (function (_super) {
|
|
45820
46416
|
if (!qType || !_jsonobject__WEBPACK_IMPORTED_MODULE_1__["Serializer"].findClass(qType))
|
45821
46417
|
throw "type attribute in questionJSON is empty or incorrect";
|
45822
46418
|
res = _jsonobject__WEBPACK_IMPORTED_MODULE_1__["Serializer"].createClass(qType);
|
45823
|
-
this.initElement(res);
|
45824
46419
|
res.fromJSON(json.questionJSON);
|
46420
|
+
res = this.checkCreatedQuestion(res);
|
45825
46421
|
}
|
45826
46422
|
else {
|
45827
46423
|
if (!!json.createQuestion) {
|
45828
|
-
res = json.createQuestion();
|
45829
|
-
this.initElement(res);
|
46424
|
+
res = this.checkCreatedQuestion(json.createQuestion());
|
45830
46425
|
}
|
45831
46426
|
}
|
46427
|
+
this.initElement(res);
|
45832
46428
|
if (!!res) {
|
45833
46429
|
res.isContentElement = true;
|
45834
46430
|
if (!res.name) {
|
@@ -45842,6 +46438,20 @@ var QuestionCustomModel = /** @class */ (function (_super) {
|
|
45842
46438
|
}
|
45843
46439
|
return res;
|
45844
46440
|
};
|
46441
|
+
QuestionCustomModel.prototype.checkCreatedQuestion = function (res) {
|
46442
|
+
if (!res)
|
46443
|
+
return res;
|
46444
|
+
if (!res.isQuestion) {
|
46445
|
+
if (Array.isArray(res.questions) && res.questions.length > 0) {
|
46446
|
+
res = res.questions[0];
|
46447
|
+
}
|
46448
|
+
else {
|
46449
|
+
res = _jsonobject__WEBPACK_IMPORTED_MODULE_1__["Serializer"].createClass("text");
|
46450
|
+
}
|
46451
|
+
_console_warnings__WEBPACK_IMPORTED_MODULE_7__["ConsoleWarnings"].error("Could not create component: '" + this.getType() + "'. questionJSON should be a question.");
|
46452
|
+
}
|
46453
|
+
return res;
|
46454
|
+
};
|
45845
46455
|
QuestionCustomModel.prototype.onSurveyLoad = function () {
|
45846
46456
|
_super.prototype.onSurveyLoad.call(this);
|
45847
46457
|
if (!this.contentQuestion)
|
@@ -46549,7 +47159,9 @@ var QuestionDropdownModel = /** @class */ (function (_super) {
|
|
46549
47159
|
.append(this.cssClasses.control)
|
46550
47160
|
.append(this.cssClasses.controlEmpty, this.isEmpty())
|
46551
47161
|
.append(this.cssClasses.onError, this.hasCssError())
|
46552
|
-
.append(this.cssClasses.controlDisabled, this.
|
47162
|
+
.append(this.cssClasses.controlDisabled, this.isDisabledStyle)
|
47163
|
+
.append(this.cssClasses.controlReadOnly, this.isReadOnlyStyle)
|
47164
|
+
.append(this.cssClasses.controlPreview, this.isPreviewStyle)
|
46553
47165
|
.append(this.cssClasses.controlInputFieldComponent, !!this.inputFieldComponentName)
|
46554
47166
|
.toString();
|
46555
47167
|
};
|
@@ -48389,6 +49001,9 @@ var QuestionFileModel = /** @class */ (function (_super) {
|
|
48389
49001
|
get: function () {
|
48390
49002
|
return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_5__["CssClassBuilder"]()
|
48391
49003
|
.append(this.cssClasses.root)
|
49004
|
+
.append(this.cssClasses.rootDisabled, this.isDisabledStyle)
|
49005
|
+
.append(this.cssClasses.rootReadOnly, this.isReadOnlyStyle)
|
49006
|
+
.append(this.cssClasses.rootPreview, this.isPreviewStyle)
|
48392
49007
|
.append(this.cssClasses.rootDragging, this.isDragging)
|
48393
49008
|
.append(this.cssClasses.rootAnswered, this.isAnswered)
|
48394
49009
|
.append(this.cssClasses.single, !this.allowMultiple)
|
@@ -49879,7 +50494,8 @@ var MatrixRowModel = /** @class */ (function (_super) {
|
|
49879
50494
|
var cssClasses = this.data.cssClasses;
|
49880
50495
|
return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_11__["CssClassBuilder"]().append(cssClasses.row)
|
49881
50496
|
.append(cssClasses.rowError, this.data.hasErrorInRow(this))
|
49882
|
-
.append(cssClasses.
|
50497
|
+
.append(cssClasses.rowReadOnly, this.isReadOnly)
|
50498
|
+
.append(cssClasses.rowDisabled, this.data.isDisabledStyle)
|
49883
50499
|
.toString();
|
49884
50500
|
},
|
49885
50501
|
enumerable: false,
|
@@ -50205,12 +50821,17 @@ var QuestionMatrixModel = /** @class */ (function (_super) {
|
|
50205
50821
|
.append(hasCellText ? css.cellText : css.label)
|
50206
50822
|
.append(css.itemOnError, !hasCellText && (this.isAllRowRequired ? this.hasErrorInRow(row) : this.hasCssError()))
|
50207
50823
|
.append(hasCellText ? css.cellTextSelected : css.itemChecked, isChecked)
|
50208
|
-
.append(hasCellText ? css.cellTextDisabled : css.itemDisabled,
|
50824
|
+
.append(hasCellText ? css.cellTextDisabled : css.itemDisabled, this.isDisabledStyle)
|
50825
|
+
.append(hasCellText ? css.cellTextReadOnly : css.itemReadOnly, this.isReadOnlyStyle)
|
50826
|
+
.append(hasCellText ? css.cellTextPreview : css.itemPreview, this.isPreviewStyle)
|
50209
50827
|
.append(css.itemHover, allowHover && !hasCellText)
|
50210
50828
|
.toString();
|
50211
50829
|
};
|
50212
50830
|
Object.defineProperty(QuestionMatrixModel.prototype, "itemSvgIcon", {
|
50213
50831
|
get: function () {
|
50832
|
+
if (this.isPreviewStyle && this.cssClasses.itemPreviewSvgIconId) {
|
50833
|
+
return this.cssClasses.itemPreviewSvgIconId;
|
50834
|
+
}
|
50214
50835
|
return this.cssClasses.itemSvgIconId;
|
50215
50836
|
},
|
50216
50837
|
enumerable: false,
|
@@ -54676,6 +55297,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
54676
55297
|
/* harmony import */ var _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./utils/cssClassBuilder */ "./src/utils/cssClassBuilder.ts");
|
54677
55298
|
/* harmony import */ var _actions_container__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./actions/container */ "./src/actions/container.ts");
|
54678
55299
|
/* harmony import */ var _settings__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./settings */ "./src/settings.ts");
|
55300
|
+
/* harmony import */ var _utils_animation__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./utils/animation */ "./src/utils/animation.ts");
|
54679
55301
|
var __extends = (undefined && undefined.__extends) || (function () {
|
54680
55302
|
var extendStatics = function (d, b) {
|
54681
55303
|
extendStatics = Object.setPrototypeOf ||
|
@@ -54710,6 +55332,7 @@ var __spreadArray = (undefined && undefined.__spreadArray) || function (to, from
|
|
54710
55332
|
|
54711
55333
|
|
54712
55334
|
|
55335
|
+
|
54713
55336
|
var QuestionMatrixDropdownRenderedCell = /** @class */ (function () {
|
54714
55337
|
function QuestionMatrixDropdownRenderedCell() {
|
54715
55338
|
this.minWidth = "";
|
@@ -54934,6 +55557,12 @@ var QuestionMatrixDropdownRenderedRow = /** @class */ (function (_super) {
|
|
54934
55557
|
enumerable: false,
|
54935
55558
|
configurable: true
|
54936
55559
|
});
|
55560
|
+
QuestionMatrixDropdownRenderedRow.prototype.setRootElement = function (val) {
|
55561
|
+
this.rootElement = val;
|
55562
|
+
};
|
55563
|
+
QuestionMatrixDropdownRenderedRow.prototype.getRootElement = function () {
|
55564
|
+
return this.rootElement;
|
55565
|
+
};
|
54937
55566
|
QuestionMatrixDropdownRenderedRow.counter = 1;
|
54938
55567
|
__decorate([
|
54939
55568
|
Object(_jsonobject__WEBPACK_IMPORTED_MODULE_0__["property"])({ defaultValue: false })
|
@@ -54992,10 +55621,53 @@ var QuestionMatrixDropdownRenderedTable = /** @class */ (function (_super) {
|
|
54992
55621
|
var _this = _super.call(this) || this;
|
54993
55622
|
_this.matrix = matrix;
|
54994
55623
|
_this.renderedRowsChangedCallback = function () { };
|
55624
|
+
_this._renderedRows = [];
|
55625
|
+
_this.renderedRowsAnimation = new _utils_animation__WEBPACK_IMPORTED_MODULE_8__["AnimationGroup"](_this.getRenderedRowsAnimationOptions(), function (val) {
|
55626
|
+
_this._renderedRows = val;
|
55627
|
+
_this.renderedRowsChangedCallback();
|
55628
|
+
}, function () { return _this._renderedRows; });
|
54995
55629
|
_this.hasActionCellInRowsValues = {};
|
54996
55630
|
_this.build();
|
54997
55631
|
return _this;
|
54998
55632
|
}
|
55633
|
+
QuestionMatrixDropdownRenderedTable.prototype.getIsAnimationAllowed = function () {
|
55634
|
+
return _super.prototype.getIsAnimationAllowed.call(this) && this.matrix.animationAllowed;
|
55635
|
+
};
|
55636
|
+
QuestionMatrixDropdownRenderedTable.prototype.getRenderedRowsAnimationOptions = function () {
|
55637
|
+
var _this = this;
|
55638
|
+
var beforeAnimationRun = function (el) {
|
55639
|
+
el.querySelectorAll(":scope > td > *").forEach(function (el) {
|
55640
|
+
el.style.setProperty("--animation-height", el.offsetHeight + "px");
|
55641
|
+
});
|
55642
|
+
};
|
55643
|
+
return {
|
55644
|
+
isAnimationEnabled: function () {
|
55645
|
+
return _this.animationAllowed;
|
55646
|
+
},
|
55647
|
+
getAnimatedElement: function (el) {
|
55648
|
+
return el.getRootElement();
|
55649
|
+
},
|
55650
|
+
getLeaveOptions: function () {
|
55651
|
+
return { cssClass: _this.cssClasses.rowFadeOut, onBeforeRunAnimation: beforeAnimationRun };
|
55652
|
+
},
|
55653
|
+
getEnterOptions: function () {
|
55654
|
+
return { cssClass: _this.cssClasses.rowFadeIn, onBeforeRunAnimation: beforeAnimationRun };
|
55655
|
+
}
|
55656
|
+
};
|
55657
|
+
};
|
55658
|
+
QuestionMatrixDropdownRenderedTable.prototype.updateRenderedRows = function () {
|
55659
|
+
this.renderedRows = this.rows;
|
55660
|
+
};
|
55661
|
+
Object.defineProperty(QuestionMatrixDropdownRenderedTable.prototype, "renderedRows", {
|
55662
|
+
get: function () {
|
55663
|
+
return this._renderedRows;
|
55664
|
+
},
|
55665
|
+
set: function (val) {
|
55666
|
+
this.renderedRowsAnimation.sync(val);
|
55667
|
+
},
|
55668
|
+
enumerable: false,
|
55669
|
+
configurable: true
|
55670
|
+
});
|
54999
55671
|
Object.defineProperty(QuestionMatrixDropdownRenderedTable.prototype, "showTable", {
|
55000
55672
|
get: function () {
|
55001
55673
|
return this.getPropertyValue("showTable", true);
|
@@ -55310,10 +55982,12 @@ var QuestionMatrixDropdownRenderedTable = /** @class */ (function (_super) {
|
|
55310
55982
|
}
|
55311
55983
|
};
|
55312
55984
|
QuestionMatrixDropdownRenderedTable.prototype.buildRows = function () {
|
55985
|
+
this.blockAnimations();
|
55313
55986
|
var rows = this.matrix.isColumnLayoutHorizontal
|
55314
55987
|
? this.buildHorizontalRows()
|
55315
55988
|
: this.buildVerticalRows();
|
55316
55989
|
this.rows = rows;
|
55990
|
+
this.releaseAnimations();
|
55317
55991
|
};
|
55318
55992
|
QuestionMatrixDropdownRenderedTable.prototype.hasActionCellInRows = function (location) {
|
55319
55993
|
if (this.hasActionCellInRowsValues[location] === undefined) {
|
@@ -55372,6 +56046,7 @@ var QuestionMatrixDropdownRenderedTable = /** @class */ (function (_super) {
|
|
55372
56046
|
var cell = new QuestionMatrixDropdownRenderedCell();
|
55373
56047
|
var lockedRows = this.matrix.lockedRowCount;
|
55374
56048
|
cell.isDragHandlerCell = lockedRows < 1 || rowIndex >= lockedRows;
|
56049
|
+
cell.isEmpty = !cell.isDragHandlerCell;
|
55375
56050
|
cell.className = this.getActionsCellClassName(cell);
|
55376
56051
|
cell.row = this.matrix.visibleRows[rowIndex];
|
55377
56052
|
return cell;
|
@@ -55830,9 +56505,16 @@ var QuestionMatrixDropdownRenderedTable = /** @class */ (function (_super) {
|
|
55830
56505
|
Object(_jsonobject__WEBPACK_IMPORTED_MODULE_0__["propertyArray"])({
|
55831
56506
|
onPush: function (_, i, target) {
|
55832
56507
|
target.renderedRowsChangedCallback();
|
56508
|
+
target.updateRenderedRows();
|
55833
56509
|
},
|
56510
|
+
onRemove: function (_, i, target) {
|
56511
|
+
target.updateRenderedRows();
|
56512
|
+
}
|
55834
56513
|
})
|
55835
56514
|
], QuestionMatrixDropdownRenderedTable.prototype, "rows", void 0);
|
56515
|
+
__decorate([
|
56516
|
+
Object(_jsonobject__WEBPACK_IMPORTED_MODULE_0__["propertyArray"])()
|
56517
|
+
], QuestionMatrixDropdownRenderedTable.prototype, "_renderedRows", void 0);
|
55836
56518
|
return QuestionMatrixDropdownRenderedTable;
|
55837
56519
|
}(_base__WEBPACK_IMPORTED_MODULE_1__["Base"]));
|
55838
56520
|
|
@@ -58024,6 +58706,9 @@ var QuestionMultipleTextModel = /** @class */ (function (_super) {
|
|
58024
58706
|
QuestionMultipleTextModel.prototype.getItemLabelCss = function (item) {
|
58025
58707
|
return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_7__["CssClassBuilder"]()
|
58026
58708
|
.append(this.cssClasses.itemLabel)
|
58709
|
+
.append(this.cssClasses.itemLabelDisabled, this.isDisabledStyle)
|
58710
|
+
.append(this.cssClasses.itemLabelReadOnly, this.isReadOnlyStyle)
|
58711
|
+
.append(this.cssClasses.itemLabelPreview, this.isPreviewStyle)
|
58027
58712
|
.append(this.cssClasses.itemLabelAnswered, item.editor.isAnswered)
|
58028
58713
|
.append(this.cssClasses.itemLabelAllowFocus, !this.isDesignMode)
|
58029
58714
|
.append(this.cssClasses.itemLabelOnError, item.editor.errors.length > 0)
|
@@ -58227,6 +58912,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
58227
58912
|
/* harmony import */ var _actions_action__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./actions/action */ "./src/actions/action.ts");
|
58228
58913
|
/* harmony import */ var _base__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./base */ "./src/base.ts");
|
58229
58914
|
/* harmony import */ var _actions_adaptive_container__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./actions/adaptive-container */ "./src/actions/adaptive-container.ts");
|
58915
|
+
/* harmony import */ var _utils_animation__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./utils/animation */ "./src/utils/animation.ts");
|
58230
58916
|
var __extends = (undefined && undefined.__extends) || (function () {
|
58231
58917
|
var extendStatics = function (d, b) {
|
58232
58918
|
extendStatics = Object.setPrototypeOf ||
|
@@ -58267,6 +58953,7 @@ var __spreadArray = (undefined && undefined.__spreadArray) || function (to, from
|
|
58267
58953
|
|
58268
58954
|
|
58269
58955
|
|
58956
|
+
|
58270
58957
|
var QuestionPanelDynamicItemTextProcessor = /** @class */ (function (_super) {
|
58271
58958
|
__extends(QuestionPanelDynamicItemTextProcessor, _super);
|
58272
58959
|
function QuestionPanelDynamicItemTextProcessor(data, panelItem, variableName) {
|
@@ -58490,6 +59177,8 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
|
|
58490
59177
|
__extends(QuestionPanelDynamicModel, _super);
|
58491
59178
|
function QuestionPanelDynamicModel(name) {
|
58492
59179
|
var _this = _super.call(this, name) || this;
|
59180
|
+
_this._renderedPanels = [];
|
59181
|
+
_this.isPanelsAnimationRunning = false;
|
58493
59182
|
_this.isAddingNewPanels = false;
|
58494
59183
|
_this.isSetPanelItemData = {};
|
58495
59184
|
_this.createNewArray("panels", function (panel) { _this.onPanelAdded(panel); }, function (panel) { _this.onPanelRemoved(panel); });
|
@@ -58815,6 +59504,7 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
|
|
58815
59504
|
if (!this.currentPanel) {
|
58816
59505
|
this.currentPanel = panel;
|
58817
59506
|
}
|
59507
|
+
this.updateRenderedPanels();
|
58818
59508
|
};
|
58819
59509
|
QuestionPanelDynamicModel.prototype.onPanelRemoved = function (panel) {
|
58820
59510
|
var index = this.onPanelRemovedCore(panel);
|
@@ -58824,6 +59514,7 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
|
|
58824
59514
|
index = visPanels.length - 1;
|
58825
59515
|
this.currentPanel = index >= 0 ? visPanels[index] : null;
|
58826
59516
|
}
|
59517
|
+
this.updateRenderedPanels();
|
58827
59518
|
};
|
58828
59519
|
QuestionPanelDynamicModel.prototype.onPanelRemovedCore = function (panel) {
|
58829
59520
|
var visPanels = this.visiblePanelsCore;
|
@@ -58894,6 +59585,7 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
|
|
58894
59585
|
curPanel.onHidingContent();
|
58895
59586
|
}
|
58896
59587
|
this.setPropertyValue("currentPanel", val);
|
59588
|
+
this.updateRenderedPanels();
|
58897
59589
|
this.updateFooterActions();
|
58898
59590
|
this.updateTabToolbarItemsPressedState();
|
58899
59591
|
this.fireCallback(this.currentIndexChangedCallback);
|
@@ -58908,6 +59600,123 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
|
|
58908
59600
|
enumerable: false,
|
58909
59601
|
configurable: true
|
58910
59602
|
});
|
59603
|
+
QuestionPanelDynamicModel.prototype.updateRenderedPanels = function () {
|
59604
|
+
if (this.isRenderModeList) {
|
59605
|
+
this.renderedPanels = [].concat(this.visiblePanels);
|
59606
|
+
}
|
59607
|
+
else if (this.currentPanel) {
|
59608
|
+
this.renderedPanels = [this.currentPanel];
|
59609
|
+
}
|
59610
|
+
else {
|
59611
|
+
this.renderedPanels = [];
|
59612
|
+
}
|
59613
|
+
};
|
59614
|
+
Object.defineProperty(QuestionPanelDynamicModel.prototype, "renderedPanels", {
|
59615
|
+
get: function () {
|
59616
|
+
return this._renderedPanels;
|
59617
|
+
},
|
59618
|
+
set: function (val) {
|
59619
|
+
if (this.renderedPanels.length == 0 || val.length == 0) {
|
59620
|
+
this.blockAnimations();
|
59621
|
+
this.panelsAnimation.sync(val);
|
59622
|
+
this.releaseAnimations();
|
59623
|
+
}
|
59624
|
+
else {
|
59625
|
+
this.isPanelsAnimationRunning = true;
|
59626
|
+
this.panelsAnimation.sync(val);
|
59627
|
+
}
|
59628
|
+
},
|
59629
|
+
enumerable: false,
|
59630
|
+
configurable: true
|
59631
|
+
});
|
59632
|
+
QuestionPanelDynamicModel.prototype.getPanelsAnimationOptions = function () {
|
59633
|
+
var _this = this;
|
59634
|
+
var getDirection = function () {
|
59635
|
+
if (_this.isRenderModeList)
|
59636
|
+
return "";
|
59637
|
+
var leavingPanel = _this.renderedPanels.filter(function (el) { return el !== _this.currentPanel; })[0];
|
59638
|
+
var leavingPanelIndex = _this.visiblePanels.indexOf(leavingPanel);
|
59639
|
+
if (leavingPanelIndex < 0)
|
59640
|
+
leavingPanelIndex = _this.removedPanelIndex;
|
59641
|
+
return leavingPanelIndex > _this.currentIndex ? "-right" : "-left";
|
59642
|
+
};
|
59643
|
+
return {
|
59644
|
+
getAnimatedElement: function (panel) {
|
59645
|
+
var _a, _b;
|
59646
|
+
if (panel && _this.cssContent) {
|
59647
|
+
var contentSelector = Object(_utils_utils__WEBPACK_IMPORTED_MODULE_9__["classesToSelector"])(_this.cssContent);
|
59648
|
+
return (_b = (_a = _this.getWrapperElement()) === null || _a === void 0 ? void 0 : _a.querySelector(":scope " + contentSelector + " #" + panel.id)) === null || _b === void 0 ? void 0 : _b.parentElement;
|
59649
|
+
}
|
59650
|
+
},
|
59651
|
+
getEnterOptions: function () {
|
59652
|
+
var cssClass = _this.cssClasses.panelWrapperFadeIn ? "" + _this.cssClasses.panelWrapperFadeIn + getDirection() : "";
|
59653
|
+
return {
|
59654
|
+
onBeforeRunAnimation: function (el) {
|
59655
|
+
var _a;
|
59656
|
+
if (_this.focusNewPanelCallback) {
|
59657
|
+
var scolledElement = _this.isRenderModeList ? el : el.parentElement;
|
59658
|
+
_survey_element__WEBPACK_IMPORTED_MODULE_1__["SurveyElement"].ScrollElementToViewCore(scolledElement, false, false, { behavior: "smooth" });
|
59659
|
+
}
|
59660
|
+
if (!_this.isRenderModeList) {
|
59661
|
+
(_a = el.parentElement) === null || _a === void 0 ? void 0 : _a.style.setProperty("--animation-height-to", el.offsetHeight + "px");
|
59662
|
+
}
|
59663
|
+
else {
|
59664
|
+
el.style.setProperty("--animation-height", el.offsetHeight + "px");
|
59665
|
+
}
|
59666
|
+
},
|
59667
|
+
cssClass: cssClass
|
59668
|
+
};
|
59669
|
+
},
|
59670
|
+
getLeaveOptions: function () {
|
59671
|
+
var cssClass = _this.cssClasses.panelWrapperFadeOut ? "" + _this.cssClasses.panelWrapperFadeOut + getDirection() : "";
|
59672
|
+
return {
|
59673
|
+
onBeforeRunAnimation: function (el) {
|
59674
|
+
var _a;
|
59675
|
+
if (!_this.isRenderModeList) {
|
59676
|
+
(_a = el.parentElement) === null || _a === void 0 ? void 0 : _a.style.setProperty("--animation-height-from", el.offsetHeight + "px");
|
59677
|
+
}
|
59678
|
+
else {
|
59679
|
+
el.style.setProperty("--animation-height", el.offsetHeight + "px");
|
59680
|
+
}
|
59681
|
+
},
|
59682
|
+
cssClass: cssClass
|
59683
|
+
};
|
59684
|
+
},
|
59685
|
+
isAnimationEnabled: function () {
|
59686
|
+
return _this.animationAllowed && !!_this.getWrapperElement();
|
59687
|
+
},
|
59688
|
+
};
|
59689
|
+
};
|
59690
|
+
QuestionPanelDynamicModel.prototype.disablePanelsAnimations = function () {
|
59691
|
+
this.panelsCore.forEach(function (panel) {
|
59692
|
+
panel.blockAnimations();
|
59693
|
+
});
|
59694
|
+
};
|
59695
|
+
QuestionPanelDynamicModel.prototype.enablePanelsAnimations = function () {
|
59696
|
+
this.panelsCore.forEach(function (panel) {
|
59697
|
+
panel.releaseAnimations();
|
59698
|
+
});
|
59699
|
+
};
|
59700
|
+
QuestionPanelDynamicModel.prototype.updatePanelsAnimation = function () {
|
59701
|
+
var _this = this;
|
59702
|
+
this._panelsAnimations = new (this.isRenderModeList ? _utils_animation__WEBPACK_IMPORTED_MODULE_14__["AnimationGroup"] : _utils_animation__WEBPACK_IMPORTED_MODULE_14__["AnimationTab"])(this.getPanelsAnimationOptions(), function (val, isTempUpdate) {
|
59703
|
+
_this._renderedPanels = val;
|
59704
|
+
if (!isTempUpdate) {
|
59705
|
+
_this.isPanelsAnimationRunning = false;
|
59706
|
+
_this.focusNewPanel();
|
59707
|
+
}
|
59708
|
+
}, function () { return _this._renderedPanels; });
|
59709
|
+
};
|
59710
|
+
Object.defineProperty(QuestionPanelDynamicModel.prototype, "panelsAnimation", {
|
59711
|
+
get: function () {
|
59712
|
+
if (!this._panelsAnimations) {
|
59713
|
+
this.updatePanelsAnimation();
|
59714
|
+
}
|
59715
|
+
return this._panelsAnimations;
|
59716
|
+
},
|
59717
|
+
enumerable: false,
|
59718
|
+
configurable: true
|
59719
|
+
});
|
58911
59720
|
QuestionPanelDynamicModel.prototype.onHidingContent = function () {
|
58912
59721
|
_super.prototype.onHidingContent.call(this);
|
58913
59722
|
if (this.currentPanel) {
|
@@ -59222,11 +60031,13 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
|
|
59222
60031
|
if (val < this.panelCount) {
|
59223
60032
|
this.panelsCore.splice(val, this.panelCount - val);
|
59224
60033
|
}
|
60034
|
+
this.disablePanelsAnimations();
|
59225
60035
|
this.setValueAfterPanelsCreating();
|
59226
60036
|
this.setValueBasedOnPanelCount();
|
59227
60037
|
this.reRunCondition();
|
59228
60038
|
this.updateFooterActions();
|
59229
60039
|
this.fireCallback(this.panelCountChangedCallback);
|
60040
|
+
this.enablePanelsAnimations();
|
59230
60041
|
},
|
59231
60042
|
enumerable: false,
|
59232
60043
|
configurable: true
|
@@ -59461,12 +60272,13 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
|
|
59461
60272
|
set: function (val) {
|
59462
60273
|
this.setPropertyValue("showQuestionNumbers", val);
|
59463
60274
|
if (!this.isLoadingFromJson && this.survey) {
|
59464
|
-
this.survey.questionVisibilityChanged(this, this.visible);
|
60275
|
+
this.survey.questionVisibilityChanged(this, this.visible, true);
|
59465
60276
|
}
|
59466
60277
|
},
|
59467
60278
|
enumerable: false,
|
59468
60279
|
configurable: true
|
59469
60280
|
});
|
60281
|
+
QuestionPanelDynamicModel.prototype.notifySurveyOnChildrenVisibilityChanged = function () { return this.showQuestionNumbers === "onSurvey"; };
|
59470
60282
|
Object.defineProperty(QuestionPanelDynamicModel.prototype, "panelRemoveButtonLocation", {
|
59471
60283
|
/**
|
59472
60284
|
* Specifies the location of the Delete Panel button relative to panel content.
|
@@ -59520,6 +60332,10 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
|
|
59520
60332
|
set: function (val) {
|
59521
60333
|
this.setPropertyValue("renderMode", val);
|
59522
60334
|
this.fireCallback(this.renderModeChangedCallback);
|
60335
|
+
this.blockAnimations();
|
60336
|
+
this.updateRenderedPanels();
|
60337
|
+
this.releaseAnimations();
|
60338
|
+
this.updatePanelsAnimation();
|
59523
60339
|
},
|
59524
60340
|
enumerable: false,
|
59525
60341
|
configurable: true
|
@@ -59566,15 +60382,16 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
|
|
59566
60382
|
QuestionPanelDynamicModel.prototype.setVisibleIndex = function (value) {
|
59567
60383
|
if (!this.isVisible)
|
59568
60384
|
return 0;
|
59569
|
-
var
|
60385
|
+
var onSurveyNumbering = this.showQuestionNumbers === "onSurvey";
|
60386
|
+
var startIndex = onSurveyNumbering ? value : 0;
|
59570
60387
|
for (var i = 0; i < this.visiblePanelsCore.length; i++) {
|
59571
60388
|
var counter = this.setPanelVisibleIndex(this.visiblePanelsCore[i], startIndex, this.showQuestionNumbers != "off");
|
59572
|
-
if (
|
60389
|
+
if (onSurveyNumbering) {
|
59573
60390
|
startIndex += counter;
|
59574
60391
|
}
|
59575
60392
|
}
|
59576
|
-
_super.prototype.setVisibleIndex.call(this,
|
59577
|
-
return
|
60393
|
+
_super.prototype.setVisibleIndex.call(this, !onSurveyNumbering ? value : -1);
|
60394
|
+
return !onSurveyNumbering ? 1 : startIndex - value;
|
59578
60395
|
};
|
59579
60396
|
QuestionPanelDynamicModel.prototype.setPanelVisibleIndex = function (panel, index, showIndex) {
|
59580
60397
|
if (!showIndex) {
|
@@ -59752,9 +60569,20 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
|
|
59752
60569
|
if (this.renderMode === "list" && this.panelsState !== "default") {
|
59753
60570
|
newPanel.expand();
|
59754
60571
|
}
|
59755
|
-
|
60572
|
+
this.focusNewPanelCallback = function () {
|
60573
|
+
newPanel.focusFirstQuestion();
|
60574
|
+
};
|
60575
|
+
if (!this.isPanelsAnimationRunning) {
|
60576
|
+
this.focusNewPanel();
|
60577
|
+
}
|
59756
60578
|
return newPanel;
|
59757
60579
|
};
|
60580
|
+
QuestionPanelDynamicModel.prototype.focusNewPanel = function () {
|
60581
|
+
if (this.focusNewPanelCallback) {
|
60582
|
+
this.focusNewPanelCallback();
|
60583
|
+
this.focusNewPanelCallback = undefined;
|
60584
|
+
}
|
60585
|
+
};
|
59758
60586
|
/**
|
59759
60587
|
* Adds a new panel based on the [template](https://surveyjs.io/form-library/documentation/api-reference/dynamic-panel-model#template).
|
59760
60588
|
* @param index *(Optional)* An index at which to insert the new panel. `undefined` adds the panel to the end or inserts it after the current panel if [`renderMode`](https://surveyjs.io/form-library/documentation/api-reference/dynamic-panel-model#renderMode) is `"tab"`. A negative index (for instance, -1) adds the panel to the end in all cases, regardless of the `renderMode` value.
|
@@ -59863,16 +60691,11 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
|
|
59863
60691
|
return;
|
59864
60692
|
this.currentIndex--;
|
59865
60693
|
};
|
59866
|
-
/**
|
59867
|
-
* Removes a dynamic panel from the panels array.
|
59868
|
-
* @param value a panel or panel index
|
59869
|
-
* @see panels
|
59870
|
-
* @see template
|
59871
|
-
*/
|
59872
60694
|
QuestionPanelDynamicModel.prototype.removePanel = function (value) {
|
59873
60695
|
var visIndex = this.getVisualPanelIndex(value);
|
59874
60696
|
if (visIndex < 0 || visIndex >= this.visiblePanelCount)
|
59875
60697
|
return;
|
60698
|
+
this.removedPanelIndex = visIndex;
|
59876
60699
|
var panel = this.visiblePanelsCore[visIndex];
|
59877
60700
|
var index = this.panelsCore.indexOf(panel);
|
59878
60701
|
if (index < 0)
|
@@ -60063,6 +60886,7 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
|
|
60063
60886
|
return;
|
60064
60887
|
if (!force && this.wasNotRenderedInSurvey)
|
60065
60888
|
return;
|
60889
|
+
this.blockAnimations();
|
60066
60890
|
this.hasPanelBuildFirstTime = true;
|
60067
60891
|
this.isBuildingPanelsFirstTime = true;
|
60068
60892
|
if (this.getPropertyValue("panelCount") > 0) {
|
@@ -60085,6 +60909,7 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
|
|
60085
60909
|
}
|
60086
60910
|
this.updateFooterActions();
|
60087
60911
|
this.isBuildingPanelsFirstTime = false;
|
60912
|
+
this.releaseAnimations();
|
60088
60913
|
};
|
60089
60914
|
Object.defineProperty(QuestionPanelDynamicModel.prototype, "wasNotRenderedInSurvey", {
|
60090
60915
|
get: function () {
|
@@ -60630,7 +61455,7 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
|
|
60630
61455
|
};
|
60631
61456
|
Object.defineProperty(QuestionPanelDynamicModel.prototype, "cssHeader", {
|
60632
61457
|
get: function () {
|
60633
|
-
var showTab = this.isRenderModeTab && !!this.
|
61458
|
+
var showTab = this.isRenderModeTab && !!this.visiblePanelCount;
|
60634
61459
|
return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_10__["CssClassBuilder"]()
|
60635
61460
|
.append(this.cssClasses.header)
|
60636
61461
|
.append(this.cssClasses.headerTop, this.hasTitleOnTop || showTab)
|
@@ -60643,6 +61468,7 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
|
|
60643
61468
|
QuestionPanelDynamicModel.prototype.getPanelWrapperCss = function (panel) {
|
60644
61469
|
return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_10__["CssClassBuilder"]()
|
60645
61470
|
.append(this.cssClasses.panelWrapper, !panel || panel.visible)
|
61471
|
+
.append(this.cssClasses.panelWrapperList, this.isRenderModeList)
|
60646
61472
|
.append(this.cssClasses.panelWrapperInRow, this.panelRemoveButtonLocation === "right")
|
60647
61473
|
.toString();
|
60648
61474
|
};
|
@@ -60701,6 +61527,13 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
|
|
60701
61527
|
return true;
|
60702
61528
|
return false;
|
60703
61529
|
};
|
61530
|
+
Object.defineProperty(QuestionPanelDynamicModel.prototype, "hasAdditionalTitleToolbar", {
|
61531
|
+
get: function () {
|
61532
|
+
return this.isRenderModeTab && this.visiblePanels.length > 0;
|
61533
|
+
},
|
61534
|
+
enumerable: false,
|
61535
|
+
configurable: true
|
61536
|
+
});
|
60704
61537
|
QuestionPanelDynamicModel.prototype.getAdditionalTitleToolbar = function () {
|
60705
61538
|
if (!this.isRenderModeTab)
|
60706
61539
|
return null;
|
@@ -60881,13 +61714,15 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
|
|
60881
61714
|
});
|
60882
61715
|
Object.defineProperty(QuestionPanelDynamicModel.prototype, "showNavigation", {
|
60883
61716
|
get: function () {
|
61717
|
+
if (this.isReadOnly && this.visiblePanelCount == 1)
|
61718
|
+
return false;
|
60884
61719
|
return this.visiblePanelCount > 0 && !this.showLegacyNavigation && !!this.cssClasses.footer;
|
60885
61720
|
},
|
60886
61721
|
enumerable: false,
|
60887
61722
|
configurable: true
|
60888
61723
|
});
|
60889
61724
|
QuestionPanelDynamicModel.prototype.showSeparator = function (index) {
|
60890
|
-
return this.isRenderModeList && index < this.
|
61725
|
+
return this.isRenderModeList && index < this.renderedPanels.length - 1;
|
60891
61726
|
};
|
60892
61727
|
QuestionPanelDynamicModel.prototype.calcCssClasses = function (css) {
|
60893
61728
|
var classes = _super.prototype.calcCssClasses.call(this, css);
|
@@ -60901,6 +61736,9 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
|
|
60901
61736
|
return classes;
|
60902
61737
|
};
|
60903
61738
|
QuestionPanelDynamicModel.maxCheckCount = 3;
|
61739
|
+
__decorate([
|
61740
|
+
Object(_jsonobject__WEBPACK_IMPORTED_MODULE_5__["propertyArray"])({})
|
61741
|
+
], QuestionPanelDynamicModel.prototype, "_renderedPanels", void 0);
|
60904
61742
|
__decorate([
|
60905
61743
|
Object(_jsonobject__WEBPACK_IMPORTED_MODULE_5__["property"])({ defaultValue: false, onSet: function (_, target) { target.updateFooterActions(); } })
|
60906
61744
|
], QuestionPanelDynamicModel.prototype, "legacyNavigation", void 0);
|
@@ -61200,6 +62038,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
61200
62038
|
/* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./helpers */ "./src/helpers.ts");
|
61201
62039
|
/* harmony import */ var _src_settings__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../src/settings */ "./src/settings.ts");
|
61202
62040
|
/* harmony import */ var _utils_animation__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./utils/animation */ "./src/utils/animation.ts");
|
62041
|
+
/* harmony import */ var _utils_dragOrClickHelper__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./utils/dragOrClickHelper */ "./src/utils/dragOrClickHelper.ts");
|
61203
62042
|
var __extends = (undefined && undefined.__extends) || (function () {
|
61204
62043
|
var extendStatics = function (d, b) {
|
61205
62044
|
extendStatics = Object.setPrototypeOf ||
|
@@ -61232,6 +62071,7 @@ var __decorate = (undefined && undefined.__decorate) || function (decorators, ta
|
|
61232
62071
|
|
61233
62072
|
|
61234
62073
|
|
62074
|
+
|
61235
62075
|
/**
|
61236
62076
|
* A class that describes the Ranking question type.
|
61237
62077
|
*
|
@@ -61285,7 +62125,19 @@ var QuestionRankingModel = /** @class */ (function (_super) {
|
|
61285
62125
|
if (_this.allowStartDrag &&
|
61286
62126
|
_this.canStartDragDueMaxSelectedChoices(target) &&
|
61287
62127
|
_this.canStartDragDueItemEnabled(choice)) {
|
61288
|
-
_this.
|
62128
|
+
_this.draggedChoise = choice;
|
62129
|
+
_this.draggedTargetNode = node;
|
62130
|
+
_this.dragOrClickHelper.onPointerDown(event);
|
62131
|
+
}
|
62132
|
+
};
|
62133
|
+
_this.startDrag = function (event) {
|
62134
|
+
_this.dragDropRankingChoices.startDrag(event, _this.draggedChoise, _this, _this.draggedTargetNode);
|
62135
|
+
};
|
62136
|
+
_this.handlePointerUp = function (event, choice, node) {
|
62137
|
+
if (!_this.selectToRankEnabled)
|
62138
|
+
return;
|
62139
|
+
if (_this.allowStartDrag) {
|
62140
|
+
_this.handleKeydownSelectToRank(event, choice, " ", false);
|
61289
62141
|
}
|
61290
62142
|
};
|
61291
62143
|
_this.handleKeydown = function (event, choice) {
|
@@ -61345,6 +62197,7 @@ var QuestionRankingModel = /** @class */ (function (_super) {
|
|
61345
62197
|
_this.setDragDropRankingChoices();
|
61346
62198
|
_this.updateRankingChoicesSync();
|
61347
62199
|
});
|
62200
|
+
_this.dragOrClickHelper = new _utils_dragOrClickHelper__WEBPACK_IMPORTED_MODULE_11__["DragOrClickHelper"](_this.startDrag);
|
61348
62201
|
return _this;
|
61349
62202
|
}
|
61350
62203
|
QuestionRankingModel.prototype.getDefaultItemComponent = function () {
|
@@ -61366,11 +62219,14 @@ var QuestionRankingModel = /** @class */ (function (_super) {
|
|
61366
62219
|
return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_6__["CssClassBuilder"]()
|
61367
62220
|
.append(this.cssClasses.root)
|
61368
62221
|
.append(this.cssClasses.rootMobileMod, this.isMobileMode())
|
61369
|
-
.append(this.cssClasses.rootDisabled, this.
|
62222
|
+
.append(this.cssClasses.rootDisabled, this.isDisabledStyle)
|
62223
|
+
.append(this.cssClasses.rootReadOnly, this.isReadOnlyStyle)
|
62224
|
+
.append(this.cssClasses.rootPreview, this.isPreviewStyle)
|
61370
62225
|
.append(this.cssClasses.rootDesignMode, !!this.isDesignMode)
|
61371
62226
|
.append(this.cssClasses.itemOnError, this.hasCssError())
|
61372
62227
|
.append(this.cssClasses.rootDragHandleAreaIcon, _src_settings__WEBPACK_IMPORTED_MODULE_9__["settings"].rankingDragHandleArea === "icon")
|
61373
62228
|
.append(this.cssClasses.rootSelectToRankMod, this.selectToRankEnabled)
|
62229
|
+
.append(this.cssClasses.rootSelectToRankEmptyValueMod, this.isEmpty())
|
61374
62230
|
.append(this.cssClasses.rootSelectToRankAlignHorizontal, this.selectToRankEnabled && this.renderedSelectToRankAreasLayout === "horizontal")
|
61375
62231
|
.append(this.cssClasses.rootSelectToRankAlignVertical, this.selectToRankEnabled && this.renderedSelectToRankAreasLayout === "vertical")
|
61376
62232
|
.toString();
|
@@ -61378,6 +62234,12 @@ var QuestionRankingModel = /** @class */ (function (_super) {
|
|
61378
62234
|
enumerable: false,
|
61379
62235
|
configurable: true
|
61380
62236
|
});
|
62237
|
+
QuestionRankingModel.prototype.isItemSelectedCore = function (item) {
|
62238
|
+
if (this.selectToRankEnabled) {
|
62239
|
+
return _super.prototype.isItemSelectedCore.call(this, item);
|
62240
|
+
}
|
62241
|
+
return true;
|
62242
|
+
};
|
61381
62243
|
QuestionRankingModel.prototype.getItemClassCore = function (item, options) {
|
61382
62244
|
var itemIndex = this.rankingChoices.indexOf(item);
|
61383
62245
|
var unrankedItemIndex = this.unRankingChoices.indexOf(item);
|
@@ -61438,9 +62300,9 @@ var QuestionRankingModel = /** @class */ (function (_super) {
|
|
61438
62300
|
return this.isEmpty() ? "" : index + 1 + "";
|
61439
62301
|
};
|
61440
62302
|
QuestionRankingModel.prototype.updateRankingChoicesSync = function () {
|
61441
|
-
this.
|
62303
|
+
this.blockAnimations();
|
61442
62304
|
this.updateRankingChoices();
|
61443
|
-
this.
|
62305
|
+
this.releaseAnimations();
|
61444
62306
|
};
|
61445
62307
|
QuestionRankingModel.prototype.setSurveyImpl = function (value, isLight) {
|
61446
62308
|
_super.prototype.setSurveyImpl.call(this, value, isLight);
|
@@ -61483,7 +62345,7 @@ var QuestionRankingModel = /** @class */ (function (_super) {
|
|
61483
62345
|
QuestionRankingModel.prototype.getChoicesAnimation = function (isRankingChoices) {
|
61484
62346
|
var _this = this;
|
61485
62347
|
return {
|
61486
|
-
isAnimationEnabled: function () { return
|
62348
|
+
isAnimationEnabled: function () { return _this.animationAllowed; },
|
61487
62349
|
getLeaveOptions: function (item) {
|
61488
62350
|
var choices = isRankingChoices ? _this.rankingChoices : _this.unRankingChoices;
|
61489
62351
|
if (_this.renderedSelectToRankAreasLayout == "vertical" && choices.length == 1 && choices.indexOf(item) >= 0) {
|
@@ -61651,10 +62513,13 @@ var QuestionRankingModel = /** @class */ (function (_super) {
|
|
61651
62513
|
QuestionRankingModel.prototype.supportNone = function () { return false; };
|
61652
62514
|
QuestionRankingModel.prototype.supportRefuse = function () { return false; };
|
61653
62515
|
QuestionRankingModel.prototype.supportDontKnow = function () { return false; };
|
61654
|
-
QuestionRankingModel.prototype.handleKeydownSelectToRank = function (event, movedElement) {
|
62516
|
+
QuestionRankingModel.prototype.handleKeydownSelectToRank = function (event, movedElement, hardKey, isNeedFocus) {
|
62517
|
+
if (isNeedFocus === void 0) { isNeedFocus = true; }
|
61655
62518
|
if (this.isDesignMode)
|
61656
62519
|
return;
|
61657
62520
|
var key = event.key;
|
62521
|
+
if (hardKey)
|
62522
|
+
key = hardKey;
|
61658
62523
|
if (key !== " " && key !== "ArrowUp" && key !== "ArrowDown")
|
61659
62524
|
return;
|
61660
62525
|
var dnd = this.dragDropRankingChoices; //????
|
@@ -61666,21 +62531,23 @@ var QuestionRankingModel = /** @class */ (function (_super) {
|
|
61666
62531
|
return;
|
61667
62532
|
var toIndex;
|
61668
62533
|
if (key === " " && !isMovedElementRanked) {
|
61669
|
-
|
61670
|
-
|
62534
|
+
if (!this.checkMaxSelectedChoicesUnreached() || !this.canStartDragDueItemEnabled(movedElement))
|
62535
|
+
return;
|
62536
|
+
toIndex = this.value.length;
|
62537
|
+
this.blockAnimations();
|
61671
62538
|
dnd.selectToRank(this, fromIndex, toIndex);
|
61672
|
-
this.
|
61673
|
-
this.setValueAfterKeydown(toIndex, "to-container");
|
62539
|
+
this.releaseAnimations();
|
62540
|
+
this.setValueAfterKeydown(toIndex, "to-container", isNeedFocus);
|
61674
62541
|
return;
|
61675
62542
|
}
|
61676
62543
|
if (!isMovedElementRanked)
|
61677
62544
|
return;
|
61678
62545
|
if (key === " ") {
|
61679
|
-
this.
|
62546
|
+
this.blockAnimations();
|
61680
62547
|
dnd.unselectFromRank(this, fromIndex);
|
61681
|
-
this.
|
62548
|
+
this.releaseAnimations();
|
61682
62549
|
toIndex = this.unRankingChoices.indexOf(movedElement); //'this.' leads to actual array after the 'unselectFromRank' method
|
61683
|
-
this.setValueAfterKeydown(toIndex, "from-container");
|
62550
|
+
this.setValueAfterKeydown(toIndex, "from-container", isNeedFocus);
|
61684
62551
|
return;
|
61685
62552
|
}
|
61686
62553
|
var delta = key === "ArrowUp" ? -1 : (key === "ArrowDown" ? 1 : 0);
|
@@ -61690,15 +62557,18 @@ var QuestionRankingModel = /** @class */ (function (_super) {
|
|
61690
62557
|
if (toIndex < 0 || toIndex >= rankingChoices.length)
|
61691
62558
|
return;
|
61692
62559
|
dnd.reorderRankedItem(this, fromIndex, toIndex);
|
61693
|
-
this.setValueAfterKeydown(toIndex, "to-container");
|
62560
|
+
this.setValueAfterKeydown(toIndex, "to-container", isNeedFocus);
|
61694
62561
|
};
|
61695
|
-
QuestionRankingModel.prototype.setValueAfterKeydown = function (index, container) {
|
62562
|
+
QuestionRankingModel.prototype.setValueAfterKeydown = function (index, container, isNeedFocus) {
|
61696
62563
|
var _this = this;
|
62564
|
+
if (isNeedFocus === void 0) { isNeedFocus = true; }
|
61697
62565
|
this.setValue();
|
61698
|
-
|
61699
|
-
|
61700
|
-
|
61701
|
-
|
62566
|
+
if (isNeedFocus) {
|
62567
|
+
setTimeout(function () {
|
62568
|
+
_this.focusItem(index, container);
|
62569
|
+
}, 1);
|
62570
|
+
}
|
62571
|
+
event && event.preventDefault();
|
61702
62572
|
};
|
61703
62573
|
QuestionRankingModel.prototype.getIconHoverCss = function () {
|
61704
62574
|
return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_6__["CssClassBuilder"]()
|
@@ -62042,19 +62912,23 @@ var QuestionRatingModel = /** @class */ (function (_super) {
|
|
62042
62912
|
_this.updateRateCount();
|
62043
62913
|
});
|
62044
62914
|
_this.registerFunctionOnPropertiesValueChanged(["rateValues"], function () {
|
62045
|
-
_this.
|
62915
|
+
_this.setIconsToRateValues();
|
62916
|
+
_this.createRenderedRateItems();
|
62917
|
+
});
|
62918
|
+
_this.registerSychProperties(["rateValues"], function () {
|
62919
|
+
_this.autoGenerate = _this.rateValues.length == 0;
|
62046
62920
|
_this.setIconsToRateValues();
|
62047
62921
|
_this.createRenderedRateItems();
|
62048
62922
|
});
|
62049
62923
|
_this.registerFunctionOnPropertiesValueChanged(["rateColorMode", "scaleColorMode"], function () {
|
62050
62924
|
_this.updateColors(_this.survey.themeVariables);
|
62051
62925
|
});
|
62052
|
-
_this.
|
62926
|
+
_this.registerSychProperties(["autoGenerate"], function () {
|
62053
62927
|
if (!_this.autoGenerate && _this.rateValues.length === 0) {
|
62054
62928
|
_this.setPropertyValue("rateValues", _this.visibleRateValues);
|
62055
62929
|
}
|
62056
62930
|
if (_this.autoGenerate) {
|
62057
|
-
_this.rateValues.length
|
62931
|
+
_this.rateValues.splice(0, _this.rateValues.length);
|
62058
62932
|
_this.updateRateMax();
|
62059
62933
|
}
|
62060
62934
|
_this.createRenderedRateItems();
|
@@ -62380,6 +63254,13 @@ var QuestionRatingModel = /** @class */ (function (_super) {
|
|
62380
63254
|
QuestionRatingModel.prototype.getInputId = function (index) {
|
62381
63255
|
return this.inputId + "_" + index;
|
62382
63256
|
};
|
63257
|
+
Object.defineProperty(QuestionRatingModel.prototype, "questionName", {
|
63258
|
+
get: function () {
|
63259
|
+
return this.name + "_" + this.id;
|
63260
|
+
},
|
63261
|
+
enumerable: false,
|
63262
|
+
configurable: true
|
63263
|
+
});
|
62383
63264
|
QuestionRatingModel.prototype.supportGoNextPageAutomatic = function () {
|
62384
63265
|
return this.isMouseDown === true || this.renderAs === "dropdown";
|
62385
63266
|
};
|
@@ -62632,7 +63513,9 @@ var QuestionRatingModel = /** @class */ (function (_super) {
|
|
62632
63513
|
};
|
62633
63514
|
QuestionRatingModel.prototype.getItemStyle = function (item, highlight) {
|
62634
63515
|
if (highlight === void 0) { highlight = "none"; }
|
62635
|
-
if (this.scaleColorMode === "monochrome" && this.rateColorMode == "default"
|
63516
|
+
if (this.scaleColorMode === "monochrome" && this.rateColorMode == "default" ||
|
63517
|
+
this.isPreviewStyle ||
|
63518
|
+
this.isReadOnlyStyle)
|
62636
63519
|
return { borderColor: null, fill: null, backgroundColor: null };
|
62637
63520
|
var index = this.visibleRateValues.indexOf(item);
|
62638
63521
|
var color = this.getRenderedItemColor(index, false);
|
@@ -62668,6 +63551,8 @@ var QuestionRatingModel = /** @class */ (function (_super) {
|
|
62668
63551
|
var itemClass = this.cssClasses.item;
|
62669
63552
|
var itemSelectedClass = this.cssClasses.selected;
|
62670
63553
|
var itemDisabledClass = this.cssClasses.itemDisabled;
|
63554
|
+
var itemReadOnlyClass = this.cssClasses.itemReadOnly;
|
63555
|
+
var itemPreviewClass = this.cssClasses.itemPreview;
|
62671
63556
|
var itemHoverClass = this.cssClasses.itemHover;
|
62672
63557
|
var itemitemOnErrorClass = this.cssClasses.itemOnError;
|
62673
63558
|
var itemHighlightedClass = null;
|
@@ -62679,6 +63564,8 @@ var QuestionRatingModel = /** @class */ (function (_super) {
|
|
62679
63564
|
itemClass = this.cssClasses.itemStar;
|
62680
63565
|
itemSelectedClass = this.cssClasses.itemStarSelected;
|
62681
63566
|
itemDisabledClass = this.cssClasses.itemStarDisabled;
|
63567
|
+
itemReadOnlyClass = this.cssClasses.itemStarReadOnly;
|
63568
|
+
itemPreviewClass = this.cssClasses.itemStarPreview;
|
62682
63569
|
itemHoverClass = this.cssClasses.itemStarHover;
|
62683
63570
|
itemitemOnErrorClass = this.cssClasses.itemStarOnError;
|
62684
63571
|
itemHighlightedClass = this.cssClasses.itemStarHighlighted;
|
@@ -62689,6 +63576,8 @@ var QuestionRatingModel = /** @class */ (function (_super) {
|
|
62689
63576
|
itemClass = this.cssClasses.itemSmiley;
|
62690
63577
|
itemSelectedClass = this.cssClasses.itemSmileySelected;
|
62691
63578
|
itemDisabledClass = this.cssClasses.itemSmileyDisabled;
|
63579
|
+
itemReadOnlyClass = this.cssClasses.itemSmileyReadOnly;
|
63580
|
+
itemPreviewClass = this.cssClasses.itemSmileyPreview;
|
62692
63581
|
itemHoverClass = this.cssClasses.itemSmileyHover;
|
62693
63582
|
itemitemOnErrorClass = this.cssClasses.itemSmileyOnError;
|
62694
63583
|
itemHighlightedClass = this.cssClasses.itemSmileyHighlighted;
|
@@ -62706,7 +63595,9 @@ var QuestionRatingModel = /** @class */ (function (_super) {
|
|
62706
63595
|
return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_6__["CssClassBuilder"]()
|
62707
63596
|
.append(itemClass)
|
62708
63597
|
.append(itemSelectedClass, isSelected)
|
62709
|
-
.append(itemDisabledClass, this.
|
63598
|
+
.append(itemDisabledClass, this.isDisabledStyle)
|
63599
|
+
.append(itemReadOnlyClass, this.isReadOnlyStyle)
|
63600
|
+
.append(itemPreviewClass, this.isPreviewStyle)
|
62710
63601
|
.append(itemHoverClass, allowHover)
|
62711
63602
|
.append(itemHighlightedClass, isHighlighted)
|
62712
63603
|
.append(itemScaleColoredClass, this.scaleColorMode == "colored")
|
@@ -63449,6 +64340,13 @@ var QuestionSignaturePadModel = /** @class */ (function (_super) {
|
|
63449
64340
|
enumerable: false,
|
63450
64341
|
configurable: true
|
63451
64342
|
});
|
64343
|
+
Object.defineProperty(QuestionSignaturePadModel.prototype, "locRenderedPlaceholder", {
|
64344
|
+
get: function () {
|
64345
|
+
return this.isReadOnly ? this.locPlaceholderReadOnly : this.locPlaceholder;
|
64346
|
+
},
|
64347
|
+
enumerable: false,
|
64348
|
+
configurable: true
|
64349
|
+
});
|
63452
64350
|
QuestionSignaturePadModel.prototype.nothingIsDrawn = function () {
|
63453
64351
|
var isDrawing = this.isDrawingValue;
|
63454
64352
|
var isEmpty = this.isEmpty();
|
@@ -63510,6 +64408,9 @@ var QuestionSignaturePadModel = /** @class */ (function (_super) {
|
|
63510
64408
|
__decorate([
|
63511
64409
|
Object(_jsonobject__WEBPACK_IMPORTED_MODULE_0__["property"])({ localizable: { defaultStr: "signaturePlaceHolder" } })
|
63512
64410
|
], QuestionSignaturePadModel.prototype, "placeholder", void 0);
|
64411
|
+
__decorate([
|
64412
|
+
Object(_jsonobject__WEBPACK_IMPORTED_MODULE_0__["property"])({ localizable: { defaultStr: "signaturePlaceHolderReadOnly" } })
|
64413
|
+
], QuestionSignaturePadModel.prototype, "placeholderReadOnly", void 0);
|
63513
64414
|
return QuestionSignaturePadModel;
|
63514
64415
|
}(_question_file__WEBPACK_IMPORTED_MODULE_5__["QuestionFileModelBase"]));
|
63515
64416
|
|
@@ -63566,6 +64467,13 @@ _jsonobject__WEBPACK_IMPORTED_MODULE_0__["Serializer"].addClass("signaturepad",
|
|
63566
64467
|
dependsOn: "showPlaceholder",
|
63567
64468
|
visibleIf: function (obj) { return obj.showPlaceholder; }
|
63568
64469
|
},
|
64470
|
+
{
|
64471
|
+
name: "placeholderReadOnly:text",
|
64472
|
+
serializationProperty: "locPlaceholderReadOnly",
|
64473
|
+
category: "general",
|
64474
|
+
dependsOn: "showPlaceholder",
|
64475
|
+
visibleIf: function (obj) { return obj.showPlaceholder; }
|
64476
|
+
},
|
63569
64477
|
{
|
63570
64478
|
name: "backgroundImage:file",
|
63571
64479
|
category: "general",
|
@@ -63771,7 +64679,10 @@ var QuestionTagboxModel = /** @class */ (function (_super) {
|
|
63771
64679
|
.append(this.cssClasses.control)
|
63772
64680
|
.append(this.cssClasses.controlEmpty, this.isEmpty())
|
63773
64681
|
.append(this.cssClasses.onError, this.hasCssError())
|
63774
|
-
.append(this.cssClasses.
|
64682
|
+
.append(this.cssClasses.controlEditable, !this.isDisabledStyle && !this.isReadOnlyStyle && !this.isPreviewStyle)
|
64683
|
+
.append(this.cssClasses.controlDisabled, this.isDisabledStyle)
|
64684
|
+
.append(this.cssClasses.controlReadOnly, this.isReadOnlyStyle)
|
64685
|
+
.append(this.cssClasses.controlPreview, this.isPreviewStyle)
|
63775
64686
|
.toString();
|
63776
64687
|
};
|
63777
64688
|
QuestionTagboxModel.prototype.onOpenedCallBack = function () {
|
@@ -64606,8 +65517,8 @@ var QuestionTextModel = /** @class */ (function (_super) {
|
|
64606
65517
|
if (this.inputTextAlignment !== "auto") {
|
64607
65518
|
style.textAlign = this.inputTextAlignment;
|
64608
65519
|
}
|
64609
|
-
else if (this.
|
64610
|
-
style.textAlign =
|
65520
|
+
else if (this.maskSettings.getTextAlignment() !== "auto") {
|
65521
|
+
style.textAlign = this.maskSettings.getTextAlignment();
|
64611
65522
|
}
|
64612
65523
|
};
|
64613
65524
|
QuestionTextModel.prototype.updateValueOnEvent = function (event) {
|
@@ -65068,7 +65979,9 @@ var QuestionTextBase = /** @class */ (function (_super) {
|
|
65068
65979
|
return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_3__["CssClassBuilder"]()
|
65069
65980
|
.append(this.cssClasses.root)
|
65070
65981
|
.append(this.cssClasses.onError, this.hasCssError())
|
65071
|
-
.append(this.cssClasses.controlDisabled, this.
|
65982
|
+
.append(this.cssClasses.controlDisabled, this.isDisabledStyle)
|
65983
|
+
.append(this.cssClasses.controlReadOnly, this.isReadOnlyStyle)
|
65984
|
+
.append(this.cssClasses.controlPreview, this.isPreviewStyle);
|
65072
65985
|
};
|
65073
65986
|
QuestionTextBase.prototype.getControlClass = function () {
|
65074
65987
|
return this.getControlCssClassBuilder().toString();
|
@@ -66248,7 +67161,7 @@ var SurveyFilePreview = /** @class */ (function (_super) {
|
|
66248
67161
|
var previews = this.question.previewValue.map(function (val, index) {
|
66249
67162
|
if (!val)
|
66250
67163
|
return null;
|
66251
|
-
return (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("span", { key: _this.question.inputId + "_" + index, className: _this.question.cssClasses.
|
67164
|
+
return (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("span", { key: _this.question.inputId + "_" + index, className: _this.question.cssClasses.previewItem, style: { display: _this.question.isPreviewVisible(index) ? undefined : "none" } },
|
66252
67165
|
_this.renderFileSign(_this.question.cssClasses.fileSign, val),
|
66253
67166
|
react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div", { className: _this.question.getImageWrapperCss(val) },
|
66254
67167
|
_this.question.canPreviewImage(val) ? (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("img", { src: val.content, style: { height: _this.question.imageHeight, width: _this.question.imageWidth }, alt: "File preview" })) : (_this.question.cssClasses.defaultImage ? (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement(_svg_icon_svg_icon__WEBPACK_IMPORTED_MODULE_2__["SvgIcon"], { iconName: _this.question.cssClasses.defaultImageIconId, size: "auto", className: _this.question.cssClasses.defaultImage })) : null),
|
@@ -66510,7 +67423,7 @@ var ListItem = /** @class */ (function (_super) {
|
|
66510
67423
|
event.stopPropagation();
|
66511
67424
|
}, onPointerDown: function (event) { return _this.model.onPointerDown(event, _this.item); } },
|
66512
67425
|
separator,
|
66513
|
-
contentWrap));
|
67426
|
+
contentWrap), this.item);
|
66514
67427
|
};
|
66515
67428
|
ListItem.prototype.componentDidMount = function () {
|
66516
67429
|
_super.prototype.componentDidMount.call(this);
|
@@ -66971,6 +67884,7 @@ var MatrixRow = /** @class */ (function (_super) {
|
|
66971
67884
|
__extends(MatrixRow, _super);
|
66972
67885
|
function MatrixRow(props) {
|
66973
67886
|
var _this = _super.call(this, props) || this;
|
67887
|
+
_this.root = react__WEBPACK_IMPORTED_MODULE_0___default.a.createRef();
|
66974
67888
|
_this.onPointerDownHandler = function (event) {
|
66975
67889
|
_this.parentMatrix.onPointerDown(event.nativeEvent, _this.model.row);
|
66976
67890
|
};
|
@@ -66993,12 +67907,35 @@ var MatrixRow = /** @class */ (function (_super) {
|
|
66993
67907
|
MatrixRow.prototype.getStateElement = function () {
|
66994
67908
|
return this.model;
|
66995
67909
|
};
|
67910
|
+
MatrixRow.prototype.componentDidMount = function () {
|
67911
|
+
_super.prototype.componentDidMount.call(this);
|
67912
|
+
if (this.root.current) {
|
67913
|
+
this.model.setRootElement(this.root.current);
|
67914
|
+
}
|
67915
|
+
};
|
67916
|
+
MatrixRow.prototype.componentWillUnmount = function () {
|
67917
|
+
_super.prototype.componentWillUnmount.call(this);
|
67918
|
+
this.model.setRootElement(undefined);
|
67919
|
+
};
|
67920
|
+
MatrixRow.prototype.shouldComponentUpdate = function (nextProps, nextState) {
|
67921
|
+
if (!_super.prototype.shouldComponentUpdate.call(this, nextProps, nextState))
|
67922
|
+
return false;
|
67923
|
+
if (nextProps.model !== this.model) {
|
67924
|
+
if (nextProps.element) {
|
67925
|
+
nextProps.element.setRootElement(this.root.current);
|
67926
|
+
}
|
67927
|
+
if (this.model) {
|
67928
|
+
this.model.setRootElement(undefined);
|
67929
|
+
}
|
67930
|
+
}
|
67931
|
+
return true;
|
67932
|
+
};
|
66996
67933
|
MatrixRow.prototype.render = function () {
|
66997
67934
|
var _this = this;
|
66998
67935
|
var model = this.model;
|
66999
67936
|
if (!model.visible)
|
67000
67937
|
return null;
|
67001
|
-
return (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("tr", { className: model.className, "data-sv-drop-target-matrix-row": model.row && model.row.id, onPointerDown: function (event) { return _this.onPointerDownHandler(event); } }, this.props.children));
|
67938
|
+
return (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("tr", { ref: this.root, className: model.className, "data-sv-drop-target-matrix-row": model.row && model.row.id, onPointerDown: function (event) { return _this.onPointerDownHandler(event); } }, this.props.children));
|
67002
67939
|
};
|
67003
67940
|
return MatrixRow;
|
67004
67941
|
}(_reactquestion_element__WEBPACK_IMPORTED_MODULE_2__["SurveyElementBase"]));
|
@@ -67491,7 +68428,6 @@ var PopupContainer = /** @class */ (function (_super) {
|
|
67491
68428
|
__extends(PopupContainer, _super);
|
67492
68429
|
function PopupContainer(props) {
|
67493
68430
|
var _this = _super.call(this, props) || this;
|
67494
|
-
_this.prevIsVisible = false;
|
67495
68431
|
_this.handleKeydown = function (event) {
|
67496
68432
|
_this.model.onKeyDown(event);
|
67497
68433
|
};
|
@@ -67512,10 +68448,9 @@ var PopupContainer = /** @class */ (function (_super) {
|
|
67512
68448
|
};
|
67513
68449
|
PopupContainer.prototype.componentDidUpdate = function (prevProps, prevState) {
|
67514
68450
|
_super.prototype.componentDidUpdate.call(this, prevProps, prevState);
|
67515
|
-
if (!this.
|
68451
|
+
if (!this.model.isPositionSet && this.model.isVisible) {
|
67516
68452
|
this.model.updateOnShowing();
|
67517
68453
|
}
|
67518
|
-
this.prevIsVisible = this.model.isVisible;
|
67519
68454
|
};
|
67520
68455
|
PopupContainer.prototype.renderContainer = function (popupBaseViewModel) {
|
67521
68456
|
var _this = this;
|
@@ -67723,7 +68658,7 @@ var RatingItemSmiley = /** @class */ (function (_super) {
|
|
67723
68658
|
RatingItemSmiley.prototype.render = function () {
|
67724
68659
|
var _this = this;
|
67725
68660
|
return (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("label", { onMouseDown: this.handleOnMouseDown, style: this.question.getItemStyle(this.item.itemValue, this.item.highlight), className: this.question.getItemClass(this.item.itemValue), onMouseOver: function (e) { return _this.question.onItemMouseIn(_this.item); }, onMouseOut: function (e) { return _this.question.onItemMouseOut(_this.item); } },
|
67726
|
-
react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("input", { type: "radio", className: "sv-visuallyhidden", name: this.question.
|
68661
|
+
react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("input", { type: "radio", className: "sv-visuallyhidden", name: this.question.questionName, id: this.question.getInputId(this.index), value: this.item.value, disabled: this.isDisplayMode, checked: this.question.value == this.item.value, onClick: this.props.handleOnClick, onChange: function () { }, "aria-required": this.question.ariaRequired, "aria-label": this.question.ariaLabel, "aria-invalid": this.question.ariaInvalid, "aria-errormessage": this.question.ariaErrormessage }),
|
67727
68662
|
react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement(_svg_icon_svg_icon__WEBPACK_IMPORTED_MODULE_2__["SvgIcon"], { size: "auto", iconName: this.question.getItemSmileyIconName(this.item.itemValue), title: this.item.text })));
|
67728
68663
|
};
|
67729
68664
|
return RatingItemSmiley;
|
@@ -67778,7 +68713,7 @@ var RatingItemStar = /** @class */ (function (_super) {
|
|
67778
68713
|
RatingItemStar.prototype.render = function () {
|
67779
68714
|
var _this = this;
|
67780
68715
|
return (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("label", { onMouseDown: this.handleOnMouseDown, className: this.question.getItemClass(this.item.itemValue), onMouseOver: function (e) { return _this.question.onItemMouseIn(_this.item); }, onMouseOut: function (e) { return _this.question.onItemMouseOut(_this.item); } },
|
67781
|
-
react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("input", { type: "radio", className: "sv-visuallyhidden", name: this.question.
|
68716
|
+
react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("input", { type: "radio", className: "sv-visuallyhidden", name: this.question.questionName, id: this.question.getInputId(this.index), value: this.item.value, disabled: this.isDisplayMode, checked: this.question.value == this.item.value, onClick: this.props.handleOnClick, onChange: function () { }, "aria-required": this.question.ariaRequired, "aria-label": this.question.ariaLabel, "aria-invalid": this.question.ariaInvalid, "aria-errormessage": this.question.ariaErrormessage }),
|
67782
68717
|
react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement(_svg_icon_svg_icon__WEBPACK_IMPORTED_MODULE_2__["SvgIcon"], { className: "sv-star", size: "auto", iconName: this.question.itemStarIcon, title: this.item.text }),
|
67783
68718
|
react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement(_svg_icon_svg_icon__WEBPACK_IMPORTED_MODULE_2__["SvgIcon"], { className: "sv-star-2", size: "auto", iconName: this.question.itemStarIconAlt, title: this.item.text })));
|
67784
68719
|
};
|
@@ -67870,7 +68805,7 @@ var RatingItem = /** @class */ (function (_super) {
|
|
67870
68805
|
RatingItem.prototype.render = function () {
|
67871
68806
|
var itemText = this.renderLocString(this.item.locText);
|
67872
68807
|
return (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("label", { onMouseDown: this.handleOnMouseDown, className: this.question.getItemClassByText(this.item.itemValue, this.item.text) },
|
67873
|
-
react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("input", { type: "radio", className: "sv-visuallyhidden", name: this.question.
|
68808
|
+
react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("input", { type: "radio", className: "sv-visuallyhidden", name: this.question.questionName, id: this.question.getInputId(this.index), value: this.item.value, disabled: this.isDisplayMode, checked: this.question.value == this.item.value, onClick: this.props.handleOnClick, onChange: function () { }, "aria-required": this.question.ariaRequired, "aria-label": this.question.ariaLabel, "aria-invalid": this.question.ariaInvalid, "aria-errormessage": this.question.ariaErrormessage }),
|
67874
68809
|
react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("span", { className: this.question.cssClasses.itemText }, itemText)));
|
67875
68810
|
};
|
67876
68811
|
RatingItem.prototype.componentDidMount = function () {
|
@@ -68976,7 +69911,7 @@ var SurveyElementHeader = /** @class */ (function (_super) {
|
|
68976
69911
|
var description = element.hasDescriptionUnderTitle
|
68977
69912
|
? _reactquestion_element__WEBPACK_IMPORTED_MODULE_3__["SurveyElementBase"].renderQuestionDescription(this.element)
|
68978
69913
|
: null;
|
68979
|
-
var additionalTitleToolbarElement =
|
69914
|
+
var additionalTitleToolbarElement = element.hasAdditionalTitleToolbar ? react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement(_components_action_bar_action_bar__WEBPACK_IMPORTED_MODULE_1__["SurveyActionBar"], { model: element.additionalTitleToolbar }) : null;
|
68980
69915
|
return (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div", { className: element.cssHeader, onClick: function (e) { return element.clickTitleFunction && element.clickTitleFunction(e.nativeEvent); } },
|
68981
69916
|
title,
|
68982
69917
|
description,
|
@@ -73162,7 +74097,7 @@ var SurveyQuestionMatrixDropdownBase = /** @class */ (function (_super) {
|
|
73162
74097
|
SurveyQuestionMatrixDropdownBase.prototype.renderRows = function () {
|
73163
74098
|
var cssClasses = this.question.cssClasses;
|
73164
74099
|
var rows = [];
|
73165
|
-
var renderedRows = this.question.renderedTable.
|
74100
|
+
var renderedRows = this.question.renderedTable.renderedRows;
|
73166
74101
|
for (var i = 0; i < renderedRows.length; i++) {
|
73167
74102
|
rows.push(this.renderRow(renderedRows[i].id, renderedRows[i], cssClasses));
|
73168
74103
|
}
|
@@ -73747,19 +74682,11 @@ var SurveyQuestionPanelDynamic = /** @class */ (function (_super) {
|
|
73747
74682
|
});
|
73748
74683
|
};
|
73749
74684
|
SurveyQuestionPanelDynamic.prototype.renderElement = function () {
|
74685
|
+
var _this = this;
|
73750
74686
|
var panels = [];
|
73751
|
-
|
73752
|
-
|
73753
|
-
|
73754
|
-
panels.push(react__WEBPACK_IMPORTED_MODULE_0__["createElement"](SurveyQuestionPanelDynamicItem, { key: panel.id, element: panel, question: this.question, index: i, cssClasses: this.question.cssClasses, isDisplayMode: this.isDisplayMode, creator: this.creator }));
|
73755
|
-
}
|
73756
|
-
}
|
73757
|
-
else {
|
73758
|
-
if (this.question.currentPanel != null) {
|
73759
|
-
var panel = this.question.currentPanel;
|
73760
|
-
panels.push(react__WEBPACK_IMPORTED_MODULE_0__["createElement"](SurveyQuestionPanelDynamicItem, { key: this.question.currentIndex, element: panel, question: this.question, index: this.question.currentIndex, cssClasses: this.question.cssClasses, isDisplayMode: this.isDisplayMode, creator: this.creator }));
|
73761
|
-
}
|
73762
|
-
}
|
74687
|
+
this.question.renderedPanels.forEach(function (panel, index) {
|
74688
|
+
panels.push(react__WEBPACK_IMPORTED_MODULE_0__["createElement"](SurveyQuestionPanelDynamicItem, { key: panel.id, element: panel, question: _this.question, index: index, cssClasses: _this.question.cssClasses, isDisplayMode: _this.isDisplayMode, creator: _this.creator }));
|
74689
|
+
});
|
73763
74690
|
var btnAdd = this.question.isRenderModeList && this.question["showLegacyNavigation"]
|
73764
74691
|
? this.renderAddRowButton()
|
73765
74692
|
: null;
|
@@ -73769,13 +74696,12 @@ var SurveyQuestionPanelDynamic = /** @class */ (function (_super) {
|
|
73769
74696
|
var navBottom = this.question.isProgressBottomShowing
|
73770
74697
|
? this.renderNavigator()
|
73771
74698
|
: null;
|
73772
|
-
var style = {};
|
73773
74699
|
var navV2 = this.renderNavigatorV2();
|
73774
74700
|
var noEntriesPlaceholder = this.renderPlaceholder();
|
73775
74701
|
return (react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { className: this.question.cssClasses.root },
|
73776
74702
|
noEntriesPlaceholder,
|
73777
74703
|
navTop,
|
73778
|
-
panels,
|
74704
|
+
react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { className: this.question.cssClasses.panelsContainer }, panels),
|
73779
74705
|
navBottom,
|
73780
74706
|
btnAdd,
|
73781
74707
|
navV2));
|
@@ -74224,6 +75150,10 @@ var SurveyQuestionRanking = /** @class */ (function (_super) {
|
|
74224
75150
|
event.persist();
|
74225
75151
|
//event.preventDefault();
|
74226
75152
|
_this.question.handlePointerDown.call(_this.question, event, item, event.currentTarget);
|
75153
|
+
}, function (event) {
|
75154
|
+
event.persist();
|
75155
|
+
//event.preventDefault();
|
75156
|
+
_this.question.handlePointerUp.call(_this.question, event, item, event.currentTarget);
|
74227
75157
|
}, this_1.question.cssClasses, this_1.question.getItemClass(item), this_1.question, unrankedItem));
|
74228
75158
|
};
|
74229
75159
|
var this_1 = this;
|
@@ -74232,13 +75162,13 @@ var SurveyQuestionRanking = /** @class */ (function (_super) {
|
|
74232
75162
|
}
|
74233
75163
|
return items;
|
74234
75164
|
};
|
74235
|
-
SurveyQuestionRanking.prototype.renderItem = function (item, i, handleKeydown, handlePointerDown, cssClasses, itemClass, question, unrankedItem) {
|
74236
|
-
var key =
|
75165
|
+
SurveyQuestionRanking.prototype.renderItem = function (item, i, handleKeydown, handlePointerDown, handlePointerUp, cssClasses, itemClass, question, unrankedItem) {
|
75166
|
+
var key = "id-" + item.renderedId;
|
74237
75167
|
var text = this.renderLocString(item.locText);
|
74238
75168
|
var index = i;
|
74239
|
-
var indexText = this.question.getNumberByIndex(
|
75169
|
+
var indexText = this.question.getNumberByIndex(index);
|
74240
75170
|
var tabIndex = this.question.getItemTabIndex(item);
|
74241
|
-
var renderedItem = (react__WEBPACK_IMPORTED_MODULE_0__["createElement"](SurveyQuestionRankingItem, { key:
|
75171
|
+
var renderedItem = (react__WEBPACK_IMPORTED_MODULE_0__["createElement"](SurveyQuestionRankingItem, { key: item.value, text: text, index: index, indexText: indexText, itemTabIndex: tabIndex, handleKeydown: handleKeydown, handlePointerDown: handlePointerDown, handlePointerUp: handlePointerUp, cssClasses: cssClasses, itemClass: itemClass, question: question, unrankedItem: unrankedItem, item: item }));
|
74242
75172
|
var survey = this.question.survey;
|
74243
75173
|
var wrappedItem = null;
|
74244
75174
|
if (!!survey) {
|
@@ -74289,6 +75219,13 @@ var SurveyQuestionRankingItem = /** @class */ (function (_super) {
|
|
74289
75219
|
enumerable: false,
|
74290
75220
|
configurable: true
|
74291
75221
|
});
|
75222
|
+
Object.defineProperty(SurveyQuestionRankingItem.prototype, "handlePointerUp", {
|
75223
|
+
get: function () {
|
75224
|
+
return this.props.handlePointerUp;
|
75225
|
+
},
|
75226
|
+
enumerable: false,
|
75227
|
+
configurable: true
|
75228
|
+
});
|
74292
75229
|
Object.defineProperty(SurveyQuestionRankingItem.prototype, "cssClasses", {
|
74293
75230
|
get: function () {
|
74294
75231
|
return this.props.cssClasses;
|
@@ -74336,7 +75273,7 @@ var SurveyQuestionRankingItem = /** @class */ (function (_super) {
|
|
74336
75273
|
react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("use", { xlinkHref: this.question.dashSvgIcon })));
|
74337
75274
|
};
|
74338
75275
|
SurveyQuestionRankingItem.prototype.renderElement = function () {
|
74339
|
-
return (react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { tabIndex: this.itemTabIndex, className: this.itemClass, onKeyDown: this.handleKeydown, onPointerDown: this.handlePointerDown, "data-sv-drop-target-ranking-item": this.index },
|
75276
|
+
return (react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { tabIndex: this.itemTabIndex, className: this.itemClass, onKeyDown: this.handleKeydown, onPointerDown: this.handlePointerDown, onPointerUp: this.handlePointerUp, "data-sv-drop-target-ranking-item": this.index },
|
74340
75277
|
react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { tabIndex: -1, style: { outline: "none" } },
|
74341
75278
|
react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { className: this.cssClasses.itemGhostNode }),
|
74342
75279
|
react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { className: this.cssClasses.itemContent },
|
@@ -74987,7 +75924,7 @@ var SurveyQuestionSignaturePad = /** @class */ (function (_super) {
|
|
74987
75924
|
var loadingIndicator = this.question.showLoadingIndicator ? this.renderLoadingIndicator() : null;
|
74988
75925
|
var clearButton = this.renderCleanButton();
|
74989
75926
|
return (react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { className: cssClasses.root, ref: function (root) { return (_this.setControl(root)); }, style: { width: this.question.renderedCanvasWidth } },
|
74990
|
-
react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { className: cssClasses.placeholder, style: { display: this.question.needShowPlaceholder() ? "" : "none" } }, this.renderLocString(this.question.
|
75927
|
+
react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { className: cssClasses.placeholder, style: { display: this.question.needShowPlaceholder() ? "" : "none" } }, this.renderLocString(this.question.locRenderedPlaceholder)),
|
74991
75928
|
react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", null,
|
74992
75929
|
this.renderBackgroundImage(),
|
74993
75930
|
react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("canvas", { tabIndex: -1, className: this.question.cssClasses.canvas, onBlur: this.question.onBlur })),
|
@@ -76870,7 +77807,6 @@ var SurveyElement = /** @class */ (function (_super) {
|
|
76870
77807
|
}
|
76871
77808
|
}
|
76872
77809
|
}, function () { return _this.renderedIsExpanded; });
|
76873
|
-
_this.animationAllowedValue = true;
|
76874
77810
|
_this.name = name;
|
76875
77811
|
_this.createNewArray("errors");
|
76876
77812
|
_this.createNewArray("titleActions");
|
@@ -76906,7 +77842,7 @@ var SurveyElement = /** @class */ (function (_super) {
|
|
76906
77842
|
var el = root.getElementById(elementId);
|
76907
77843
|
return SurveyElement.ScrollElementToViewCore(el, false, scrollIfVisible);
|
76908
77844
|
};
|
76909
|
-
SurveyElement.ScrollElementToViewCore = function (el, checkLeft, scrollIfVisible) {
|
77845
|
+
SurveyElement.ScrollElementToViewCore = function (el, checkLeft, scrollIfVisible, scrollIntoViewOptions) {
|
76910
77846
|
if (!el || !el.scrollIntoView)
|
76911
77847
|
return false;
|
76912
77848
|
var elTop = scrollIfVisible ? -1 : el.getBoundingClientRect().top;
|
@@ -76925,7 +77861,7 @@ var SurveyElement = /** @class */ (function (_super) {
|
|
76925
77861
|
}
|
76926
77862
|
}
|
76927
77863
|
if (needScroll) {
|
76928
|
-
el.scrollIntoView();
|
77864
|
+
el.scrollIntoView(scrollIntoViewOptions);
|
76929
77865
|
}
|
76930
77866
|
return needScroll;
|
76931
77867
|
};
|
@@ -77701,11 +78637,14 @@ var SurveyElement = /** @class */ (function (_super) {
|
|
77701
78637
|
enumerable: false,
|
77702
78638
|
configurable: true
|
77703
78639
|
});
|
78640
|
+
SurveyElement.prototype.canHaveFrameStyles = function () {
|
78641
|
+
return (this.parent !== undefined && (!this.hasParent || this.parent && this.parent.showPanelAsPage));
|
78642
|
+
};
|
77704
78643
|
SurveyElement.prototype.getHasFrameV2 = function () {
|
77705
|
-
return this.shouldAddRunnerStyles() &&
|
78644
|
+
return this.shouldAddRunnerStyles() && this.canHaveFrameStyles();
|
77706
78645
|
};
|
77707
78646
|
SurveyElement.prototype.getIsNested = function () {
|
77708
|
-
return this.shouldAddRunnerStyles() &&
|
78647
|
+
return this.shouldAddRunnerStyles() && !this.canHaveFrameStyles();
|
77709
78648
|
};
|
77710
78649
|
SurveyElement.prototype.getCssRoot = function (cssClasses) {
|
77711
78650
|
var isExpanadable = !!this.isCollapsed || !!this.isExpanded;
|
@@ -77906,6 +78845,13 @@ var SurveyElement = /** @class */ (function (_super) {
|
|
77906
78845
|
this.toggleState();
|
77907
78846
|
}
|
77908
78847
|
};
|
78848
|
+
Object.defineProperty(SurveyElement.prototype, "hasAdditionalTitleToolbar", {
|
78849
|
+
get: function () {
|
78850
|
+
return false;
|
78851
|
+
},
|
78852
|
+
enumerable: false,
|
78853
|
+
configurable: true
|
78854
|
+
});
|
77909
78855
|
Object.defineProperty(SurveyElement.prototype, "additionalTitleToolbar", {
|
77910
78856
|
get: function () {
|
77911
78857
|
return this.getAdditionalTitleToolbar();
|
@@ -77925,9 +78871,38 @@ var SurveyElement = /** @class */ (function (_super) {
|
|
77925
78871
|
.append(cssClasses.titleExpandable, isExpandable)
|
77926
78872
|
.append(cssClasses.titleExpanded, this.isExpanded)
|
77927
78873
|
.append(cssClasses.titleCollapsed, this.isCollapsed)
|
77928
|
-
.append(cssClasses.titleDisabled, this.
|
78874
|
+
.append(cssClasses.titleDisabled, this.isDisabledStyle)
|
78875
|
+
.append(cssClasses.titleReadOnly, this.isReadOnly)
|
77929
78876
|
.append(cssClasses.titleOnError, this.containsErrors).toString();
|
77930
78877
|
};
|
78878
|
+
Object.defineProperty(SurveyElement.prototype, "isDisabledStyle", {
|
78879
|
+
get: function () {
|
78880
|
+
return this.getIsDisableAndReadOnlyStyles(false)[1];
|
78881
|
+
},
|
78882
|
+
enumerable: false,
|
78883
|
+
configurable: true
|
78884
|
+
});
|
78885
|
+
Object.defineProperty(SurveyElement.prototype, "isReadOnlyStyle", {
|
78886
|
+
get: function () {
|
78887
|
+
return this.getIsDisableAndReadOnlyStyles(false)[0];
|
78888
|
+
},
|
78889
|
+
enumerable: false,
|
78890
|
+
configurable: true
|
78891
|
+
});
|
78892
|
+
SurveyElement.prototype.getIsDisableAndReadOnlyStyles = function (itemReadOnly) {
|
78893
|
+
var isPreview = this.isPreviewStyle;
|
78894
|
+
var isReadOnly = itemReadOnly || this.isReadOnly;
|
78895
|
+
var isReadOnlyStyle = isReadOnly && !isPreview;
|
78896
|
+
var isDisableStyle = !this.isDefaultV2Theme && (isReadOnly || isPreview);
|
78897
|
+
return [isReadOnlyStyle, isDisableStyle];
|
78898
|
+
};
|
78899
|
+
Object.defineProperty(SurveyElement.prototype, "isPreviewStyle", {
|
78900
|
+
get: function () {
|
78901
|
+
return !!this.survey && this.survey.state === "preview";
|
78902
|
+
},
|
78903
|
+
enumerable: false,
|
78904
|
+
configurable: true
|
78905
|
+
});
|
77931
78906
|
SurveyElement.prototype.localeChanged = function () {
|
77932
78907
|
_super.prototype.localeChanged.call(this);
|
77933
78908
|
this.updateDescriptionVisibility(this.description);
|
@@ -77987,12 +78962,12 @@ var SurveyElement = /** @class */ (function (_super) {
|
|
77987
78962
|
if (cssClasses.content) {
|
77988
78963
|
var selector = Object(_utils_utils__WEBPACK_IMPORTED_MODULE_8__["classesToSelector"])(cssClasses.content);
|
77989
78964
|
if (selector) {
|
77990
|
-
return (_a = _this.getWrapperElement()) === null || _a === void 0 ? void 0 : _a.querySelector(selector);
|
78965
|
+
return (_a = _this.getWrapperElement()) === null || _a === void 0 ? void 0 : _a.querySelector(":scope " + selector);
|
77991
78966
|
}
|
77992
78967
|
}
|
77993
78968
|
return undefined;
|
77994
78969
|
},
|
77995
|
-
isAnimationEnabled: function () { return
|
78970
|
+
isAnimationEnabled: function () { return _this.animationAllowed && !_this.isDesignMode; }
|
77996
78971
|
};
|
77997
78972
|
};
|
77998
78973
|
Object.defineProperty(SurveyElement.prototype, "renderedIsExpanded", {
|
@@ -78005,16 +78980,9 @@ var SurveyElement = /** @class */ (function (_super) {
|
|
78005
78980
|
enumerable: false,
|
78006
78981
|
configurable: true
|
78007
78982
|
});
|
78008
|
-
|
78009
|
-
|
78010
|
-
|
78011
|
-
},
|
78012
|
-
set: function (val) {
|
78013
|
-
this.animationAllowedValue = val;
|
78014
|
-
},
|
78015
|
-
enumerable: false,
|
78016
|
-
configurable: true
|
78017
|
-
});
|
78983
|
+
SurveyElement.prototype.getIsAnimationAllowed = function () {
|
78984
|
+
return _super.prototype.getIsAnimationAllowed.call(this) && !!this.survey;
|
78985
|
+
};
|
78018
78986
|
SurveyElement.prototype.dispose = function () {
|
78019
78987
|
_super.prototype.dispose.call(this);
|
78020
78988
|
if (this.titleToolbarValue) {
|
@@ -81520,7 +82488,7 @@ var SurveyModel = /** @class */ (function (_super) {
|
|
81520
82488
|
}
|
81521
82489
|
this.getAllQuestions().forEach(function (q) {
|
81522
82490
|
if (q.hasFilteredValue) {
|
81523
|
-
values[q.
|
82491
|
+
values[q.getFilteredName()] = q.getFilteredValue();
|
81524
82492
|
}
|
81525
82493
|
});
|
81526
82494
|
return values;
|
@@ -83429,7 +84397,7 @@ var SurveyModel = /** @class */ (function (_super) {
|
|
83429
84397
|
});
|
83430
84398
|
SurveyModel.prototype.updateProgressText = function (onValueChanged) {
|
83431
84399
|
if (onValueChanged === void 0) { onValueChanged = false; }
|
83432
|
-
if (this.isCalculatingProgressText)
|
84400
|
+
if (this.isCalculatingProgressText || this.isShowingPreview || this.isLockingUpdateOnPageModes)
|
83433
84401
|
return;
|
83434
84402
|
if (onValueChanged &&
|
83435
84403
|
this.progressBarType == "pages" &&
|
@@ -84620,6 +85588,7 @@ var SurveyModel = /** @class */ (function (_super) {
|
|
84620
85588
|
* @param isPartial Pass `true` to save partial survey results (see [Continue an Incomplete Survey](https://surveyjs.io/form-library/documentation/handle-survey-results-continue-incomplete)).
|
84621
85589
|
*/
|
84622
85590
|
SurveyModel.prototype.sendResult = function (postId, clientId, isPartial) {
|
85591
|
+
var _this = this;
|
84623
85592
|
if (postId === void 0) { postId = null; }
|
84624
85593
|
if (clientId === void 0) { clientId = null; }
|
84625
85594
|
if (isPartial === void 0) { isPartial = false; }
|
@@ -84638,24 +85607,23 @@ var SurveyModel = /** @class */ (function (_super) {
|
|
84638
85607
|
}
|
84639
85608
|
if (isPartial && !this.clientId)
|
84640
85609
|
return;
|
84641
|
-
var
|
84642
|
-
|
85610
|
+
var service = this.createSurveyService();
|
85611
|
+
service.locale = this.getLocale();
|
85612
|
+
var showSaving = this.surveyShowDataSaving || (!isPartial && service.isSurveJSIOService);
|
85613
|
+
if (showSaving) {
|
84643
85614
|
this.setCompletedState("saving", "");
|
84644
85615
|
}
|
84645
|
-
|
84646
|
-
if (
|
85616
|
+
service.sendResult(postId, this.data, function (success, response, request) {
|
85617
|
+
if (showSaving || service.isSurveJSIOService) {
|
84647
85618
|
if (success) {
|
84648
|
-
|
85619
|
+
_this.setCompletedState("success", "");
|
84649
85620
|
}
|
84650
85621
|
else {
|
84651
|
-
|
85622
|
+
_this.setCompletedState("error", response);
|
84652
85623
|
}
|
84653
85624
|
}
|
84654
|
-
|
84655
|
-
|
84656
|
-
response: response,
|
84657
|
-
request: request,
|
84658
|
-
});
|
85625
|
+
var options = { success: success, response: response, request: request };
|
85626
|
+
_this.onSendResult.fire(_this, options);
|
84659
85627
|
}, this.clientId, isPartial);
|
84660
85628
|
};
|
84661
85629
|
/**
|
@@ -84727,7 +85695,7 @@ var SurveyModel = /** @class */ (function (_super) {
|
|
84727
85695
|
this.updateVisibleIndexes();
|
84728
85696
|
};
|
84729
85697
|
SurveyModel.prototype.updateVisibleIndexes = function () {
|
84730
|
-
if (this.isLoadingFromJson || !!this.isEndLoadingFromJson)
|
85698
|
+
if (this.isLoadingFromJson || !!this.isEndLoadingFromJson || this.isLockingUpdateOnPageModes)
|
84731
85699
|
return;
|
84732
85700
|
if (this.isRunningConditions &&
|
84733
85701
|
this.onQuestionVisibleChanged.isEmpty &&
|
@@ -85293,7 +86261,7 @@ var SurveyModel = /** @class */ (function (_super) {
|
|
85293
86261
|
if (locNotification !== "text") {
|
85294
86262
|
this.tryGoNextPageAutomatic(name);
|
85295
86263
|
}
|
85296
|
-
var question = this.
|
86264
|
+
var question = this.getQuestionByValueName(name);
|
85297
86265
|
if (question) {
|
85298
86266
|
this.onValueChanged.fire(this, {
|
85299
86267
|
name: commentName,
|
@@ -85334,8 +86302,10 @@ var SurveyModel = /** @class */ (function (_super) {
|
|
85334
86302
|
return questionClearIf;
|
85335
86303
|
return this.clearInvisibleValues;
|
85336
86304
|
};
|
85337
|
-
SurveyModel.prototype.questionVisibilityChanged = function (question, newValue) {
|
85338
|
-
|
86305
|
+
SurveyModel.prototype.questionVisibilityChanged = function (question, newValue, resetIndexes) {
|
86306
|
+
if (resetIndexes) {
|
86307
|
+
this.updateVisibleIndexes();
|
86308
|
+
}
|
85339
86309
|
this.onQuestionVisibleChanged.fire(this, {
|
85340
86310
|
question: question,
|
85341
86311
|
name: question.name,
|
@@ -88294,6 +89264,9 @@ var SurveyTriggerRunExpression = /** @class */ (function (_super) {
|
|
88294
89264
|
enumerable: false,
|
88295
89265
|
configurable: true
|
88296
89266
|
});
|
89267
|
+
SurveyTriggerRunExpression.prototype.canBeExecuted = function (isOnNextPage) {
|
89268
|
+
return !isOnNextPage;
|
89269
|
+
};
|
88297
89270
|
SurveyTriggerRunExpression.prototype.onSuccess = function (values, properties) {
|
88298
89271
|
var _this = this;
|
88299
89272
|
if (!this.owner || !this.runExpression)
|
@@ -88417,7 +89390,7 @@ _jsonobject__WEBPACK_IMPORTED_MODULE_2__["Serializer"].addClass("runexpressiontr
|
|
88417
89390
|
/*!********************************!*\
|
88418
89391
|
!*** ./src/utils/animation.ts ***!
|
88419
89392
|
\********************************/
|
88420
|
-
/*! exports provided: AnimationUtils, AnimationPropertyUtils, AnimationGroupUtils, AnimationBoolean, AnimationGroup */
|
89393
|
+
/*! exports provided: AnimationUtils, AnimationPropertyUtils, AnimationGroupUtils, AnimationProperty, AnimationBoolean, AnimationGroup, AnimationTab */
|
88421
89394
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
88422
89395
|
|
88423
89396
|
"use strict";
|
@@ -88425,8 +89398,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
88425
89398
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "AnimationUtils", function() { return AnimationUtils; });
|
88426
89399
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "AnimationPropertyUtils", function() { return AnimationPropertyUtils; });
|
88427
89400
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "AnimationGroupUtils", function() { return AnimationGroupUtils; });
|
89401
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "AnimationProperty", function() { return AnimationProperty; });
|
88428
89402
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "AnimationBoolean", function() { return AnimationBoolean; });
|
88429
89403
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "AnimationGroup", function() { return AnimationGroup; });
|
89404
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "AnimationTab", function() { return AnimationTab; });
|
88430
89405
|
/* harmony import */ var _global_variables_utils__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../global_variables_utils */ "./src/global_variables_utils.ts");
|
88431
89406
|
/* harmony import */ var _taskmanager__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./taskmanager */ "./src/utils/taskmanager.ts");
|
88432
89407
|
var __extends = (undefined && undefined.__extends) || (function () {
|
@@ -88455,6 +89430,9 @@ var AnimationUtils = /** @class */ (function () {
|
|
88455
89430
|
return 0;
|
88456
89431
|
return Number(value.slice(0, -1).replace(",", ".")) * 1000;
|
88457
89432
|
};
|
89433
|
+
AnimationUtils.prototype.reflow = function (element) {
|
89434
|
+
return element.offsetHeight;
|
89435
|
+
};
|
88458
89436
|
AnimationUtils.prototype.getAnimationsCount = function (element) {
|
88459
89437
|
var animationName = "";
|
88460
89438
|
if (getComputedStyle) {
|
@@ -88472,6 +89450,14 @@ var AnimationUtils = /** @class */ (function () {
|
|
88472
89450
|
}
|
88473
89451
|
return duration;
|
88474
89452
|
};
|
89453
|
+
AnimationUtils.prototype.addCancelCallback = function (callback) {
|
89454
|
+
this.cancelQueue.push(callback);
|
89455
|
+
};
|
89456
|
+
AnimationUtils.prototype.removeCancelCallback = function (callback) {
|
89457
|
+
if (this.cancelQueue.indexOf(callback) >= 0) {
|
89458
|
+
this.cancelQueue.splice(this.cancelQueue.indexOf(callback), 1);
|
89459
|
+
}
|
89460
|
+
};
|
88475
89461
|
AnimationUtils.prototype.onAnimationEnd = function (element, callback, options) {
|
88476
89462
|
var _this = this;
|
88477
89463
|
var cancelTimeout;
|
@@ -88481,7 +89467,7 @@ var AnimationUtils = /** @class */ (function () {
|
|
88481
89467
|
options.onAfterRunAnimation && options.onAfterRunAnimation(element);
|
88482
89468
|
callback(isCancel);
|
88483
89469
|
clearTimeout(cancelTimeout);
|
88484
|
-
_this.
|
89470
|
+
_this.removeCancelCallback(onEndCallback);
|
88485
89471
|
element.removeEventListener("animationend", onAnimationEndCallback);
|
88486
89472
|
};
|
88487
89473
|
var onAnimationEndCallback = function (event) {
|
@@ -88491,7 +89477,7 @@ var AnimationUtils = /** @class */ (function () {
|
|
88491
89477
|
};
|
88492
89478
|
if (animationsCount > 0) {
|
88493
89479
|
element.addEventListener("animationend", onAnimationEndCallback);
|
88494
|
-
this.
|
89480
|
+
this.addCancelCallback(onEndCallback);
|
88495
89481
|
cancelTimeout = setTimeout(function () {
|
88496
89482
|
onEndCallback(false);
|
88497
89483
|
}, this.getAnimationDuration(element) + 10);
|
@@ -88501,40 +89487,51 @@ var AnimationUtils = /** @class */ (function () {
|
|
88501
89487
|
}
|
88502
89488
|
};
|
88503
89489
|
AnimationUtils.prototype.beforeAnimationRun = function (element, options) {
|
88504
|
-
if (element) {
|
89490
|
+
if (element && options) {
|
88505
89491
|
options.onBeforeRunAnimation && options.onBeforeRunAnimation(element);
|
88506
89492
|
}
|
88507
89493
|
};
|
88508
|
-
AnimationUtils.prototype.
|
89494
|
+
AnimationUtils.prototype.runAnimation = function (element, options, callback) {
|
88509
89495
|
if (element && options.cssClass) {
|
89496
|
+
this.reflow(element);
|
88510
89497
|
element.classList.add(options.cssClass);
|
88511
|
-
|
89498
|
+
this.onAnimationEnd(element, callback, options);
|
89499
|
+
}
|
89500
|
+
else {
|
89501
|
+
callback(true);
|
89502
|
+
}
|
89503
|
+
};
|
89504
|
+
AnimationUtils.prototype.clearHtmlElement = function (element, options) {
|
89505
|
+
if (element && options.cssClass) {
|
89506
|
+
element.classList.remove(options.cssClass);
|
89507
|
+
}
|
89508
|
+
};
|
89509
|
+
AnimationUtils.prototype.onNextRender = function (callback, runEarly, isCancel) {
|
89510
|
+
var _this = this;
|
89511
|
+
if (isCancel === void 0) { isCancel = false; }
|
89512
|
+
if (!isCancel && _global_variables_utils__WEBPACK_IMPORTED_MODULE_0__["DomWindowHelper"].isAvailable()) {
|
89513
|
+
var cancelCallback_1 = function () {
|
88512
89514
|
callback();
|
88513
|
-
|
88514
|
-
|
89515
|
+
cancelAnimationFrame(latestRAF_1);
|
89516
|
+
};
|
89517
|
+
var latestRAF_1 = _global_variables_utils__WEBPACK_IMPORTED_MODULE_0__["DomWindowHelper"].requestAnimationFrame(function () {
|
89518
|
+
if (runEarly && runEarly()) {
|
89519
|
+
callback();
|
89520
|
+
_this.removeCancelCallback(cancelCallback_1);
|
88515
89521
|
}
|
88516
89522
|
else {
|
88517
|
-
_global_variables_utils__WEBPACK_IMPORTED_MODULE_0__["DomWindowHelper"].requestAnimationFrame(function () {
|
88518
|
-
|
88519
|
-
|
88520
|
-
});
|
89523
|
+
latestRAF_1 = _global_variables_utils__WEBPACK_IMPORTED_MODULE_0__["DomWindowHelper"].requestAnimationFrame(function () {
|
89524
|
+
callback();
|
89525
|
+
_this.removeCancelCallback(cancelCallback_1);
|
88521
89526
|
});
|
88522
89527
|
}
|
88523
|
-
};
|
88524
|
-
this.
|
89528
|
+
});
|
89529
|
+
this.addCancelCallback(cancelCallback_1);
|
88525
89530
|
}
|
88526
89531
|
else {
|
88527
89532
|
callback();
|
88528
89533
|
}
|
88529
89534
|
};
|
88530
|
-
AnimationUtils.prototype.runEnterAnimation = function (element, options) {
|
88531
|
-
if (element && options.cssClass) {
|
88532
|
-
element.classList.add(options.cssClass);
|
88533
|
-
this.onAnimationEnd(element, function () {
|
88534
|
-
element.classList.remove(options.cssClass);
|
88535
|
-
}, options);
|
88536
|
-
}
|
88537
|
-
};
|
88538
89535
|
AnimationUtils.prototype.cancel = function () {
|
88539
89536
|
var cancelQueue = [].concat(this.cancelQueue);
|
88540
89537
|
cancelQueue.forEach(function (callback) { return callback(); });
|
@@ -88548,26 +89545,28 @@ var AnimationPropertyUtils = /** @class */ (function (_super) {
|
|
88548
89545
|
function AnimationPropertyUtils() {
|
88549
89546
|
return _super !== null && _super.apply(this, arguments) || this;
|
88550
89547
|
}
|
88551
|
-
AnimationPropertyUtils.prototype.onEnter = function (
|
89548
|
+
AnimationPropertyUtils.prototype.onEnter = function (options) {
|
88552
89549
|
var _this = this;
|
88553
|
-
|
88554
|
-
var
|
88555
|
-
|
88556
|
-
_this.
|
88557
|
-
|
88558
|
-
|
88559
|
-
|
88560
|
-
|
88561
|
-
}
|
88562
|
-
else {
|
88563
|
-
_global_variables_utils__WEBPACK_IMPORTED_MODULE_0__["DomWindowHelper"].requestAnimationFrame(callback);
|
88564
|
-
}
|
88565
|
-
});
|
89550
|
+
this.onNextRender(function () {
|
89551
|
+
var htmlElement = options.getAnimatedElement();
|
89552
|
+
var enterOptions = options.getEnterOptions();
|
89553
|
+
_this.beforeAnimationRun(htmlElement, enterOptions);
|
89554
|
+
_this.runAnimation(htmlElement, enterOptions, function () {
|
89555
|
+
_this.clearHtmlElement(htmlElement, enterOptions);
|
89556
|
+
});
|
89557
|
+
}, function () { return !!options.getAnimatedElement(); });
|
88566
89558
|
};
|
88567
|
-
AnimationPropertyUtils.prototype.onLeave = function (
|
88568
|
-
var
|
88569
|
-
|
88570
|
-
|
89559
|
+
AnimationPropertyUtils.prototype.onLeave = function (options, callback) {
|
89560
|
+
var _this = this;
|
89561
|
+
var htmlElement = options.getAnimatedElement();
|
89562
|
+
var leaveOptions = options.getLeaveOptions();
|
89563
|
+
this.beforeAnimationRun(htmlElement, leaveOptions);
|
89564
|
+
this.runAnimation(htmlElement, leaveOptions, function (isCancel) {
|
89565
|
+
callback();
|
89566
|
+
_this.onNextRender(function () {
|
89567
|
+
_this.clearHtmlElement(htmlElement, leaveOptions);
|
89568
|
+
}, undefined, isCancel);
|
89569
|
+
});
|
88571
89570
|
};
|
88572
89571
|
return AnimationPropertyUtils;
|
88573
89572
|
}(AnimationUtils));
|
@@ -88577,41 +89576,40 @@ var AnimationGroupUtils = /** @class */ (function (_super) {
|
|
88577
89576
|
function AnimationGroupUtils() {
|
88578
89577
|
return _super !== null && _super.apply(this, arguments) || this;
|
88579
89578
|
}
|
88580
|
-
AnimationGroupUtils.prototype.
|
89579
|
+
AnimationGroupUtils.prototype.runGroupAnimation = function (options, addedElements, removedElements, callback) {
|
88581
89580
|
var _this = this;
|
88582
|
-
|
88583
|
-
return;
|
88584
|
-
|
88585
|
-
var
|
88586
|
-
|
88587
|
-
|
88588
|
-
|
88589
|
-
|
88590
|
-
|
88591
|
-
|
89581
|
+
this.onNextRender(function () {
|
89582
|
+
var addedHtmlElements = addedElements.map(function (el) { return options.getAnimatedElement(el); });
|
89583
|
+
var enterOptions = addedElements.map(function (el) { return options.getEnterOptions(el); });
|
89584
|
+
var removedHtmlElements = removedElements.map(function (el) { return options.getAnimatedElement(el); });
|
89585
|
+
var leaveOptions = removedElements.map(function (el) { return options.getLeaveOptions(el); });
|
89586
|
+
addedElements.forEach(function (_, i) {
|
89587
|
+
_this.beforeAnimationRun(addedHtmlElements[i], enterOptions[i]);
|
89588
|
+
});
|
89589
|
+
removedElements.forEach(function (_, i) {
|
89590
|
+
_this.beforeAnimationRun(removedHtmlElements[i], leaveOptions[i]);
|
89591
|
+
});
|
89592
|
+
var counter = addedElements.length + removedElements.length;
|
89593
|
+
var onAnimationEndCallback = function (isCancel) {
|
89594
|
+
if (--counter <= 0) {
|
89595
|
+
callback && callback();
|
89596
|
+
_this.onNextRender(function () {
|
89597
|
+
addedElements.forEach(function (_, i) {
|
89598
|
+
_this.clearHtmlElement(addedHtmlElements[i], enterOptions[i]);
|
89599
|
+
});
|
89600
|
+
removedElements.forEach(function (_, i) {
|
89601
|
+
_this.clearHtmlElement(removedHtmlElements[i], leaveOptions[i]);
|
89602
|
+
});
|
89603
|
+
}, undefined, isCancel);
|
89604
|
+
}
|
88592
89605
|
};
|
88593
|
-
|
88594
|
-
|
88595
|
-
}
|
88596
|
-
|
88597
|
-
|
88598
|
-
}
|
88599
|
-
});
|
88600
|
-
};
|
88601
|
-
AnimationGroupUtils.prototype.onLeave = function (getElement, callback, getOptions, elements) {
|
88602
|
-
var _this = this;
|
88603
|
-
elements.forEach(function (el) {
|
88604
|
-
_this.beforeAnimationRun(getElement(el), getOptions(el));
|
88605
|
-
});
|
88606
|
-
var counter = elements.length;
|
88607
|
-
var onEndCallback = function () {
|
88608
|
-
if (--counter <= 0) {
|
88609
|
-
callback();
|
88610
|
-
}
|
88611
|
-
};
|
88612
|
-
elements.forEach(function (el) {
|
88613
|
-
_this.runLeaveAnimation(getElement(el), getOptions(el), onEndCallback);
|
88614
|
-
});
|
89606
|
+
addedElements.forEach(function (_, i) {
|
89607
|
+
_this.runAnimation(addedHtmlElements[i], enterOptions[i], onAnimationEndCallback);
|
89608
|
+
});
|
89609
|
+
removedElements.forEach(function (_, i) {
|
89610
|
+
_this.runAnimation(removedHtmlElements[i], leaveOptions[i], onAnimationEndCallback);
|
89611
|
+
});
|
89612
|
+
}, function () { return addedElements.length == 0 || addedElements.some(function (el) { return !!options.getAnimatedElement(el); }); });
|
88615
89613
|
};
|
88616
89614
|
return AnimationGroupUtils;
|
88617
89615
|
}(AnimationUtils));
|
@@ -88632,6 +89630,7 @@ var AnimationProperty = /** @class */ (function () {
|
|
88632
89630
|
this._debouncedSync.run(newValue);
|
88633
89631
|
}
|
88634
89632
|
else {
|
89633
|
+
this.cancel();
|
88635
89634
|
this.update(newValue);
|
88636
89635
|
}
|
88637
89636
|
};
|
@@ -88641,6 +89640,7 @@ var AnimationProperty = /** @class */ (function () {
|
|
88641
89640
|
};
|
88642
89641
|
return AnimationProperty;
|
88643
89642
|
}());
|
89643
|
+
|
88644
89644
|
var AnimationBoolean = /** @class */ (function (_super) {
|
88645
89645
|
__extends(AnimationBoolean, _super);
|
88646
89646
|
function AnimationBoolean() {
|
@@ -88653,12 +89653,12 @@ var AnimationBoolean = /** @class */ (function (_super) {
|
|
88653
89653
|
if (newValue !== this.getCurrentValue()) {
|
88654
89654
|
if (newValue) {
|
88655
89655
|
this.update(newValue);
|
88656
|
-
this.animation.onEnter(
|
89656
|
+
this.animation.onEnter(this.animationOptions);
|
88657
89657
|
}
|
88658
89658
|
else {
|
88659
|
-
this.animation.onLeave(
|
89659
|
+
this.animation.onLeave(this.animationOptions, function () {
|
88660
89660
|
_this.update(newValue);
|
88661
|
-
}
|
89661
|
+
});
|
88662
89662
|
}
|
88663
89663
|
}
|
88664
89664
|
else {
|
@@ -88680,19 +89680,42 @@ var AnimationGroup = /** @class */ (function (_super) {
|
|
88680
89680
|
var oldValue = this.getCurrentValue();
|
88681
89681
|
var itemsToAdd = newValue.filter(function (el) { return oldValue.indexOf(el) < 0; });
|
88682
89682
|
var deletedItems = oldValue.filter(function (el) { return newValue.indexOf(el) < 0; });
|
88683
|
-
this.animation.onEnter(function (el) { return _this.animationOptions.getAnimatedElement(el); }, function (el) { return _this.animationOptions.getEnterOptions(el); }, itemsToAdd);
|
88684
89683
|
if (itemsToAdd.length == 0 && (deletedItems === null || deletedItems === void 0 ? void 0 : deletedItems.length) > 0) {
|
88685
|
-
this.animation.
|
88686
|
-
_this.update(newValue);
|
88687
|
-
}, function (el) { return _this.animationOptions.getLeaveOptions(el); }, deletedItems);
|
89684
|
+
this.animation.runGroupAnimation(this.animationOptions, [], deletedItems, function () { return _this.update(newValue); });
|
88688
89685
|
}
|
88689
89686
|
else {
|
88690
89687
|
this.update(newValue);
|
89688
|
+
this.animation.runGroupAnimation(this.animationOptions, itemsToAdd, []);
|
88691
89689
|
}
|
88692
89690
|
};
|
88693
89691
|
return AnimationGroup;
|
88694
89692
|
}(AnimationProperty));
|
88695
89693
|
|
89694
|
+
var AnimationTab = /** @class */ (function (_super) {
|
89695
|
+
__extends(AnimationTab, _super);
|
89696
|
+
function AnimationTab(animationOptions, update, getCurrentValue, mergeValues) {
|
89697
|
+
var _this = _super.call(this, animationOptions, update, getCurrentValue) || this;
|
89698
|
+
_this.mergeValues = mergeValues;
|
89699
|
+
_this.animation = new AnimationGroupUtils();
|
89700
|
+
return _this;
|
89701
|
+
}
|
89702
|
+
AnimationTab.prototype._sync = function (newValue) {
|
89703
|
+
var _this = this;
|
89704
|
+
var oldValue = [].concat(this.getCurrentValue());
|
89705
|
+
if (oldValue[0] !== newValue[0]) {
|
89706
|
+
var tempValue = !!this.mergeValues ? this.mergeValues(newValue, oldValue) : [].concat(oldValue, newValue);
|
89707
|
+
this.update(tempValue, true);
|
89708
|
+
this.animation.runGroupAnimation(this.animationOptions, newValue, oldValue, function () {
|
89709
|
+
_this.update(newValue);
|
89710
|
+
});
|
89711
|
+
}
|
89712
|
+
else {
|
89713
|
+
this.update(newValue);
|
89714
|
+
}
|
89715
|
+
};
|
89716
|
+
return AnimationTab;
|
89717
|
+
}(AnimationProperty));
|
89718
|
+
|
88696
89719
|
|
88697
89720
|
|
88698
89721
|
/***/ }),
|