survey-react 1.9.112 → 1.9.114

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/survey.react.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * surveyjs - Survey JavaScript library v1.9.112
2
+ * surveyjs - Survey JavaScript library v1.9.114
3
3
  * Copyright (c) 2015-2023 Devsoft Baltic OÜ - http://surveyjs.io/
4
4
  * License: MIT (http://www.opensource.org/licenses/mit-license.php)
5
5
  */
@@ -2203,9 +2203,9 @@ var Base = /** @class */ (function () {
2203
2203
  Array.isArray(oldValue) &&
2204
2204
  !!this.arraysInfo &&
2205
2205
  (!val || Array.isArray(val))) {
2206
- if (this.isTwoValueEquals(oldValue, val))
2207
- return;
2208
- this.setArrayPropertyDirectly(name, val);
2206
+ if (!this.isTwoValueEquals(oldValue, val)) {
2207
+ this.setArrayPropertyDirectly(name, val);
2208
+ }
2209
2209
  }
2210
2210
  else {
2211
2211
  this.setPropertyValueDirectly(name, val);
@@ -4383,346 +4383,6 @@ var ConsoleWarnings = /** @class */ (function () {
4383
4383
 
4384
4384
 
4385
4385
 
4386
- /***/ }),
4387
-
4388
- /***/ "./src/cover.ts":
4389
- /*!**********************!*\
4390
- !*** ./src/cover.ts ***!
4391
- \**********************/
4392
- /*! exports provided: CoverCell, Cover */
4393
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
4394
-
4395
- "use strict";
4396
- __webpack_require__.r(__webpack_exports__);
4397
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "CoverCell", function() { return CoverCell; });
4398
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cover", function() { return Cover; });
4399
- /* harmony import */ var _base__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./base */ "./src/base.ts");
4400
- /* harmony import */ var _jsonobject__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./jsonobject */ "./src/jsonobject.ts");
4401
- /* harmony import */ var _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./utils/cssClassBuilder */ "./src/utils/cssClassBuilder.ts");
4402
- /* harmony import */ var _utils_utils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./utils/utils */ "./src/utils/utils.ts");
4403
- var __extends = (undefined && undefined.__extends) || (function () {
4404
- var extendStatics = function (d, b) {
4405
- extendStatics = Object.setPrototypeOf ||
4406
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
4407
- function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
4408
- return extendStatics(d, b);
4409
- };
4410
- return function (d, b) {
4411
- if (typeof b !== "function" && b !== null)
4412
- throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
4413
- extendStatics(d, b);
4414
- function __() { this.constructor = d; }
4415
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
4416
- };
4417
- })();
4418
- var __decorate = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
4419
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4420
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
4421
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
4422
- return c > 3 && r && Object.defineProperty(target, key, r), r;
4423
- };
4424
-
4425
-
4426
-
4427
-
4428
- var CoverCell = /** @class */ (function () {
4429
- function CoverCell(cover, positionX, positionY) {
4430
- this.cover = cover;
4431
- this.positionX = positionX;
4432
- this.positionY = positionY;
4433
- }
4434
- CoverCell.prototype.calcRow = function (positionY) {
4435
- return positionY === "top" ? 1 : (positionY === "middle" ? 2 : 3);
4436
- };
4437
- CoverCell.prototype.calcColumn = function (positionX) {
4438
- return positionX === "left" ? 1 : (positionX === "center" ? 2 : 3);
4439
- };
4440
- CoverCell.prototype.calcAlignItems = function (positionX) {
4441
- return positionX === "left" ? "flex-start" : (positionX === "center" ? "center" : "flex-end");
4442
- };
4443
- CoverCell.prototype.calcAlignText = function (positionX) {
4444
- return positionX === "left" ? "start" : (positionX === "center" ? "center" : "end");
4445
- };
4446
- CoverCell.prototype.calcJustifyContent = function (positionY) {
4447
- return positionY === "top" ? "flex-start" : (positionY === "middle" ? "center" : "flex-end");
4448
- };
4449
- Object.defineProperty(CoverCell.prototype, "survey", {
4450
- get: function () {
4451
- return this.cover.survey;
4452
- },
4453
- enumerable: false,
4454
- configurable: true
4455
- });
4456
- Object.defineProperty(CoverCell.prototype, "css", {
4457
- get: function () {
4458
- var result = CoverCell.CLASSNAME + " " + CoverCell.CLASSNAME + "--" + this.positionX + " " + CoverCell.CLASSNAME + "--" + this.positionY;
4459
- return result;
4460
- },
4461
- enumerable: false,
4462
- configurable: true
4463
- });
4464
- Object.defineProperty(CoverCell.prototype, "style", {
4465
- get: function () {
4466
- var result = {};
4467
- result["gridColumn"] = this.calcColumn(this.positionX);
4468
- result["gridRow"] = this.calcRow(this.positionY);
4469
- return result;
4470
- },
4471
- enumerable: false,
4472
- configurable: true
4473
- });
4474
- Object.defineProperty(CoverCell.prototype, "contentStyle", {
4475
- get: function () {
4476
- var result = {};
4477
- result["textAlign"] = this.calcAlignText(this.positionX);
4478
- result["alignItems"] = this.calcAlignItems(this.positionX);
4479
- result["justifyContent"] = this.calcJustifyContent(this.positionY);
4480
- return result;
4481
- },
4482
- enumerable: false,
4483
- configurable: true
4484
- });
4485
- Object.defineProperty(CoverCell.prototype, "showLogo", {
4486
- get: function () {
4487
- return this.survey.hasLogo && this.positionX === this.cover.logoPositionX && this.positionY === this.cover.logoPositionY;
4488
- },
4489
- enumerable: false,
4490
- configurable: true
4491
- });
4492
- Object.defineProperty(CoverCell.prototype, "showTitle", {
4493
- get: function () {
4494
- return this.survey.hasTitle && this.positionX === this.cover.titlePositionX && this.positionY === this.cover.titlePositionY;
4495
- },
4496
- enumerable: false,
4497
- configurable: true
4498
- });
4499
- Object.defineProperty(CoverCell.prototype, "showDescription", {
4500
- get: function () {
4501
- return this.survey.renderedHasDescription && this.positionX === this.cover.descriptionPositionX && this.positionY === this.cover.descriptionPositionY;
4502
- },
4503
- enumerable: false,
4504
- configurable: true
4505
- });
4506
- Object.defineProperty(CoverCell.prototype, "textAreaWidth", {
4507
- get: function () {
4508
- if (!this.cover.textAreaWidth) {
4509
- return "";
4510
- }
4511
- return "" + this.cover.textAreaWidth + "px";
4512
- },
4513
- enumerable: false,
4514
- configurable: true
4515
- });
4516
- CoverCell.CLASSNAME = "sv-cover__cell";
4517
- return CoverCell;
4518
- }());
4519
-
4520
- var Cover = /** @class */ (function (_super) {
4521
- __extends(Cover, _super);
4522
- function Cover() {
4523
- var _this = _super.call(this) || this;
4524
- _this.cells = [];
4525
- _this.renderBackgroundImage = Object(_utils_utils__WEBPACK_IMPORTED_MODULE_3__["wrapUrlForBackgroundImage"])(_this.backgroundImage);
4526
- ["top", "middle", "bottom"].forEach(function (positionY) {
4527
- return ["left", "center", "right"].forEach(function (positionX) { return _this.cells.push(new CoverCell(_this, positionX, positionY)); });
4528
- });
4529
- _this.updateCoverClasses();
4530
- _this.updateContentClasses();
4531
- _this.updateBackgroundImageClasses();
4532
- return _this;
4533
- }
4534
- Cover.prototype.calcBackgroundSize = function (backgroundImageFit) {
4535
- if (backgroundImageFit === "fill") {
4536
- return "100% 100%";
4537
- }
4538
- if (backgroundImageFit === "tile") {
4539
- return "auto";
4540
- }
4541
- return backgroundImageFit;
4542
- };
4543
- Cover.prototype.updateCoverClasses = function () {
4544
- this.coverClasses = new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_2__["CssClassBuilder"]()
4545
- .append("sv-cover")
4546
- .append("sv-conver__without-background", (!this.backgroundColor || this.backgroundColor === "trasparent") && !this.backgroundImage)
4547
- .append("sv-conver__overlap", this.overlapEnabled)
4548
- .toString();
4549
- };
4550
- Cover.prototype.updateContentClasses = function () {
4551
- this.contentClasses = new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_2__["CssClassBuilder"]()
4552
- .append("sv-conver__content")
4553
- .append("sv-conver__content--static", this.inheritWidthFrom === "survey" && !!this.survey && this.survey.calculateWidthMode() === "static")
4554
- .append("sv-conver__content--responsive", this.inheritWidthFrom === "page" || (!!this.survey && this.survey.calculateWidthMode() === "responsive"))
4555
- .toString();
4556
- };
4557
- Cover.prototype.updateBackgroundImageClasses = function () {
4558
- this.backgroundImageClasses = new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_2__["CssClassBuilder"]()
4559
- .append("sv-cover__background-image")
4560
- .append("sv-cover__background-image--contain", this.backgroundImageFit === "contain")
4561
- .append("sv-cover__background-image--tile", this.backgroundImageFit === "tile")
4562
- .toString();
4563
- };
4564
- Cover.prototype.fromTheme = function (theme) {
4565
- _super.prototype.fromJSON.call(this, theme.header);
4566
- if (!!theme.cssVariables) {
4567
- this.backgroundColor = theme.cssVariables["--sjs-cover-backcolor"];
4568
- }
4569
- };
4570
- Cover.prototype.getType = function () {
4571
- return "cover";
4572
- };
4573
- Object.defineProperty(Cover.prototype, "renderedHeight", {
4574
- get: function () {
4575
- return this.height ? this.height + "px" : undefined;
4576
- },
4577
- enumerable: false,
4578
- configurable: true
4579
- });
4580
- Object.defineProperty(Cover.prototype, "renderedtextAreaWidth", {
4581
- get: function () {
4582
- return this.textAreaWidth ? this.textAreaWidth + "px" : undefined;
4583
- },
4584
- enumerable: false,
4585
- configurable: true
4586
- });
4587
- Object.defineProperty(Cover.prototype, "survey", {
4588
- get: function () {
4589
- return this._survey;
4590
- },
4591
- set: function (newValue) {
4592
- var _this = this;
4593
- if (this._survey === newValue)
4594
- return;
4595
- this._survey = newValue;
4596
- if (!!newValue) {
4597
- this.updateContentClasses();
4598
- this._survey.onPropertyChanged.add(function (sender, options) {
4599
- if (options.name == "widthMode") {
4600
- _this.updateContentClasses();
4601
- }
4602
- });
4603
- }
4604
- },
4605
- enumerable: false,
4606
- configurable: true
4607
- });
4608
- Object.defineProperty(Cover.prototype, "backgroundImageStyle", {
4609
- get: function () {
4610
- if (!this.backgroundImage)
4611
- return null;
4612
- return {
4613
- opacity: this.backgroundImageOpacity,
4614
- backgroundImage: this.renderBackgroundImage,
4615
- backgroundSize: this.calcBackgroundSize(this.backgroundImageFit),
4616
- };
4617
- },
4618
- enumerable: false,
4619
- configurable: true
4620
- });
4621
- Cover.prototype.propertyValueChanged = function (name, oldValue, newValue) {
4622
- _super.prototype.propertyValueChanged.call(this, name, oldValue, newValue);
4623
- if (name === "backgroundColor" || name === "backgroundImage" || name === "overlapEnabled") {
4624
- this.updateCoverClasses();
4625
- }
4626
- if (name === "inheritWidthFrom") {
4627
- this.updateContentClasses();
4628
- }
4629
- if (name === "backgroundImageFit") {
4630
- this.updateBackgroundImageClasses();
4631
- }
4632
- };
4633
- __decorate([
4634
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
4635
- ], Cover.prototype, "height", void 0);
4636
- __decorate([
4637
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
4638
- ], Cover.prototype, "inheritWidthFrom", void 0);
4639
- __decorate([
4640
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
4641
- ], Cover.prototype, "textAreaWidth", void 0);
4642
- __decorate([
4643
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
4644
- ], Cover.prototype, "textGlowEnabled", void 0);
4645
- __decorate([
4646
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
4647
- ], Cover.prototype, "overlapEnabled", void 0);
4648
- __decorate([
4649
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
4650
- ], Cover.prototype, "backgroundColor", void 0);
4651
- __decorate([
4652
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])({
4653
- onSet: function (newVal, target) {
4654
- target.renderBackgroundImage = Object(_utils_utils__WEBPACK_IMPORTED_MODULE_3__["wrapUrlForBackgroundImage"])(newVal);
4655
- }
4656
- })
4657
- ], Cover.prototype, "backgroundImage", void 0);
4658
- __decorate([
4659
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
4660
- ], Cover.prototype, "renderBackgroundImage", void 0);
4661
- __decorate([
4662
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
4663
- ], Cover.prototype, "backgroundImageFit", void 0);
4664
- __decorate([
4665
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
4666
- ], Cover.prototype, "backgroundImageOpacity", void 0);
4667
- __decorate([
4668
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
4669
- ], Cover.prototype, "logoPositionX", void 0);
4670
- __decorate([
4671
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
4672
- ], Cover.prototype, "logoPositionY", void 0);
4673
- __decorate([
4674
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
4675
- ], Cover.prototype, "titlePositionX", void 0);
4676
- __decorate([
4677
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
4678
- ], Cover.prototype, "titlePositionY", void 0);
4679
- __decorate([
4680
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
4681
- ], Cover.prototype, "descriptionPositionX", void 0);
4682
- __decorate([
4683
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
4684
- ], Cover.prototype, "descriptionPositionY", void 0);
4685
- __decorate([
4686
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
4687
- ], Cover.prototype, "logoStyle", void 0);
4688
- __decorate([
4689
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
4690
- ], Cover.prototype, "titleStyle", void 0);
4691
- __decorate([
4692
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
4693
- ], Cover.prototype, "descriptionStyle", void 0);
4694
- __decorate([
4695
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
4696
- ], Cover.prototype, "coverClasses", void 0);
4697
- __decorate([
4698
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
4699
- ], Cover.prototype, "contentClasses", void 0);
4700
- __decorate([
4701
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
4702
- ], Cover.prototype, "backgroundImageClasses", void 0);
4703
- return Cover;
4704
- }(_base__WEBPACK_IMPORTED_MODULE_0__["Base"]));
4705
-
4706
- _jsonobject__WEBPACK_IMPORTED_MODULE_1__["Serializer"].addClass("cover", [
4707
- { name: "height:number", minValue: 0, default: 256 },
4708
- { name: "inheritWidthFrom", default: "survey" },
4709
- { name: "textAreaWidth:number", minValue: 0, default: 512 },
4710
- { name: "textGlowEnabled:boolean" },
4711
- { name: "overlapEnabled:boolean" },
4712
- { name: "backgroundImage:file" },
4713
- { name: "backgroundImageOpacity:number", minValue: 0, maxValue: 1, default: 1 },
4714
- { name: "backgroundImageFit", default: "cover", choices: ["cover", "fill", "contain"] },
4715
- { name: "logoPositionX", default: "right" },
4716
- { name: "logoPositionY", default: "top" },
4717
- { name: "titlePositionX", default: "left" },
4718
- { name: "titlePositionY", default: "bottom" },
4719
- { name: "descriptionPositionX", default: "left" },
4720
- { name: "descriptionPositionY", default: "bottom" }
4721
- ], function () {
4722
- return new Cover();
4723
- });
4724
-
4725
-
4726
4386
  /***/ }),
4727
4387
 
4728
4388
  /***/ "./src/defaultCss/cssmodern.ts":
@@ -5692,7 +5352,7 @@ var defaultV2Css = {
5692
5352
  header: "sd-panel__header sd-element__header sd-element__header--location-top",
5693
5353
  collapsed: "sd-element--collapsed",
5694
5354
  expanded: "sd-element--expanded",
5695
- nested: "sd-element--nested",
5355
+ nested: "sd-element--nested sd-element--nested-with-borders",
5696
5356
  invisible: "sd-element--invisible",
5697
5357
  navigationButton: "",
5698
5358
  compact: "sd-element--with-frame sd-element--compact"
@@ -5716,6 +5376,7 @@ var defaultV2Css = {
5716
5376
  progressContainer: "sd-paneldynamic__progress-container",
5717
5377
  progress: "sd-progress",
5718
5378
  progressBar: "sd-progress__bar",
5379
+ nested: "sd-element--nested sd-element--nested-with-borders",
5719
5380
  progressText: "sd-paneldynamic__progress-text",
5720
5381
  separator: "sd-paneldynamic__separator",
5721
5382
  panelWrapper: "sd-paneldynamic__panel-wrapper",
@@ -5782,6 +5443,9 @@ var defaultV2Css = {
5782
5443
  contentLeft: "sd-question__content--left",
5783
5444
  titleNumInline: "sd-element__title--num-inline",
5784
5445
  titleLeftRoot: "sd-question--left",
5446
+ titleTopRoot: "sd-question--title-top",
5447
+ descriptionUnderInputRoot: "sd-question--description-under-input",
5448
+ titleBottomRoot: "sd-question--title-bottom",
5785
5449
  titleOnAnswer: "sd-question__title--answer",
5786
5450
  titleEmpty: "sd-question__title--empty",
5787
5451
  titleOnError: "sd-question__title--error",
@@ -5804,6 +5468,8 @@ var defaultV2Css = {
5804
5468
  commentArea: "sd-question__comment-area",
5805
5469
  formGroup: "sd-question__form-group",
5806
5470
  hasError: "sd-question--error",
5471
+ hasErrorTop: "sd-question--error-top",
5472
+ hasErrorBottom: "sd-question--error-bottom",
5807
5473
  collapsed: "sd-element--collapsed",
5808
5474
  expanded: "sd-element--expanded",
5809
5475
  nested: "sd-element--nested",
@@ -5829,7 +5495,6 @@ var defaultV2Css = {
5829
5495
  root: "sd-question__erbox",
5830
5496
  icon: "",
5831
5497
  item: "",
5832
- tooltip: "sd-question__erbox--tooltip",
5833
5498
  outsideQuestion: "sd-question__erbox--outside-question",
5834
5499
  aboveQuestion: "sd-question__erbox--above-question",
5835
5500
  belowQuestion: "sd-question__erbox--below-question",
@@ -6876,7 +6541,7 @@ var DragDropChoices = /** @class */ (function (_super) {
6876
6541
  }
6877
6542
  var draggedElementShortcut = document.createElement("div");
6878
6543
  // draggedElementShortcut.innerText = text;
6879
- draggedElementShortcut.style.cssText = " \n cursor: grabbing;\n position: absolute;\n z-index: 10000;\n font-family: var(--font-family, 'Open Sans');\n ";
6544
+ draggedElementShortcut.style.cssText = " \n cursor: grabbing;\n position: absolute;\n z-index: 10000;\n font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));\n ";
6880
6545
  var isDeepClone = true;
6881
6546
  var clone = (draggedElementNode
6882
6547
  .closest("[data-sv-drop-target-item-value]")
@@ -7181,6 +6846,7 @@ var DragDropCore = /** @class */ (function () {
7181
6846
  };
7182
6847
  DragDropCore.prototype.clear = function () {
7183
6848
  this.dropTarget = null;
6849
+ this.prevDropTarget = null;
7184
6850
  this.draggedElement = null;
7185
6851
  this.isBottom = null;
7186
6852
  this.parentElement = null;
@@ -7544,7 +7210,7 @@ var DragDropMatrixRows = /** @class */ (function (_super) {
7544
7210
  var _this = this;
7545
7211
  var draggedElementShortcut = document.createElement("div");
7546
7212
  // draggedElementShortcut.innerText = text;
7547
- draggedElementShortcut.style.cssText = " \n cursor: grabbing;\n position: absolute;\n z-index: 10000;\n font-family: var(--font-family, 'Open Sans');\n ";
7213
+ draggedElementShortcut.style.cssText = " \n cursor: grabbing;\n position: absolute;\n z-index: 10000;\n font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));\n ";
7548
7214
  var isDeepClone = true;
7549
7215
  if (!!draggedElementNode) {
7550
7216
  var row = (draggedElementNode
@@ -7720,7 +7386,7 @@ var DragDropRankingChoices = /** @class */ (function (_super) {
7720
7386
  DragDropRankingChoices.prototype.createDraggedElementShortcut = function (text, draggedElementNode, event) {
7721
7387
  var draggedElementShortcut = document.createElement("div");
7722
7388
  draggedElementShortcut.className = this.shortcutClass + " sv-ranking-shortcut";
7723
- draggedElementShortcut.style.cssText = " \n cursor: grabbing;\n position: absolute;\n z-index: 10000;\n border-radius: calc(12.5 * var(--sjs-base-unit, var(--base-unit, 8px)));\n min-width: 100px;\n max-width: 400px;\n box-shadow: var(--sjs-shadow-medium, 0px 2px 6px 0px rgba(0, 0, 0, 0.1)), var(--sjs-shadow-large, 0px 8px 16px 0px rgba(0, 0, 0, 0.1));\n background-color: var(--sjs-general-backcolor, var(--background, #fff));\n font-family: var(--font-family, 'Open Sans');\n ";
7389
+ draggedElementShortcut.style.cssText = " \n cursor: grabbing;\n position: absolute;\n z-index: 10000;\n border-radius: calc(12.5 * var(--sjs-base-unit, var(--base-unit, 8px)));\n min-width: 100px;\n max-width: 400px;\n box-shadow: var(--sjs-shadow-medium, 0px 2px 6px 0px rgba(0, 0, 0, 0.1)), var(--sjs-shadow-large, 0px 8px 16px 0px rgba(0, 0, 0, 0.1));\n background-color: var(--sjs-general-backcolor, var(--background, #fff));\n font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));\n ";
7724
7390
  var isDeepClone = true;
7725
7391
  var clone = draggedElementNode.cloneNode(isDeepClone);
7726
7392
  draggedElementShortcut.appendChild(clone);
@@ -7854,13 +7520,6 @@ var DragDropRankingSelectToRank = /** @class */ (function (_super) {
7854
7520
  function DragDropRankingSelectToRank() {
7855
7521
  return _super !== null && _super.apply(this, arguments) || this;
7856
7522
  }
7857
- DragDropRankingSelectToRank.prototype.onStartDrag = function (event) {
7858
- var target = event.target;
7859
- var fromContainerNode = target.closest(".sv-ranking__container--from");
7860
- if (!!fromContainerNode) {
7861
- fromContainerNode.style.minHeight = fromContainerNode.offsetHeight + "px";
7862
- }
7863
- };
7864
7523
  DragDropRankingSelectToRank.prototype.findDropTargetNodeByDragOverNode = function (dragOverNode) {
7865
7524
  if (dragOverNode.dataset.ranking === "from-container" || dragOverNode.dataset.ranking === "to-container") {
7866
7525
  return dragOverNode;
@@ -7915,12 +7574,16 @@ var DragDropRankingSelectToRank = /** @class */ (function (_super) {
7915
7574
  };
7916
7575
  DragDropRankingSelectToRank.prototype.doRankBetween = function (dropTargetNode, fromChoicesArray, toChoicesArray, rankFunction) {
7917
7576
  var questionModel = this.parentElement;
7577
+ var _a = this.getIndixies(questionModel, fromChoicesArray, toChoicesArray), fromIndex = _a.fromIndex, toIndex = _a.toIndex;
7578
+ rankFunction(questionModel, fromIndex, toIndex);
7579
+ this.doUIEffects(dropTargetNode, fromIndex, toIndex);
7580
+ };
7581
+ DragDropRankingSelectToRank.prototype.getIndixies = function (model, fromChoicesArray, toChoicesArray) {
7918
7582
  var fromIndex = fromChoicesArray.indexOf(this.draggedElement);
7919
7583
  var toIndex = toChoicesArray.indexOf(this.dropTarget);
7920
7584
  if (toIndex === -1)
7921
- toIndex = toChoicesArray.length;
7922
- rankFunction(questionModel, fromIndex, toIndex);
7923
- this.doUIEffects(dropTargetNode, fromIndex, toIndex);
7585
+ toIndex = model.value.length;
7586
+ return { fromIndex: fromIndex, toIndex: toIndex };
7924
7587
  };
7925
7588
  DragDropRankingSelectToRank.prototype.doUIEffects = function (dropTargetNode, fromIndex, toIndex) {
7926
7589
  var questionModel = this.parentElement;
@@ -9200,7 +8863,7 @@ __webpack_require__.r(__webpack_exports__);
9200
8863
  /*!*************************************!*\
9201
8864
  !*** ./src/entries/chunks/model.ts ***!
9202
8865
  \*************************************/
9203
- /*! exports provided: Version, ReleaseDate, checkLibraryVersion, setLicenseKey, hasLicense, settings, Helpers, AnswerCountValidator, EmailValidator, NumericValidator, RegexValidator, SurveyValidator, TextValidator, ValidatorResult, ExpressionValidator, ValidatorRunner, ItemValue, Base, Event, EventBase, ArrayChanges, ComputedUpdater, SurveyError, SurveyElementCore, SurveyElement, DragTypeOverMeEnum, CalculatedValue, CustomError, AnswerRequiredError, OneAnswerRequiredError, RequreNumericError, ExceedSizeError, LocalizableString, LocalizableStrings, HtmlConditionItem, UrlConditionItem, ChoicesRestful, ChoicesRestfull, FunctionFactory, registerFunction, ConditionRunner, ExpressionRunner, ExpressionExecutor, Operand, Const, BinaryOperand, Variable, FunctionOperand, ArrayOperand, UnaryOperand, ConditionsParser, ProcessValue, JsonError, JsonIncorrectTypeError, JsonMetadata, JsonMetadataClass, JsonMissingTypeError, JsonMissingTypeErrorBase, JsonObject, JsonObjectProperty, JsonRequiredPropertyError, JsonUnknownPropertyError, Serializer, property, propertyArray, MatrixDropdownCell, MatrixDropdownRowModelBase, QuestionMatrixDropdownModelBase, MatrixDropdownColumn, matrixDropdownColumnTypes, QuestionMatrixDropdownRenderedCell, QuestionMatrixDropdownRenderedRow, QuestionMatrixDropdownRenderedTable, MatrixDropdownRowModel, QuestionMatrixDropdownModel, MatrixDynamicRowModel, QuestionMatrixDynamicModel, MatrixRowModel, MatrixCells, QuestionMatrixModel, QuestionMatrixBaseModel, MultipleTextItemModel, MultipleTextCell, MultipleTextErrorCell, MutlipleTextErrorRow, MutlipleTextRow, QuestionMultipleTextModel, MultipleTextEditorModel, PanelModel, PanelModelBase, QuestionRowModel, FlowPanelModel, PageModel, DefaultTitleModel, Question, QuestionNonValue, QuestionEmptyModel, QuestionCheckboxBase, QuestionSelectBase, QuestionCheckboxModel, QuestionTagboxModel, QuestionRankingModel, QuestionCommentModel, QuestionDropdownModel, QuestionFactory, ElementFactory, QuestionFileModel, QuestionHtmlModel, QuestionRadiogroupModel, QuestionRatingModel, RenderedRatingItem, QuestionExpressionModel, QuestionTextBase, CharacterCounter, QuestionTextModel, QuestionBooleanModel, QuestionImagePickerModel, ImageItemValue, QuestionImageModel, QuestionSignaturePadModel, QuestionPanelDynamicModel, QuestionPanelDynamicItem, SurveyTimer, SurveyTimerModel, tryNavigateToPage, tryFocusPage, createTOCListModel, getTocRootCss, TOCModel, SurveyProgressModel, SurveyProgressButtonsModel, SurveyModel, SurveyTrigger, SurveyTriggerComplete, SurveyTriggerSetValue, SurveyTriggerVisible, SurveyTriggerCopyValue, SurveyTriggerRunExpression, SurveyTriggerSkip, Trigger, PopupSurveyModel, SurveyWindowModel, TextPreProcessor, Notifier, Cover, CoverCell, dxSurveyService, englishStrings, surveyLocalization, surveyStrings, QuestionCustomWidget, CustomWidgetCollection, QuestionCustomModel, QuestionCompositeModel, ComponentQuestionJSON, ComponentCollection, StylesManager, ListModel, MultiSelectListModel, PopupModel, createDialogOptions, PopupBaseViewModel, PopupDropdownViewModel, PopupModalViewModel, createPopupViewModel, createPopupModalViewModel, DropdownListModel, DropdownMultiSelectListModel, QuestionButtonGroupModel, ButtonGroupItemModel, ButtonGroupItemValue, IsMobile, IsTouch, _setIsTouch, confirmAction, confirmActionAsync, detectIEOrEdge, doKey2ClickUp, doKey2ClickDown, doKey2ClickBlur, loadFileFromBase64, increaseHeightByContent, createSvg, sanitizeEditableContent, CssClassBuilder, surveyCss, defaultV2Css, defaultV2ThemeName, DragDropCore, DragDropChoices, DragDropRankingSelectToRank */
8866
+ /*! exports provided: Version, ReleaseDate, checkLibraryVersion, setLicenseKey, slk, hasLicense, settings, Helpers, AnswerCountValidator, EmailValidator, NumericValidator, RegexValidator, SurveyValidator, TextValidator, ValidatorResult, ExpressionValidator, ValidatorRunner, ItemValue, Base, Event, EventBase, ArrayChanges, ComputedUpdater, SurveyError, SurveyElementCore, SurveyElement, DragTypeOverMeEnum, CalculatedValue, CustomError, AnswerRequiredError, OneAnswerRequiredError, RequreNumericError, ExceedSizeError, LocalizableString, LocalizableStrings, HtmlConditionItem, UrlConditionItem, ChoicesRestful, ChoicesRestfull, FunctionFactory, registerFunction, ConditionRunner, ExpressionRunner, ExpressionExecutor, Operand, Const, BinaryOperand, Variable, FunctionOperand, ArrayOperand, UnaryOperand, ConditionsParser, ProcessValue, JsonError, JsonIncorrectTypeError, JsonMetadata, JsonMetadataClass, JsonMissingTypeError, JsonMissingTypeErrorBase, JsonObject, JsonObjectProperty, JsonRequiredPropertyError, JsonUnknownPropertyError, Serializer, property, propertyArray, MatrixDropdownCell, MatrixDropdownRowModelBase, QuestionMatrixDropdownModelBase, MatrixDropdownColumn, matrixDropdownColumnTypes, QuestionMatrixDropdownRenderedCell, QuestionMatrixDropdownRenderedRow, QuestionMatrixDropdownRenderedTable, MatrixDropdownRowModel, QuestionMatrixDropdownModel, MatrixDynamicRowModel, QuestionMatrixDynamicModel, MatrixRowModel, MatrixCells, QuestionMatrixModel, QuestionMatrixBaseModel, MultipleTextItemModel, MultipleTextCell, MultipleTextErrorCell, MutlipleTextErrorRow, MutlipleTextRow, QuestionMultipleTextModel, MultipleTextEditorModel, PanelModel, PanelModelBase, QuestionRowModel, FlowPanelModel, PageModel, DefaultTitleModel, Question, QuestionNonValue, QuestionEmptyModel, QuestionCheckboxBase, QuestionSelectBase, QuestionCheckboxModel, QuestionTagboxModel, QuestionRankingModel, QuestionCommentModel, QuestionDropdownModel, QuestionFactory, ElementFactory, QuestionFileModel, QuestionHtmlModel, QuestionRadiogroupModel, QuestionRatingModel, RenderedRatingItem, QuestionExpressionModel, QuestionTextBase, CharacterCounter, QuestionTextModel, QuestionBooleanModel, QuestionImagePickerModel, ImageItemValue, QuestionImageModel, QuestionSignaturePadModel, QuestionPanelDynamicModel, QuestionPanelDynamicItem, SurveyTimer, SurveyTimerModel, tryNavigateToPage, tryFocusPage, createTOCListModel, getTocRootCss, TOCModel, SurveyProgressModel, SurveyProgressButtonsModel, SurveyModel, SurveyTrigger, SurveyTriggerComplete, SurveyTriggerSetValue, SurveyTriggerVisible, SurveyTriggerCopyValue, SurveyTriggerRunExpression, SurveyTriggerSkip, Trigger, PopupSurveyModel, SurveyWindowModel, TextPreProcessor, Notifier, Cover, CoverCell, dxSurveyService, englishStrings, surveyLocalization, surveyStrings, QuestionCustomWidget, CustomWidgetCollection, QuestionCustomModel, QuestionCompositeModel, ComponentQuestionJSON, ComponentCollection, StylesManager, ListModel, MultiSelectListModel, PopupModel, createDialogOptions, PopupBaseViewModel, PopupDropdownViewModel, PopupModalViewModel, createPopupViewModel, createPopupModalViewModel, DropdownListModel, DropdownMultiSelectListModel, QuestionButtonGroupModel, ButtonGroupItemModel, ButtonGroupItemValue, IsMobile, IsTouch, _setIsTouch, confirmAction, confirmActionAsync, detectIEOrEdge, doKey2ClickUp, doKey2ClickDown, doKey2ClickBlur, loadFileFromBase64, increaseHeightByContent, createSvg, sanitizeEditableContent, CssClassBuilder, surveyCss, defaultV2Css, defaultV2ThemeName, DragDropCore, DragDropChoices, DragDropRankingSelectToRank */
9204
8867
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
9205
8868
 
9206
8869
  "use strict";
@@ -9209,6 +8872,7 @@ __webpack_require__.r(__webpack_exports__);
9209
8872
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ReleaseDate", function() { return ReleaseDate; });
9210
8873
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "checkLibraryVersion", function() { return checkLibraryVersion; });
9211
8874
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "setLicenseKey", function() { return setLicenseKey; });
8875
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "slk", function() { return slk; });
9212
8876
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hasLicense", function() { return hasLicense; });
9213
8877
  /* harmony import */ var _settings__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../settings */ "./src/settings.ts");
9214
8878
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "settings", function() { return _settings__WEBPACK_IMPORTED_MODULE_0__["settings"]; });
@@ -9553,10 +9217,10 @@ __webpack_require__.r(__webpack_exports__);
9553
9217
  /* harmony import */ var _notifier__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ../../notifier */ "./src/notifier.ts");
9554
9218
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Notifier", function() { return _notifier__WEBPACK_IMPORTED_MODULE_64__["Notifier"]; });
9555
9219
 
9556
- /* harmony import */ var _cover__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ../../cover */ "./src/cover.ts");
9557
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Cover", function() { return _cover__WEBPACK_IMPORTED_MODULE_65__["Cover"]; });
9220
+ /* harmony import */ var _header__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ../../header */ "./src/header.ts");
9221
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Cover", function() { return _header__WEBPACK_IMPORTED_MODULE_65__["Cover"]; });
9558
9222
 
9559
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "CoverCell", function() { return _cover__WEBPACK_IMPORTED_MODULE_65__["CoverCell"]; });
9223
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "CoverCell", function() { return _header__WEBPACK_IMPORTED_MODULE_65__["CoverCell"]; });
9560
9224
 
9561
9225
  /* harmony import */ var _dxSurveyService__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ../../dxSurveyService */ "./src/dxSurveyService.ts");
9562
9226
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "dxSurveyService", function() { return _dxSurveyService__WEBPACK_IMPORTED_MODULE_66__["dxSurveyService"]; });
@@ -9676,8 +9340,8 @@ __webpack_require__.r(__webpack_exports__);
9676
9340
  //import "../../modern.scss";
9677
9341
  var Version;
9678
9342
  var ReleaseDate;
9679
- Version = "" + "1.9.112";
9680
- ReleaseDate = "" + "2023-10-10";
9343
+ Version = "" + "1.9.114";
9344
+ ReleaseDate = "" + "2023-10-25";
9681
9345
  function checkLibraryVersion(ver, libraryName) {
9682
9346
  if (Version != ver) {
9683
9347
  var str = "survey-core has version '" + Version + "' and " + libraryName
@@ -9687,13 +9351,16 @@ function checkLibraryVersion(ver, libraryName) {
9687
9351
  }
9688
9352
  }
9689
9353
  function setLicenseKey(key) {
9690
- slk(key, lic, ReleaseDate);
9354
+ slk(key);
9355
+ }
9356
+ function slk(key) {
9357
+ _slk(key, lic, ReleaseDate);
9691
9358
  }
9692
9359
  function hasLicense(index) {
9693
9360
  return lic[index.toString()] === true;
9694
9361
  }
9695
9362
  var lic = {};
9696
- function slk(k, lh, rd) {
9363
+ function _slk(k, lh, rd) {
9697
9364
  if (!k)
9698
9365
  return;
9699
9366
  var en = function (s) {
@@ -9826,7 +9493,7 @@ function slk(k, lh, rd) {
9826
9493
  /*!**************************************!*\
9827
9494
  !*** ./src/entries/core-wo-model.ts ***!
9828
9495
  \**************************************/
9829
- /*! exports provided: Version, ReleaseDate, checkLibraryVersion, setLicenseKey, hasLicense, settings, Helpers, AnswerCountValidator, EmailValidator, NumericValidator, RegexValidator, SurveyValidator, TextValidator, ValidatorResult, ExpressionValidator, ValidatorRunner, ItemValue, Base, Event, EventBase, ArrayChanges, ComputedUpdater, SurveyError, SurveyElementCore, SurveyElement, DragTypeOverMeEnum, CalculatedValue, CustomError, AnswerRequiredError, OneAnswerRequiredError, RequreNumericError, ExceedSizeError, LocalizableString, LocalizableStrings, HtmlConditionItem, UrlConditionItem, ChoicesRestful, ChoicesRestfull, FunctionFactory, registerFunction, ConditionRunner, ExpressionRunner, ExpressionExecutor, Operand, Const, BinaryOperand, Variable, FunctionOperand, ArrayOperand, UnaryOperand, ConditionsParser, ProcessValue, JsonError, JsonIncorrectTypeError, JsonMetadata, JsonMetadataClass, JsonMissingTypeError, JsonMissingTypeErrorBase, JsonObject, JsonObjectProperty, JsonRequiredPropertyError, JsonUnknownPropertyError, Serializer, property, propertyArray, MatrixDropdownCell, MatrixDropdownRowModelBase, QuestionMatrixDropdownModelBase, MatrixDropdownColumn, matrixDropdownColumnTypes, QuestionMatrixDropdownRenderedCell, QuestionMatrixDropdownRenderedRow, QuestionMatrixDropdownRenderedTable, MatrixDropdownRowModel, QuestionMatrixDropdownModel, MatrixDynamicRowModel, QuestionMatrixDynamicModel, MatrixRowModel, MatrixCells, QuestionMatrixModel, QuestionMatrixBaseModel, MultipleTextItemModel, MultipleTextCell, MultipleTextErrorCell, MutlipleTextErrorRow, MutlipleTextRow, QuestionMultipleTextModel, MultipleTextEditorModel, PanelModel, PanelModelBase, QuestionRowModel, FlowPanelModel, PageModel, DefaultTitleModel, Question, QuestionNonValue, QuestionEmptyModel, QuestionCheckboxBase, QuestionSelectBase, QuestionCheckboxModel, QuestionTagboxModel, QuestionRankingModel, QuestionCommentModel, QuestionDropdownModel, QuestionFactory, ElementFactory, QuestionFileModel, QuestionHtmlModel, QuestionRadiogroupModel, QuestionRatingModel, RenderedRatingItem, QuestionExpressionModel, QuestionTextBase, CharacterCounter, QuestionTextModel, QuestionBooleanModel, QuestionImagePickerModel, ImageItemValue, QuestionImageModel, QuestionSignaturePadModel, QuestionPanelDynamicModel, QuestionPanelDynamicItem, SurveyTimer, SurveyTimerModel, tryNavigateToPage, tryFocusPage, createTOCListModel, getTocRootCss, TOCModel, SurveyProgressModel, SurveyProgressButtonsModel, SurveyModel, SurveyTrigger, SurveyTriggerComplete, SurveyTriggerSetValue, SurveyTriggerVisible, SurveyTriggerCopyValue, SurveyTriggerRunExpression, SurveyTriggerSkip, Trigger, PopupSurveyModel, SurveyWindowModel, TextPreProcessor, Notifier, Cover, CoverCell, dxSurveyService, englishStrings, surveyLocalization, surveyStrings, QuestionCustomWidget, CustomWidgetCollection, QuestionCustomModel, QuestionCompositeModel, ComponentQuestionJSON, ComponentCollection, StylesManager, ListModel, MultiSelectListModel, PopupModel, createDialogOptions, PopupBaseViewModel, PopupDropdownViewModel, PopupModalViewModel, createPopupViewModel, createPopupModalViewModel, DropdownListModel, DropdownMultiSelectListModel, QuestionButtonGroupModel, ButtonGroupItemModel, ButtonGroupItemValue, IsMobile, IsTouch, _setIsTouch, confirmAction, confirmActionAsync, detectIEOrEdge, doKey2ClickUp, doKey2ClickDown, doKey2ClickBlur, loadFileFromBase64, increaseHeightByContent, createSvg, sanitizeEditableContent, CssClassBuilder, surveyCss, defaultV2Css, defaultV2ThemeName, DragDropCore, DragDropChoices, DragDropRankingSelectToRank, defaultStandardCss, modernCss, SvgIconRegistry, SvgRegistry, SvgBundleViewModel, RendererFactory, ResponsivityManager, VerticalResponsivityManager, unwrap, getOriginalEvent, getElement, createDropdownActionModel, createDropdownActionModelAdvanced, getActionDropdownButtonTarget, BaseAction, Action, ActionDropdownViewModel, AdaptiveActionContainer, defaultActionBarCss, ActionContainer, DragOrClickHelper */
9496
+ /*! exports provided: Version, ReleaseDate, checkLibraryVersion, setLicenseKey, slk, hasLicense, settings, Helpers, AnswerCountValidator, EmailValidator, NumericValidator, RegexValidator, SurveyValidator, TextValidator, ValidatorResult, ExpressionValidator, ValidatorRunner, ItemValue, Base, Event, EventBase, ArrayChanges, ComputedUpdater, SurveyError, SurveyElementCore, SurveyElement, DragTypeOverMeEnum, CalculatedValue, CustomError, AnswerRequiredError, OneAnswerRequiredError, RequreNumericError, ExceedSizeError, LocalizableString, LocalizableStrings, HtmlConditionItem, UrlConditionItem, ChoicesRestful, ChoicesRestfull, FunctionFactory, registerFunction, ConditionRunner, ExpressionRunner, ExpressionExecutor, Operand, Const, BinaryOperand, Variable, FunctionOperand, ArrayOperand, UnaryOperand, ConditionsParser, ProcessValue, JsonError, JsonIncorrectTypeError, JsonMetadata, JsonMetadataClass, JsonMissingTypeError, JsonMissingTypeErrorBase, JsonObject, JsonObjectProperty, JsonRequiredPropertyError, JsonUnknownPropertyError, Serializer, property, propertyArray, MatrixDropdownCell, MatrixDropdownRowModelBase, QuestionMatrixDropdownModelBase, MatrixDropdownColumn, matrixDropdownColumnTypes, QuestionMatrixDropdownRenderedCell, QuestionMatrixDropdownRenderedRow, QuestionMatrixDropdownRenderedTable, MatrixDropdownRowModel, QuestionMatrixDropdownModel, MatrixDynamicRowModel, QuestionMatrixDynamicModel, MatrixRowModel, MatrixCells, QuestionMatrixModel, QuestionMatrixBaseModel, MultipleTextItemModel, MultipleTextCell, MultipleTextErrorCell, MutlipleTextErrorRow, MutlipleTextRow, QuestionMultipleTextModel, MultipleTextEditorModel, PanelModel, PanelModelBase, QuestionRowModel, FlowPanelModel, PageModel, DefaultTitleModel, Question, QuestionNonValue, QuestionEmptyModel, QuestionCheckboxBase, QuestionSelectBase, QuestionCheckboxModel, QuestionTagboxModel, QuestionRankingModel, QuestionCommentModel, QuestionDropdownModel, QuestionFactory, ElementFactory, QuestionFileModel, QuestionHtmlModel, QuestionRadiogroupModel, QuestionRatingModel, RenderedRatingItem, QuestionExpressionModel, QuestionTextBase, CharacterCounter, QuestionTextModel, QuestionBooleanModel, QuestionImagePickerModel, ImageItemValue, QuestionImageModel, QuestionSignaturePadModel, QuestionPanelDynamicModel, QuestionPanelDynamicItem, SurveyTimer, SurveyTimerModel, tryNavigateToPage, tryFocusPage, createTOCListModel, getTocRootCss, TOCModel, SurveyProgressModel, SurveyProgressButtonsModel, SurveyModel, SurveyTrigger, SurveyTriggerComplete, SurveyTriggerSetValue, SurveyTriggerVisible, SurveyTriggerCopyValue, SurveyTriggerRunExpression, SurveyTriggerSkip, Trigger, PopupSurveyModel, SurveyWindowModel, TextPreProcessor, Notifier, Cover, CoverCell, dxSurveyService, englishStrings, surveyLocalization, surveyStrings, QuestionCustomWidget, CustomWidgetCollection, QuestionCustomModel, QuestionCompositeModel, ComponentQuestionJSON, ComponentCollection, StylesManager, ListModel, MultiSelectListModel, PopupModel, createDialogOptions, PopupBaseViewModel, PopupDropdownViewModel, PopupModalViewModel, createPopupViewModel, createPopupModalViewModel, DropdownListModel, DropdownMultiSelectListModel, QuestionButtonGroupModel, ButtonGroupItemModel, ButtonGroupItemValue, IsMobile, IsTouch, _setIsTouch, confirmAction, confirmActionAsync, detectIEOrEdge, doKey2ClickUp, doKey2ClickDown, doKey2ClickBlur, loadFileFromBase64, increaseHeightByContent, createSvg, sanitizeEditableContent, CssClassBuilder, surveyCss, defaultV2Css, defaultV2ThemeName, DragDropCore, DragDropChoices, DragDropRankingSelectToRank, defaultStandardCss, modernCss, SvgIconRegistry, SvgRegistry, SvgBundleViewModel, RendererFactory, ResponsivityManager, VerticalResponsivityManager, unwrap, getOriginalEvent, getElement, createDropdownActionModel, createDropdownActionModelAdvanced, getActionDropdownButtonTarget, BaseAction, Action, ActionDropdownViewModel, AdaptiveActionContainer, defaultActionBarCss, ActionContainer, DragOrClickHelper */
9830
9497
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
9831
9498
 
9832
9499
  "use strict";
@@ -9840,6 +9507,8 @@ __webpack_require__.r(__webpack_exports__);
9840
9507
 
9841
9508
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "setLicenseKey", function() { return _chunks_model__WEBPACK_IMPORTED_MODULE_0__["setLicenseKey"]; });
9842
9509
 
9510
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "slk", function() { return _chunks_model__WEBPACK_IMPORTED_MODULE_0__["slk"]; });
9511
+
9843
9512
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "hasLicense", function() { return _chunks_model__WEBPACK_IMPORTED_MODULE_0__["hasLicense"]; });
9844
9513
 
9845
9514
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "settings", function() { return _chunks_model__WEBPACK_IMPORTED_MODULE_0__["settings"]; });
@@ -10289,7 +9958,7 @@ __webpack_require__.r(__webpack_exports__);
10289
9958
  /*!*****************************!*\
10290
9959
  !*** ./src/entries/core.ts ***!
10291
9960
  \*****************************/
10292
- /*! exports provided: Version, ReleaseDate, checkLibraryVersion, setLicenseKey, hasLicense, settings, Helpers, AnswerCountValidator, EmailValidator, NumericValidator, RegexValidator, SurveyValidator, TextValidator, ValidatorResult, ExpressionValidator, ValidatorRunner, ItemValue, Base, Event, EventBase, ArrayChanges, ComputedUpdater, SurveyError, SurveyElementCore, SurveyElement, DragTypeOverMeEnum, CalculatedValue, CustomError, AnswerRequiredError, OneAnswerRequiredError, RequreNumericError, ExceedSizeError, LocalizableString, LocalizableStrings, HtmlConditionItem, UrlConditionItem, ChoicesRestful, ChoicesRestfull, FunctionFactory, registerFunction, ConditionRunner, ExpressionRunner, ExpressionExecutor, Operand, Const, BinaryOperand, Variable, FunctionOperand, ArrayOperand, UnaryOperand, ConditionsParser, ProcessValue, JsonError, JsonIncorrectTypeError, JsonMetadata, JsonMetadataClass, JsonMissingTypeError, JsonMissingTypeErrorBase, JsonObject, JsonObjectProperty, JsonRequiredPropertyError, JsonUnknownPropertyError, Serializer, property, propertyArray, MatrixDropdownCell, MatrixDropdownRowModelBase, QuestionMatrixDropdownModelBase, MatrixDropdownColumn, matrixDropdownColumnTypes, QuestionMatrixDropdownRenderedCell, QuestionMatrixDropdownRenderedRow, QuestionMatrixDropdownRenderedTable, MatrixDropdownRowModel, QuestionMatrixDropdownModel, MatrixDynamicRowModel, QuestionMatrixDynamicModel, MatrixRowModel, MatrixCells, QuestionMatrixModel, QuestionMatrixBaseModel, MultipleTextItemModel, MultipleTextCell, MultipleTextErrorCell, MutlipleTextErrorRow, MutlipleTextRow, QuestionMultipleTextModel, MultipleTextEditorModel, PanelModel, PanelModelBase, QuestionRowModel, FlowPanelModel, PageModel, DefaultTitleModel, Question, QuestionNonValue, QuestionEmptyModel, QuestionCheckboxBase, QuestionSelectBase, QuestionCheckboxModel, QuestionTagboxModel, QuestionRankingModel, QuestionCommentModel, QuestionDropdownModel, QuestionFactory, ElementFactory, QuestionFileModel, QuestionHtmlModel, QuestionRadiogroupModel, QuestionRatingModel, RenderedRatingItem, QuestionExpressionModel, QuestionTextBase, CharacterCounter, QuestionTextModel, QuestionBooleanModel, QuestionImagePickerModel, ImageItemValue, QuestionImageModel, QuestionSignaturePadModel, QuestionPanelDynamicModel, QuestionPanelDynamicItem, SurveyTimer, SurveyTimerModel, tryNavigateToPage, tryFocusPage, createTOCListModel, getTocRootCss, TOCModel, SurveyProgressModel, SurveyProgressButtonsModel, SurveyModel, SurveyTrigger, SurveyTriggerComplete, SurveyTriggerSetValue, SurveyTriggerVisible, SurveyTriggerCopyValue, SurveyTriggerRunExpression, SurveyTriggerSkip, Trigger, PopupSurveyModel, SurveyWindowModel, TextPreProcessor, Notifier, Cover, CoverCell, dxSurveyService, englishStrings, surveyLocalization, surveyStrings, QuestionCustomWidget, CustomWidgetCollection, QuestionCustomModel, QuestionCompositeModel, ComponentQuestionJSON, ComponentCollection, StylesManager, ListModel, MultiSelectListModel, PopupModel, createDialogOptions, PopupBaseViewModel, PopupDropdownViewModel, PopupModalViewModel, createPopupViewModel, createPopupModalViewModel, DropdownListModel, DropdownMultiSelectListModel, QuestionButtonGroupModel, ButtonGroupItemModel, ButtonGroupItemValue, IsMobile, IsTouch, _setIsTouch, confirmAction, confirmActionAsync, detectIEOrEdge, doKey2ClickUp, doKey2ClickDown, doKey2ClickBlur, loadFileFromBase64, increaseHeightByContent, createSvg, sanitizeEditableContent, CssClassBuilder, surveyCss, defaultV2Css, defaultV2ThemeName, DragDropCore, DragDropChoices, DragDropRankingSelectToRank, defaultStandardCss, modernCss, SvgIconRegistry, SvgRegistry, SvgBundleViewModel, RendererFactory, ResponsivityManager, VerticalResponsivityManager, unwrap, getOriginalEvent, getElement, createDropdownActionModel, createDropdownActionModelAdvanced, getActionDropdownButtonTarget, BaseAction, Action, ActionDropdownViewModel, AdaptiveActionContainer, defaultActionBarCss, ActionContainer, DragOrClickHelper, Model */
9961
+ /*! exports provided: Version, ReleaseDate, checkLibraryVersion, setLicenseKey, slk, hasLicense, settings, Helpers, AnswerCountValidator, EmailValidator, NumericValidator, RegexValidator, SurveyValidator, TextValidator, ValidatorResult, ExpressionValidator, ValidatorRunner, ItemValue, Base, Event, EventBase, ArrayChanges, ComputedUpdater, SurveyError, SurveyElementCore, SurveyElement, DragTypeOverMeEnum, CalculatedValue, CustomError, AnswerRequiredError, OneAnswerRequiredError, RequreNumericError, ExceedSizeError, LocalizableString, LocalizableStrings, HtmlConditionItem, UrlConditionItem, ChoicesRestful, ChoicesRestfull, FunctionFactory, registerFunction, ConditionRunner, ExpressionRunner, ExpressionExecutor, Operand, Const, BinaryOperand, Variable, FunctionOperand, ArrayOperand, UnaryOperand, ConditionsParser, ProcessValue, JsonError, JsonIncorrectTypeError, JsonMetadata, JsonMetadataClass, JsonMissingTypeError, JsonMissingTypeErrorBase, JsonObject, JsonObjectProperty, JsonRequiredPropertyError, JsonUnknownPropertyError, Serializer, property, propertyArray, MatrixDropdownCell, MatrixDropdownRowModelBase, QuestionMatrixDropdownModelBase, MatrixDropdownColumn, matrixDropdownColumnTypes, QuestionMatrixDropdownRenderedCell, QuestionMatrixDropdownRenderedRow, QuestionMatrixDropdownRenderedTable, MatrixDropdownRowModel, QuestionMatrixDropdownModel, MatrixDynamicRowModel, QuestionMatrixDynamicModel, MatrixRowModel, MatrixCells, QuestionMatrixModel, QuestionMatrixBaseModel, MultipleTextItemModel, MultipleTextCell, MultipleTextErrorCell, MutlipleTextErrorRow, MutlipleTextRow, QuestionMultipleTextModel, MultipleTextEditorModel, PanelModel, PanelModelBase, QuestionRowModel, FlowPanelModel, PageModel, DefaultTitleModel, Question, QuestionNonValue, QuestionEmptyModel, QuestionCheckboxBase, QuestionSelectBase, QuestionCheckboxModel, QuestionTagboxModel, QuestionRankingModel, QuestionCommentModel, QuestionDropdownModel, QuestionFactory, ElementFactory, QuestionFileModel, QuestionHtmlModel, QuestionRadiogroupModel, QuestionRatingModel, RenderedRatingItem, QuestionExpressionModel, QuestionTextBase, CharacterCounter, QuestionTextModel, QuestionBooleanModel, QuestionImagePickerModel, ImageItemValue, QuestionImageModel, QuestionSignaturePadModel, QuestionPanelDynamicModel, QuestionPanelDynamicItem, SurveyTimer, SurveyTimerModel, tryNavigateToPage, tryFocusPage, createTOCListModel, getTocRootCss, TOCModel, SurveyProgressModel, SurveyProgressButtonsModel, SurveyModel, SurveyTrigger, SurveyTriggerComplete, SurveyTriggerSetValue, SurveyTriggerVisible, SurveyTriggerCopyValue, SurveyTriggerRunExpression, SurveyTriggerSkip, Trigger, PopupSurveyModel, SurveyWindowModel, TextPreProcessor, Notifier, Cover, CoverCell, dxSurveyService, englishStrings, surveyLocalization, surveyStrings, QuestionCustomWidget, CustomWidgetCollection, QuestionCustomModel, QuestionCompositeModel, ComponentQuestionJSON, ComponentCollection, StylesManager, ListModel, MultiSelectListModel, PopupModel, createDialogOptions, PopupBaseViewModel, PopupDropdownViewModel, PopupModalViewModel, createPopupViewModel, createPopupModalViewModel, DropdownListModel, DropdownMultiSelectListModel, QuestionButtonGroupModel, ButtonGroupItemModel, ButtonGroupItemValue, IsMobile, IsTouch, _setIsTouch, confirmAction, confirmActionAsync, detectIEOrEdge, doKey2ClickUp, doKey2ClickDown, doKey2ClickBlur, loadFileFromBase64, increaseHeightByContent, createSvg, sanitizeEditableContent, CssClassBuilder, surveyCss, defaultV2Css, defaultV2ThemeName, DragDropCore, DragDropChoices, DragDropRankingSelectToRank, defaultStandardCss, modernCss, SvgIconRegistry, SvgRegistry, SvgBundleViewModel, RendererFactory, ResponsivityManager, VerticalResponsivityManager, unwrap, getOriginalEvent, getElement, createDropdownActionModel, createDropdownActionModelAdvanced, getActionDropdownButtonTarget, BaseAction, Action, ActionDropdownViewModel, AdaptiveActionContainer, defaultActionBarCss, ActionContainer, DragOrClickHelper, Model */
10293
9962
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
10294
9963
 
10295
9964
  "use strict";
@@ -10303,6 +9972,8 @@ __webpack_require__.r(__webpack_exports__);
10303
9972
 
10304
9973
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "setLicenseKey", function() { return _core_wo_model__WEBPACK_IMPORTED_MODULE_0__["setLicenseKey"]; });
10305
9974
 
9975
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "slk", function() { return _core_wo_model__WEBPACK_IMPORTED_MODULE_0__["slk"]; });
9976
+
10306
9977
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "hasLicense", function() { return _core_wo_model__WEBPACK_IMPORTED_MODULE_0__["hasLicense"]; });
10307
9978
 
10308
9979
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "settings", function() { return _core_wo_model__WEBPACK_IMPORTED_MODULE_0__["settings"]; });
@@ -10770,7 +10441,7 @@ var defaultBootstrapMaterialCss = _plugins_themes_bootstrapmaterial_cssbootstrap
10770
10441
  /*!***************************************!*\
10771
10442
  !*** ./src/entries/react-ui-model.ts ***!
10772
10443
  \***************************************/
10773
- /*! exports provided: Survey, attachKey2click, ReactSurveyElementsWrapper, SurveyNavigationBase, SurveyTimerPanel, SurveyPage, SurveyRow, SurveyPanel, SurveyFlowPanel, SurveyQuestion, SurveyElementErrors, SurveyQuestionAndErrorsCell, ReactSurveyElement, SurveyElementBase, SurveyQuestionElementBase, SurveyQuestionCommentItem, SurveyQuestionComment, SurveyQuestionCheckbox, SurveyQuestionCheckboxItem, SurveyQuestionRanking, SurveyQuestionRankingItem, RatingItem, RatingItemStar, RatingItemSmiley, TagboxFilterString, SurveyQuestionOptionItem, SurveyQuestionDropdownBase, SurveyQuestionDropdown, SurveyQuestionTagboxItem, SurveyQuestionTagbox, SurveyQuestionDropdownSelect, SurveyQuestionMatrix, SurveyQuestionMatrixRow, SurveyQuestionHtml, SurveyQuestionFile, SurveyFileChooseButton, SurveyFilePreview, SurveyQuestionMultipleText, SurveyQuestionRadiogroup, SurveyQuestionRadioItem, SurveyQuestionText, SurveyQuestionBoolean, SurveyQuestionBooleanCheckbox, SurveyQuestionBooleanRadio, SurveyQuestionEmpty, SurveyQuestionMatrixDropdownCell, SurveyQuestionMatrixDropdownBase, SurveyQuestionMatrixDropdown, SurveyQuestionMatrixDynamic, SurveyQuestionMatrixDynamicAddButton, SurveyQuestionPanelDynamic, SurveyProgress, SurveyProgressButtons, SurveyProgressToc, SurveyQuestionRating, SurveyQuestionRatingDropdown, SurveyQuestionExpression, PopupSurvey, SurveyWindow, ReactQuestionFactory, ReactElementFactory, SurveyQuestionImagePicker, SurveyQuestionImage, SurveyQuestionSignaturePad, SurveyQuestionButtonGroup, SurveyQuestionCustom, SurveyQuestionComposite, Popup, List, TitleActions, TitleElement, SurveyActionBar, LogoImage, SurveyHeader, SvgIcon, SurveyQuestionMatrixDynamicRemoveButton, SurveyQuestionMatrixDetailButton, SurveyQuestionMatrixDynamicDragDropIcon, SurveyQuestionPanelDynamicAddButton, SurveyQuestionPanelDynamicRemoveButton, SurveyQuestionPanelDynamicPrevButton, SurveyQuestionPanelDynamicNextButton, SurveyQuestionPanelDynamicProgressText, SurveyNavigationButton, MatrixRow, Skeleton, NotifierComponent, ComponentsContainer, CharacterCounterComponent, CoverCellComponent, CoverComponent, SurveyLocStringViewer, SurveyLocStringEditor, LoadingIndicatorComponent */
10444
+ /*! exports provided: Survey, attachKey2click, ReactSurveyElementsWrapper, SurveyNavigationBase, SurveyTimerPanel, SurveyPage, SurveyRow, SurveyPanel, SurveyFlowPanel, SurveyQuestion, SurveyElementErrors, SurveyQuestionAndErrorsCell, ReactSurveyElement, SurveyElementBase, SurveyQuestionElementBase, SurveyQuestionCommentItem, SurveyQuestionComment, SurveyQuestionCheckbox, SurveyQuestionCheckboxItem, SurveyQuestionRanking, SurveyQuestionRankingItem, RatingItem, RatingItemStar, RatingItemSmiley, TagboxFilterString, SurveyQuestionOptionItem, SurveyQuestionDropdownBase, SurveyQuestionDropdown, SurveyQuestionTagboxItem, SurveyQuestionTagbox, SurveyQuestionDropdownSelect, SurveyQuestionMatrix, SurveyQuestionMatrixRow, SurveyQuestionHtml, SurveyQuestionFile, SurveyFileChooseButton, SurveyFilePreview, SurveyQuestionMultipleText, SurveyQuestionRadiogroup, SurveyQuestionRadioItem, SurveyQuestionText, SurveyQuestionBoolean, SurveyQuestionBooleanCheckbox, SurveyQuestionBooleanRadio, SurveyQuestionEmpty, SurveyQuestionMatrixDropdownCell, SurveyQuestionMatrixDropdownBase, SurveyQuestionMatrixDropdown, SurveyQuestionMatrixDynamic, SurveyQuestionMatrixDynamicAddButton, SurveyQuestionPanelDynamic, SurveyProgress, SurveyProgressButtons, SurveyProgressToc, SurveyQuestionRating, SurveyQuestionRatingDropdown, SurveyQuestionExpression, PopupSurvey, SurveyWindow, ReactQuestionFactory, ReactElementFactory, SurveyQuestionImagePicker, SurveyQuestionImage, SurveyQuestionSignaturePad, SurveyQuestionButtonGroup, SurveyQuestionCustom, SurveyQuestionComposite, Popup, List, TitleActions, TitleElement, SurveyActionBar, LogoImage, SurveyHeader, SvgIcon, SurveyQuestionMatrixDynamicRemoveButton, SurveyQuestionMatrixDetailButton, SurveyQuestionMatrixDynamicDragDropIcon, SurveyQuestionPanelDynamicAddButton, SurveyQuestionPanelDynamicRemoveButton, SurveyQuestionPanelDynamicPrevButton, SurveyQuestionPanelDynamicNextButton, SurveyQuestionPanelDynamicProgressText, SurveyNavigationButton, MatrixRow, Skeleton, NotifierComponent, ComponentsContainer, CharacterCounterComponent, HeaderMobile, HeaderCell, Header, SurveyLocStringViewer, SurveyLocStringEditor, LoadingIndicatorComponent */
10774
10445
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
10775
10446
 
10776
10447
  "use strict";
@@ -11028,10 +10699,12 @@ __webpack_require__.r(__webpack_exports__);
11028
10699
  /* harmony import */ var _react_components_character_counter__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ../react/components/character-counter */ "./src/react/components/character-counter.tsx");
11029
10700
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "CharacterCounterComponent", function() { return _react_components_character_counter__WEBPACK_IMPORTED_MODULE_74__["CharacterCounterComponent"]; });
11030
10701
 
11031
- /* harmony import */ var _react_components_cover__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ../react/components/cover */ "./src/react/components/cover.tsx");
11032
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "CoverCellComponent", function() { return _react_components_cover__WEBPACK_IMPORTED_MODULE_75__["CoverCellComponent"]; });
10702
+ /* harmony import */ var _react_components_header__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ../react/components/header */ "./src/react/components/header.tsx");
10703
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "HeaderMobile", function() { return _react_components_header__WEBPACK_IMPORTED_MODULE_75__["HeaderMobile"]; });
10704
+
10705
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "HeaderCell", function() { return _react_components_header__WEBPACK_IMPORTED_MODULE_75__["HeaderCell"]; });
11033
10706
 
11034
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "CoverComponent", function() { return _react_components_cover__WEBPACK_IMPORTED_MODULE_75__["CoverComponent"]; });
10707
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Header", function() { return _react_components_header__WEBPACK_IMPORTED_MODULE_75__["Header"]; });
11035
10708
 
11036
10709
  /* harmony import */ var _react_string_viewer__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ../react/string-viewer */ "./src/react/string-viewer.tsx");
11037
10710
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyLocStringViewer", function() { return _react_string_viewer__WEBPACK_IMPORTED_MODULE_76__["SurveyLocStringViewer"]; });
@@ -11132,7 +10805,7 @@ __webpack_require__.r(__webpack_exports__);
11132
10805
  /*!******************************!*\
11133
10806
  !*** ./src/entries/react.ts ***!
11134
10807
  \******************************/
11135
- /*! exports provided: Version, ReleaseDate, checkLibraryVersion, setLicenseKey, hasLicense, settings, Helpers, AnswerCountValidator, EmailValidator, NumericValidator, RegexValidator, SurveyValidator, TextValidator, ValidatorResult, ExpressionValidator, ValidatorRunner, ItemValue, Base, Event, EventBase, ArrayChanges, ComputedUpdater, SurveyError, SurveyElementCore, SurveyElement, DragTypeOverMeEnum, CalculatedValue, CustomError, AnswerRequiredError, OneAnswerRequiredError, RequreNumericError, ExceedSizeError, LocalizableString, LocalizableStrings, HtmlConditionItem, UrlConditionItem, ChoicesRestful, ChoicesRestfull, FunctionFactory, registerFunction, ConditionRunner, ExpressionRunner, ExpressionExecutor, Operand, Const, BinaryOperand, Variable, FunctionOperand, ArrayOperand, UnaryOperand, ConditionsParser, ProcessValue, JsonError, JsonIncorrectTypeError, JsonMetadata, JsonMetadataClass, JsonMissingTypeError, JsonMissingTypeErrorBase, JsonObject, JsonObjectProperty, JsonRequiredPropertyError, JsonUnknownPropertyError, Serializer, property, propertyArray, MatrixDropdownCell, MatrixDropdownRowModelBase, QuestionMatrixDropdownModelBase, MatrixDropdownColumn, matrixDropdownColumnTypes, QuestionMatrixDropdownRenderedCell, QuestionMatrixDropdownRenderedRow, QuestionMatrixDropdownRenderedTable, MatrixDropdownRowModel, QuestionMatrixDropdownModel, MatrixDynamicRowModel, QuestionMatrixDynamicModel, MatrixRowModel, MatrixCells, QuestionMatrixModel, QuestionMatrixBaseModel, MultipleTextItemModel, MultipleTextCell, MultipleTextErrorCell, MutlipleTextErrorRow, MutlipleTextRow, QuestionMultipleTextModel, MultipleTextEditorModel, PanelModel, PanelModelBase, QuestionRowModel, FlowPanelModel, PageModel, DefaultTitleModel, Question, QuestionNonValue, QuestionEmptyModel, QuestionCheckboxBase, QuestionSelectBase, QuestionCheckboxModel, QuestionTagboxModel, QuestionRankingModel, QuestionCommentModel, QuestionDropdownModel, QuestionFactory, ElementFactory, QuestionFileModel, QuestionHtmlModel, QuestionRadiogroupModel, QuestionRatingModel, RenderedRatingItem, QuestionExpressionModel, QuestionTextBase, CharacterCounter, QuestionTextModel, QuestionBooleanModel, QuestionImagePickerModel, ImageItemValue, QuestionImageModel, QuestionSignaturePadModel, QuestionPanelDynamicModel, QuestionPanelDynamicItem, SurveyTimer, SurveyTimerModel, tryNavigateToPage, tryFocusPage, createTOCListModel, getTocRootCss, TOCModel, SurveyProgressModel, SurveyProgressButtonsModel, SurveyModel, SurveyTrigger, SurveyTriggerComplete, SurveyTriggerSetValue, SurveyTriggerVisible, SurveyTriggerCopyValue, SurveyTriggerRunExpression, SurveyTriggerSkip, Trigger, PopupSurveyModel, SurveyWindowModel, TextPreProcessor, Notifier, Cover, CoverCell, dxSurveyService, englishStrings, surveyLocalization, surveyStrings, QuestionCustomWidget, CustomWidgetCollection, QuestionCustomModel, QuestionCompositeModel, ComponentQuestionJSON, ComponentCollection, StylesManager, ListModel, MultiSelectListModel, PopupModel, createDialogOptions, PopupBaseViewModel, PopupDropdownViewModel, PopupModalViewModel, createPopupViewModel, createPopupModalViewModel, DropdownListModel, DropdownMultiSelectListModel, QuestionButtonGroupModel, ButtonGroupItemModel, ButtonGroupItemValue, IsMobile, IsTouch, _setIsTouch, confirmAction, confirmActionAsync, detectIEOrEdge, doKey2ClickUp, doKey2ClickDown, doKey2ClickBlur, loadFileFromBase64, increaseHeightByContent, createSvg, sanitizeEditableContent, CssClassBuilder, surveyCss, defaultV2Css, defaultV2ThemeName, DragDropCore, DragDropChoices, DragDropRankingSelectToRank, defaultStandardCss, modernCss, SvgIconRegistry, SvgRegistry, SvgBundleViewModel, RendererFactory, ResponsivityManager, VerticalResponsivityManager, unwrap, getOriginalEvent, getElement, createDropdownActionModel, createDropdownActionModelAdvanced, getActionDropdownButtonTarget, BaseAction, Action, ActionDropdownViewModel, AdaptiveActionContainer, defaultActionBarCss, ActionContainer, DragOrClickHelper, Model, bootstrapThemeName, bootstrapThemeColors, bootstrapThemeCssRules, bootstrapMaterialThemeName, bootstrapMaterialThemeColors, bootstrapMaterialThemeCssRules, defaultBootstrapCss, defaultBootstrapMaterialCss, Survey, attachKey2click, ReactSurveyElementsWrapper, SurveyNavigationBase, SurveyTimerPanel, SurveyPage, SurveyRow, SurveyPanel, SurveyFlowPanel, SurveyQuestion, SurveyElementErrors, SurveyQuestionAndErrorsCell, ReactSurveyElement, SurveyElementBase, SurveyQuestionElementBase, SurveyQuestionCommentItem, SurveyQuestionComment, SurveyQuestionCheckbox, SurveyQuestionCheckboxItem, SurveyQuestionRanking, SurveyQuestionRankingItem, RatingItem, RatingItemStar, RatingItemSmiley, TagboxFilterString, SurveyQuestionOptionItem, SurveyQuestionDropdownBase, SurveyQuestionDropdown, SurveyQuestionTagboxItem, SurveyQuestionTagbox, SurveyQuestionDropdownSelect, SurveyQuestionMatrix, SurveyQuestionMatrixRow, SurveyQuestionHtml, SurveyQuestionFile, SurveyFileChooseButton, SurveyFilePreview, SurveyQuestionMultipleText, SurveyQuestionRadiogroup, SurveyQuestionRadioItem, SurveyQuestionText, SurveyQuestionBoolean, SurveyQuestionBooleanCheckbox, SurveyQuestionBooleanRadio, SurveyQuestionEmpty, SurveyQuestionMatrixDropdownCell, SurveyQuestionMatrixDropdownBase, SurveyQuestionMatrixDropdown, SurveyQuestionMatrixDynamic, SurveyQuestionMatrixDynamicAddButton, SurveyQuestionPanelDynamic, SurveyProgress, SurveyProgressButtons, SurveyProgressToc, SurveyQuestionRating, SurveyQuestionRatingDropdown, SurveyQuestionExpression, PopupSurvey, SurveyWindow, ReactQuestionFactory, ReactElementFactory, SurveyQuestionImagePicker, SurveyQuestionImage, SurveyQuestionSignaturePad, SurveyQuestionButtonGroup, SurveyQuestionCustom, SurveyQuestionComposite, Popup, List, TitleActions, TitleElement, SurveyActionBar, LogoImage, SurveyHeader, SvgIcon, SurveyQuestionMatrixDynamicRemoveButton, SurveyQuestionMatrixDetailButton, SurveyQuestionMatrixDynamicDragDropIcon, SurveyQuestionPanelDynamicAddButton, SurveyQuestionPanelDynamicRemoveButton, SurveyQuestionPanelDynamicPrevButton, SurveyQuestionPanelDynamicNextButton, SurveyQuestionPanelDynamicProgressText, SurveyNavigationButton, MatrixRow, Skeleton, NotifierComponent, ComponentsContainer, CharacterCounterComponent, CoverCellComponent, CoverComponent, SurveyLocStringViewer, SurveyLocStringEditor, LoadingIndicatorComponent */
10808
+ /*! exports provided: Version, ReleaseDate, checkLibraryVersion, setLicenseKey, slk, hasLicense, settings, Helpers, AnswerCountValidator, EmailValidator, NumericValidator, RegexValidator, SurveyValidator, TextValidator, ValidatorResult, ExpressionValidator, ValidatorRunner, ItemValue, Base, Event, EventBase, ArrayChanges, ComputedUpdater, SurveyError, SurveyElementCore, SurveyElement, DragTypeOverMeEnum, CalculatedValue, CustomError, AnswerRequiredError, OneAnswerRequiredError, RequreNumericError, ExceedSizeError, LocalizableString, LocalizableStrings, HtmlConditionItem, UrlConditionItem, ChoicesRestful, ChoicesRestfull, FunctionFactory, registerFunction, ConditionRunner, ExpressionRunner, ExpressionExecutor, Operand, Const, BinaryOperand, Variable, FunctionOperand, ArrayOperand, UnaryOperand, ConditionsParser, ProcessValue, JsonError, JsonIncorrectTypeError, JsonMetadata, JsonMetadataClass, JsonMissingTypeError, JsonMissingTypeErrorBase, JsonObject, JsonObjectProperty, JsonRequiredPropertyError, JsonUnknownPropertyError, Serializer, property, propertyArray, MatrixDropdownCell, MatrixDropdownRowModelBase, QuestionMatrixDropdownModelBase, MatrixDropdownColumn, matrixDropdownColumnTypes, QuestionMatrixDropdownRenderedCell, QuestionMatrixDropdownRenderedRow, QuestionMatrixDropdownRenderedTable, MatrixDropdownRowModel, QuestionMatrixDropdownModel, MatrixDynamicRowModel, QuestionMatrixDynamicModel, MatrixRowModel, MatrixCells, QuestionMatrixModel, QuestionMatrixBaseModel, MultipleTextItemModel, MultipleTextCell, MultipleTextErrorCell, MutlipleTextErrorRow, MutlipleTextRow, QuestionMultipleTextModel, MultipleTextEditorModel, PanelModel, PanelModelBase, QuestionRowModel, FlowPanelModel, PageModel, DefaultTitleModel, Question, QuestionNonValue, QuestionEmptyModel, QuestionCheckboxBase, QuestionSelectBase, QuestionCheckboxModel, QuestionTagboxModel, QuestionRankingModel, QuestionCommentModel, QuestionDropdownModel, QuestionFactory, ElementFactory, QuestionFileModel, QuestionHtmlModel, QuestionRadiogroupModel, QuestionRatingModel, RenderedRatingItem, QuestionExpressionModel, QuestionTextBase, CharacterCounter, QuestionTextModel, QuestionBooleanModel, QuestionImagePickerModel, ImageItemValue, QuestionImageModel, QuestionSignaturePadModel, QuestionPanelDynamicModel, QuestionPanelDynamicItem, SurveyTimer, SurveyTimerModel, tryNavigateToPage, tryFocusPage, createTOCListModel, getTocRootCss, TOCModel, SurveyProgressModel, SurveyProgressButtonsModel, SurveyModel, SurveyTrigger, SurveyTriggerComplete, SurveyTriggerSetValue, SurveyTriggerVisible, SurveyTriggerCopyValue, SurveyTriggerRunExpression, SurveyTriggerSkip, Trigger, PopupSurveyModel, SurveyWindowModel, TextPreProcessor, Notifier, Cover, CoverCell, dxSurveyService, englishStrings, surveyLocalization, surveyStrings, QuestionCustomWidget, CustomWidgetCollection, QuestionCustomModel, QuestionCompositeModel, ComponentQuestionJSON, ComponentCollection, StylesManager, ListModel, MultiSelectListModel, PopupModel, createDialogOptions, PopupBaseViewModel, PopupDropdownViewModel, PopupModalViewModel, createPopupViewModel, createPopupModalViewModel, DropdownListModel, DropdownMultiSelectListModel, QuestionButtonGroupModel, ButtonGroupItemModel, ButtonGroupItemValue, IsMobile, IsTouch, _setIsTouch, confirmAction, confirmActionAsync, detectIEOrEdge, doKey2ClickUp, doKey2ClickDown, doKey2ClickBlur, loadFileFromBase64, increaseHeightByContent, createSvg, sanitizeEditableContent, CssClassBuilder, surveyCss, defaultV2Css, defaultV2ThemeName, DragDropCore, DragDropChoices, DragDropRankingSelectToRank, defaultStandardCss, modernCss, SvgIconRegistry, SvgRegistry, SvgBundleViewModel, RendererFactory, ResponsivityManager, VerticalResponsivityManager, unwrap, getOriginalEvent, getElement, createDropdownActionModel, createDropdownActionModelAdvanced, getActionDropdownButtonTarget, BaseAction, Action, ActionDropdownViewModel, AdaptiveActionContainer, defaultActionBarCss, ActionContainer, DragOrClickHelper, Model, bootstrapThemeName, bootstrapThemeColors, bootstrapThemeCssRules, bootstrapMaterialThemeName, bootstrapMaterialThemeColors, bootstrapMaterialThemeCssRules, defaultBootstrapCss, defaultBootstrapMaterialCss, Survey, attachKey2click, ReactSurveyElementsWrapper, SurveyNavigationBase, SurveyTimerPanel, SurveyPage, SurveyRow, SurveyPanel, SurveyFlowPanel, SurveyQuestion, SurveyElementErrors, SurveyQuestionAndErrorsCell, ReactSurveyElement, SurveyElementBase, SurveyQuestionElementBase, SurveyQuestionCommentItem, SurveyQuestionComment, SurveyQuestionCheckbox, SurveyQuestionCheckboxItem, SurveyQuestionRanking, SurveyQuestionRankingItem, RatingItem, RatingItemStar, RatingItemSmiley, TagboxFilterString, SurveyQuestionOptionItem, SurveyQuestionDropdownBase, SurveyQuestionDropdown, SurveyQuestionTagboxItem, SurveyQuestionTagbox, SurveyQuestionDropdownSelect, SurveyQuestionMatrix, SurveyQuestionMatrixRow, SurveyQuestionHtml, SurveyQuestionFile, SurveyFileChooseButton, SurveyFilePreview, SurveyQuestionMultipleText, SurveyQuestionRadiogroup, SurveyQuestionRadioItem, SurveyQuestionText, SurveyQuestionBoolean, SurveyQuestionBooleanCheckbox, SurveyQuestionBooleanRadio, SurveyQuestionEmpty, SurveyQuestionMatrixDropdownCell, SurveyQuestionMatrixDropdownBase, SurveyQuestionMatrixDropdown, SurveyQuestionMatrixDynamic, SurveyQuestionMatrixDynamicAddButton, SurveyQuestionPanelDynamic, SurveyProgress, SurveyProgressButtons, SurveyProgressToc, SurveyQuestionRating, SurveyQuestionRatingDropdown, SurveyQuestionExpression, PopupSurvey, SurveyWindow, ReactQuestionFactory, ReactElementFactory, SurveyQuestionImagePicker, SurveyQuestionImage, SurveyQuestionSignaturePad, SurveyQuestionButtonGroup, SurveyQuestionCustom, SurveyQuestionComposite, Popup, List, TitleActions, TitleElement, SurveyActionBar, LogoImage, SurveyHeader, SvgIcon, SurveyQuestionMatrixDynamicRemoveButton, SurveyQuestionMatrixDetailButton, SurveyQuestionMatrixDynamicDragDropIcon, SurveyQuestionPanelDynamicAddButton, SurveyQuestionPanelDynamicRemoveButton, SurveyQuestionPanelDynamicPrevButton, SurveyQuestionPanelDynamicNextButton, SurveyQuestionPanelDynamicProgressText, SurveyNavigationButton, MatrixRow, Skeleton, NotifierComponent, ComponentsContainer, CharacterCounterComponent, HeaderMobile, HeaderCell, Header, SurveyLocStringViewer, SurveyLocStringEditor, LoadingIndicatorComponent */
11136
10809
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
11137
10810
 
11138
10811
  "use strict";
@@ -11146,6 +10819,8 @@ __webpack_require__.r(__webpack_exports__);
11146
10819
 
11147
10820
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "setLicenseKey", function() { return _core__WEBPACK_IMPORTED_MODULE_0__["setLicenseKey"]; });
11148
10821
 
10822
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "slk", function() { return _core__WEBPACK_IMPORTED_MODULE_0__["slk"]; });
10823
+
11149
10824
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "hasLicense", function() { return _core__WEBPACK_IMPORTED_MODULE_0__["hasLicense"]; });
11150
10825
 
11151
10826
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "settings", function() { return _core__WEBPACK_IMPORTED_MODULE_0__["settings"]; });
@@ -11761,9 +11436,11 @@ __webpack_require__.r(__webpack_exports__);
11761
11436
 
11762
11437
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "CharacterCounterComponent", function() { return _react_ui_model__WEBPACK_IMPORTED_MODULE_3__["CharacterCounterComponent"]; });
11763
11438
 
11764
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "CoverCellComponent", function() { return _react_ui_model__WEBPACK_IMPORTED_MODULE_3__["CoverCellComponent"]; });
11439
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "HeaderMobile", function() { return _react_ui_model__WEBPACK_IMPORTED_MODULE_3__["HeaderMobile"]; });
11440
+
11441
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "HeaderCell", function() { return _react_ui_model__WEBPACK_IMPORTED_MODULE_3__["HeaderCell"]; });
11765
11442
 
11766
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "CoverComponent", function() { return _react_ui_model__WEBPACK_IMPORTED_MODULE_3__["CoverComponent"]; });
11443
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Header", function() { return _react_ui_model__WEBPACK_IMPORTED_MODULE_3__["Header"]; });
11767
11444
 
11768
11445
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyLocStringViewer", function() { return _react_ui_model__WEBPACK_IMPORTED_MODULE_3__["SurveyLocStringViewer"]; });
11769
11446
 
@@ -16587,6 +16264,384 @@ function propertyValue(params) {
16587
16264
  FunctionFactory.Instance.register("propertyValue", propertyValue);
16588
16265
 
16589
16266
 
16267
+ /***/ }),
16268
+
16269
+ /***/ "./src/header.ts":
16270
+ /*!***********************!*\
16271
+ !*** ./src/header.ts ***!
16272
+ \***********************/
16273
+ /*! exports provided: CoverCell, Cover */
16274
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
16275
+
16276
+ "use strict";
16277
+ __webpack_require__.r(__webpack_exports__);
16278
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "CoverCell", function() { return CoverCell; });
16279
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cover", function() { return Cover; });
16280
+ /* harmony import */ var _base__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./base */ "./src/base.ts");
16281
+ /* harmony import */ var _jsonobject__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./jsonobject */ "./src/jsonobject.ts");
16282
+ /* harmony import */ var _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./utils/cssClassBuilder */ "./src/utils/cssClassBuilder.ts");
16283
+ /* harmony import */ var _utils_utils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./utils/utils */ "./src/utils/utils.ts");
16284
+ var __extends = (undefined && undefined.__extends) || (function () {
16285
+ var extendStatics = function (d, b) {
16286
+ extendStatics = Object.setPrototypeOf ||
16287
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
16288
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
16289
+ return extendStatics(d, b);
16290
+ };
16291
+ return function (d, b) {
16292
+ if (typeof b !== "function" && b !== null)
16293
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
16294
+ extendStatics(d, b);
16295
+ function __() { this.constructor = d; }
16296
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
16297
+ };
16298
+ })();
16299
+ var __decorate = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
16300
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
16301
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
16302
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
16303
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
16304
+ };
16305
+
16306
+
16307
+
16308
+
16309
+ var CoverCell = /** @class */ (function () {
16310
+ function CoverCell(cover, positionX, positionY) {
16311
+ this.cover = cover;
16312
+ this.positionX = positionX;
16313
+ this.positionY = positionY;
16314
+ }
16315
+ CoverCell.prototype.calcRow = function (positionY) {
16316
+ return positionY === "top" ? 1 : (positionY === "middle" ? 2 : 3);
16317
+ };
16318
+ CoverCell.prototype.calcColumn = function (positionX) {
16319
+ return positionX === "left" ? 1 : (positionX === "center" ? 2 : 3);
16320
+ };
16321
+ CoverCell.prototype.calcAlignItems = function (positionX) {
16322
+ return positionX === "left" ? "flex-start" : (positionX === "center" ? "center" : "flex-end");
16323
+ };
16324
+ CoverCell.prototype.calcAlignText = function (positionX) {
16325
+ return positionX === "left" ? "start" : (positionX === "center" ? "center" : "end");
16326
+ };
16327
+ CoverCell.prototype.calcJustifyContent = function (positionY) {
16328
+ return positionY === "top" ? "flex-start" : (positionY === "middle" ? "center" : "flex-end");
16329
+ };
16330
+ Object.defineProperty(CoverCell.prototype, "survey", {
16331
+ get: function () {
16332
+ return this.cover.survey;
16333
+ },
16334
+ enumerable: false,
16335
+ configurable: true
16336
+ });
16337
+ Object.defineProperty(CoverCell.prototype, "css", {
16338
+ get: function () {
16339
+ var result = CoverCell.CLASSNAME + " " + CoverCell.CLASSNAME + "--" + this.positionX + " " + CoverCell.CLASSNAME + "--" + this.positionY;
16340
+ return result;
16341
+ },
16342
+ enumerable: false,
16343
+ configurable: true
16344
+ });
16345
+ Object.defineProperty(CoverCell.prototype, "style", {
16346
+ get: function () {
16347
+ var result = {};
16348
+ result["gridColumn"] = this.calcColumn(this.positionX);
16349
+ result["gridRow"] = this.calcRow(this.positionY);
16350
+ return result;
16351
+ },
16352
+ enumerable: false,
16353
+ configurable: true
16354
+ });
16355
+ Object.defineProperty(CoverCell.prototype, "contentStyle", {
16356
+ get: function () {
16357
+ var result = {};
16358
+ result["textAlign"] = this.calcAlignText(this.positionX);
16359
+ result["alignItems"] = this.calcAlignItems(this.positionX);
16360
+ result["justifyContent"] = this.calcJustifyContent(this.positionY);
16361
+ return result;
16362
+ },
16363
+ enumerable: false,
16364
+ configurable: true
16365
+ });
16366
+ Object.defineProperty(CoverCell.prototype, "showLogo", {
16367
+ get: function () {
16368
+ return this.survey.hasLogo && this.positionX === this.cover.logoPositionX && this.positionY === this.cover.logoPositionY;
16369
+ },
16370
+ enumerable: false,
16371
+ configurable: true
16372
+ });
16373
+ Object.defineProperty(CoverCell.prototype, "showTitle", {
16374
+ get: function () {
16375
+ return this.survey.hasTitle && this.positionX === this.cover.titlePositionX && this.positionY === this.cover.titlePositionY;
16376
+ },
16377
+ enumerable: false,
16378
+ configurable: true
16379
+ });
16380
+ Object.defineProperty(CoverCell.prototype, "showDescription", {
16381
+ get: function () {
16382
+ return this.survey.renderedHasDescription && this.positionX === this.cover.descriptionPositionX && this.positionY === this.cover.descriptionPositionY;
16383
+ },
16384
+ enumerable: false,
16385
+ configurable: true
16386
+ });
16387
+ Object.defineProperty(CoverCell.prototype, "textAreaWidth", {
16388
+ get: function () {
16389
+ if (!this.cover.textAreaWidth) {
16390
+ return "";
16391
+ }
16392
+ return "" + this.cover.textAreaWidth + "px";
16393
+ },
16394
+ enumerable: false,
16395
+ configurable: true
16396
+ });
16397
+ CoverCell.CLASSNAME = "sv-header__cell";
16398
+ return CoverCell;
16399
+ }());
16400
+
16401
+ var Cover = /** @class */ (function (_super) {
16402
+ __extends(Cover, _super);
16403
+ function Cover() {
16404
+ var _this = _super.call(this) || this;
16405
+ _this.cells = [];
16406
+ _this.renderBackgroundImage = Object(_utils_utils__WEBPACK_IMPORTED_MODULE_3__["wrapUrlForBackgroundImage"])(_this.backgroundImage);
16407
+ ["top", "middle", "bottom"].forEach(function (positionY) {
16408
+ return ["left", "center", "right"].forEach(function (positionX) { return _this.cells.push(new CoverCell(_this, positionX, positionY)); });
16409
+ });
16410
+ _this.updateHeaderClasses();
16411
+ _this.updateContentClasses();
16412
+ _this.updateBackgroundImageClasses();
16413
+ return _this;
16414
+ }
16415
+ Cover.prototype.calcBackgroundSize = function (backgroundImageFit) {
16416
+ if (backgroundImageFit === "fill") {
16417
+ return "100% 100%";
16418
+ }
16419
+ if (backgroundImageFit === "tile") {
16420
+ return "auto";
16421
+ }
16422
+ return backgroundImageFit;
16423
+ };
16424
+ Cover.prototype.updateHeaderClasses = function () {
16425
+ this.headerClasses = new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_2__["CssClassBuilder"]()
16426
+ .append("sv-header")
16427
+ .append("sv-header__without-background", (this.backgroundColor === "trasparent") && !this.backgroundImage)
16428
+ .append("sv-header__overlap", this.overlapEnabled)
16429
+ .toString();
16430
+ };
16431
+ Cover.prototype.updateContentClasses = function () {
16432
+ var surveyWidthMode = !!this.survey && this.survey.calculateWidthMode();
16433
+ this.maxWidth = this.inheritWidthFrom === "survey" && !!surveyWidthMode && surveyWidthMode === "static" && this.survey.renderedWidth;
16434
+ this.contentClasses = new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_2__["CssClassBuilder"]()
16435
+ .append("sv-header__content")
16436
+ .append("sv-header__content--static", this.inheritWidthFrom === "survey" && !!surveyWidthMode && surveyWidthMode === "static")
16437
+ .append("sv-header__content--responsive", this.inheritWidthFrom === "container" || (!!surveyWidthMode && surveyWidthMode === "responsive"))
16438
+ .toString();
16439
+ };
16440
+ Cover.prototype.updateBackgroundImageClasses = function () {
16441
+ this.backgroundImageClasses = new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_2__["CssClassBuilder"]()
16442
+ .append("sv-header__background-image")
16443
+ .append("sv-header__background-image--contain", this.backgroundImageFit === "contain")
16444
+ .append("sv-header__background-image--tile", this.backgroundImageFit === "tile")
16445
+ .toString();
16446
+ };
16447
+ Cover.prototype.fromTheme = function (theme) {
16448
+ _super.prototype.fromJSON.call(this, theme.header);
16449
+ if (!!theme.cssVariables) {
16450
+ this.backgroundColor = theme.cssVariables["--sjs-header-backcolor"];
16451
+ }
16452
+ };
16453
+ Cover.prototype.getType = function () {
16454
+ return "cover";
16455
+ };
16456
+ Object.defineProperty(Cover.prototype, "renderedHeight", {
16457
+ get: function () {
16458
+ return this.height && (this.survey && !this.survey.isMobile || !this.survey) ? Math.max(this.height, this.actualHeight + 40) + "px" : undefined;
16459
+ },
16460
+ enumerable: false,
16461
+ configurable: true
16462
+ });
16463
+ Object.defineProperty(Cover.prototype, "renderedtextAreaWidth", {
16464
+ get: function () {
16465
+ return this.textAreaWidth ? this.textAreaWidth + "px" : undefined;
16466
+ },
16467
+ enumerable: false,
16468
+ configurable: true
16469
+ });
16470
+ Object.defineProperty(Cover.prototype, "survey", {
16471
+ get: function () {
16472
+ return this._survey;
16473
+ },
16474
+ set: function (newValue) {
16475
+ var _this = this;
16476
+ if (this._survey === newValue)
16477
+ return;
16478
+ this._survey = newValue;
16479
+ if (!!newValue) {
16480
+ this.updateContentClasses();
16481
+ this._survey.onPropertyChanged.add(function (sender, options) {
16482
+ if (options.name == "widthMode" || options.name == "width") {
16483
+ _this.updateContentClasses();
16484
+ }
16485
+ });
16486
+ }
16487
+ },
16488
+ enumerable: false,
16489
+ configurable: true
16490
+ });
16491
+ Object.defineProperty(Cover.prototype, "backgroundImageStyle", {
16492
+ get: function () {
16493
+ if (!this.backgroundImage)
16494
+ return null;
16495
+ return {
16496
+ opacity: this.backgroundImageOpacity,
16497
+ backgroundImage: this.renderBackgroundImage,
16498
+ backgroundSize: this.calcBackgroundSize(this.backgroundImageFit),
16499
+ };
16500
+ },
16501
+ enumerable: false,
16502
+ configurable: true
16503
+ });
16504
+ Cover.prototype.propertyValueChanged = function (name, oldValue, newValue) {
16505
+ _super.prototype.propertyValueChanged.call(this, name, oldValue, newValue);
16506
+ if (name === "backgroundColor" || name === "backgroundImage" || name === "overlapEnabled") {
16507
+ this.updateHeaderClasses();
16508
+ }
16509
+ if (name === "inheritWidthFrom") {
16510
+ this.updateContentClasses();
16511
+ }
16512
+ if (name === "backgroundImageFit") {
16513
+ this.updateBackgroundImageClasses();
16514
+ }
16515
+ };
16516
+ Cover.prototype.calculateActualHeight = function (logoHeight, titleHeight, descriptionHeight) {
16517
+ var positionsY = ["top", "middle", "bottom"];
16518
+ var logoIndex = positionsY.indexOf(this.logoPositionY);
16519
+ var titleIndex = positionsY.indexOf(this.titlePositionY);
16520
+ var descriptionIndex = positionsY.indexOf(this.descriptionPositionY);
16521
+ var positionsX = ["left", "center", "right"];
16522
+ var logoIndexX = positionsX.indexOf(this.logoPositionX);
16523
+ var titleIndexX = positionsX.indexOf(this.titlePositionX);
16524
+ var descriptionIndexX = positionsX.indexOf(this.descriptionPositionX);
16525
+ var heights = [
16526
+ [0, 0, 0],
16527
+ [0, 0, 0],
16528
+ [0, 0, 0]
16529
+ ];
16530
+ heights[logoIndex][logoIndexX] = logoHeight;
16531
+ heights[titleIndex][titleIndexX] += titleHeight;
16532
+ heights[descriptionIndex][descriptionIndexX] += descriptionHeight;
16533
+ return heights.reduce(function (total, rowArr) { return total + Math.max.apply(Math, rowArr); }, 0);
16534
+ };
16535
+ Cover.prototype.processResponsiveness = function (width) {
16536
+ if (this.survey && this.survey.rootElement) {
16537
+ var logoEl = this.survey.rootElement.querySelectorAll(".sv-header__logo")[0];
16538
+ var titleEl = this.survey.rootElement.querySelectorAll(".sv-header__title")[0];
16539
+ var descriptionEl = this.survey.rootElement.querySelectorAll(".sv-header__description")[0];
16540
+ var logoHeight = logoEl ? logoEl.getBoundingClientRect().height : 0;
16541
+ var titleHeight = titleEl ? titleEl.getBoundingClientRect().height : 0;
16542
+ var descriptionHeight = descriptionEl ? descriptionEl.getBoundingClientRect().height : 0;
16543
+ this.actualHeight = this.calculateActualHeight(logoHeight, titleHeight, descriptionHeight);
16544
+ }
16545
+ };
16546
+ __decorate([
16547
+ Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])({ defaultValue: 0 })
16548
+ ], Cover.prototype, "actualHeight", void 0);
16549
+ __decorate([
16550
+ Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
16551
+ ], Cover.prototype, "height", void 0);
16552
+ __decorate([
16553
+ Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
16554
+ ], Cover.prototype, "inheritWidthFrom", void 0);
16555
+ __decorate([
16556
+ Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
16557
+ ], Cover.prototype, "textAreaWidth", void 0);
16558
+ __decorate([
16559
+ Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
16560
+ ], Cover.prototype, "textGlowEnabled", void 0);
16561
+ __decorate([
16562
+ Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
16563
+ ], Cover.prototype, "overlapEnabled", void 0);
16564
+ __decorate([
16565
+ Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
16566
+ ], Cover.prototype, "backgroundColor", void 0);
16567
+ __decorate([
16568
+ Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])({
16569
+ onSet: function (newVal, target) {
16570
+ target.renderBackgroundImage = Object(_utils_utils__WEBPACK_IMPORTED_MODULE_3__["wrapUrlForBackgroundImage"])(newVal);
16571
+ }
16572
+ })
16573
+ ], Cover.prototype, "backgroundImage", void 0);
16574
+ __decorate([
16575
+ Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
16576
+ ], Cover.prototype, "renderBackgroundImage", void 0);
16577
+ __decorate([
16578
+ Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
16579
+ ], Cover.prototype, "backgroundImageFit", void 0);
16580
+ __decorate([
16581
+ Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
16582
+ ], Cover.prototype, "backgroundImageOpacity", void 0);
16583
+ __decorate([
16584
+ Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
16585
+ ], Cover.prototype, "logoPositionX", void 0);
16586
+ __decorate([
16587
+ Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
16588
+ ], Cover.prototype, "logoPositionY", void 0);
16589
+ __decorate([
16590
+ Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
16591
+ ], Cover.prototype, "titlePositionX", void 0);
16592
+ __decorate([
16593
+ Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
16594
+ ], Cover.prototype, "titlePositionY", void 0);
16595
+ __decorate([
16596
+ Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
16597
+ ], Cover.prototype, "descriptionPositionX", void 0);
16598
+ __decorate([
16599
+ Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
16600
+ ], Cover.prototype, "descriptionPositionY", void 0);
16601
+ __decorate([
16602
+ Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
16603
+ ], Cover.prototype, "logoStyle", void 0);
16604
+ __decorate([
16605
+ Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
16606
+ ], Cover.prototype, "titleStyle", void 0);
16607
+ __decorate([
16608
+ Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
16609
+ ], Cover.prototype, "descriptionStyle", void 0);
16610
+ __decorate([
16611
+ Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
16612
+ ], Cover.prototype, "headerClasses", void 0);
16613
+ __decorate([
16614
+ Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
16615
+ ], Cover.prototype, "contentClasses", void 0);
16616
+ __decorate([
16617
+ Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
16618
+ ], Cover.prototype, "maxWidth", void 0);
16619
+ __decorate([
16620
+ Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
16621
+ ], Cover.prototype, "backgroundImageClasses", void 0);
16622
+ return Cover;
16623
+ }(_base__WEBPACK_IMPORTED_MODULE_0__["Base"]));
16624
+
16625
+ _jsonobject__WEBPACK_IMPORTED_MODULE_1__["Serializer"].addClass("cover", [
16626
+ { name: "height:number", minValue: 0, default: 256 },
16627
+ { name: "inheritWidthFrom", default: "survey" },
16628
+ { name: "textAreaWidth:number", minValue: 0, default: 512 },
16629
+ { name: "textGlowEnabled:boolean" },
16630
+ { name: "overlapEnabled:boolean" },
16631
+ { name: "backgroundImage:file" },
16632
+ { name: "backgroundImageOpacity:number", minValue: 0, maxValue: 1, default: 1 },
16633
+ { name: "backgroundImageFit", default: "cover", choices: ["cover", "fill", "contain"] },
16634
+ { name: "logoPositionX", default: "right" },
16635
+ { name: "logoPositionY", default: "top" },
16636
+ { name: "titlePositionX", default: "left" },
16637
+ { name: "titlePositionY", default: "bottom" },
16638
+ { name: "descriptionPositionX", default: "left" },
16639
+ { name: "descriptionPositionY", default: "bottom" }
16640
+ ], function () {
16641
+ return new Cover();
16642
+ });
16643
+
16644
+
16590
16645
  /***/ }),
16591
16646
 
16592
16647
  /***/ "./src/helpers.ts":
@@ -17089,9 +17144,12 @@ var map = {
17089
17144
  "./chevron.svg": "./src/images/chevron.svg",
17090
17145
  "./clear_16x16.svg": "./src/images/clear_16x16.svg",
17091
17146
  "./collapseDetail.svg": "./src/images/collapseDetail.svg",
17147
+ "./drag-n-drop.svg": "./src/images/drag-n-drop.svg",
17092
17148
  "./expandDetail.svg": "./src/images/expandDetail.svg",
17093
17149
  "./loading.svg": "./src/images/loading.svg",
17094
17150
  "./no-image.svg": "./src/images/no-image.svg",
17151
+ "./ranking-arrows.svg": "./src/images/ranking-arrows.svg",
17152
+ "./ranking-dash.svg": "./src/images/ranking-dash.svg",
17095
17153
  "./rating-star-2.svg": "./src/images/rating-star-2.svg",
17096
17154
  "./rating-star-small-2.svg": "./src/images/rating-star-small-2.svg",
17097
17155
  "./rating-star-small.svg": "./src/images/rating-star-small.svg",
@@ -17495,6 +17553,17 @@ module.exports = "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\
17495
17553
 
17496
17554
  /***/ }),
17497
17555
 
17556
+ /***/ "./src/images/drag-n-drop.svg":
17557
+ /*!************************************!*\
17558
+ !*** ./src/images/drag-n-drop.svg ***!
17559
+ \************************************/
17560
+ /*! no static exports found */
17561
+ /***/ (function(module, exports) {
17562
+
17563
+ module.exports = "<svg viewBox=\"0 0 10 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M6 2C6 0.9 6.9 0 8 0C9.1 0 10 0.9 10 2C10 3.1 9.1 4 8 4C6.9 4 6 3.1 6 2ZM2 0C0.9 0 0 0.9 0 2C0 3.1 0.9 4 2 4C3.1 4 4 3.1 4 2C4 0.9 3.1 0 2 0ZM8 6C6.9 6 6 6.9 6 8C6 9.1 6.9 10 8 10C9.1 10 10 9.1 10 8C10 6.9 9.1 6 8 6ZM2 6C0.9 6 0 6.9 0 8C0 9.1 0.9 10 2 10C3.1 10 4 9.1 4 8C4 6.9 3.1 6 2 6ZM8 12C6.9 12 6 12.9 6 14C6 15.1 6.9 16 8 16C9.1 16 10 15.1 10 14C10 12.9 9.1 12 8 12ZM2 12C0.9 12 0 12.9 0 14C0 15.1 0.9 16 2 16C3.1 16 4 15.1 4 14C4 12.9 3.1 12 2 12Z\"></path></svg>"
17564
+
17565
+ /***/ }),
17566
+
17498
17567
  /***/ "./src/images/expandDetail.svg":
17499
17568
  /*!*************************************!*\
17500
17569
  !*** ./src/images/expandDetail.svg ***!
@@ -17528,6 +17597,28 @@ module.exports = "<svg viewBox=\"0 0 48 48\"><g opacity=\"0.5\"><path d=\"M14 17
17528
17597
 
17529
17598
  /***/ }),
17530
17599
 
17600
+ /***/ "./src/images/ranking-arrows.svg":
17601
+ /*!***************************************!*\
17602
+ !*** ./src/images/ranking-arrows.svg ***!
17603
+ \***************************************/
17604
+ /*! no static exports found */
17605
+ /***/ (function(module, exports) {
17606
+
17607
+ module.exports = "<svg viewBox=\"0 0 10 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M10 5L5 0L0 5H4V9H6V5H10Z\"></path><path d=\"M6 19V15H4V19H0L5 24L10 19H6Z\"></path></svg>"
17608
+
17609
+ /***/ }),
17610
+
17611
+ /***/ "./src/images/ranking-dash.svg":
17612
+ /*!*************************************!*\
17613
+ !*** ./src/images/ranking-dash.svg ***!
17614
+ \*************************************/
17615
+ /*! no static exports found */
17616
+ /***/ (function(module, exports) {
17617
+
17618
+ module.exports = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\"><path d=\"M13 7H3V9H13V7Z\"></path></svg>"
17619
+
17620
+ /***/ }),
17621
+
17531
17622
  /***/ "./src/images/rating-star-2.svg":
17532
17623
  /*!**************************************!*\
17533
17624
  !*** ./src/images/rating-star-2.svg ***!
@@ -18340,7 +18431,11 @@ var __spreadArray = (undefined && undefined.__spreadArray) || function (to, from
18340
18431
  function ensureLocString(target, options, key) {
18341
18432
  var locString = target.getLocalizableString(key);
18342
18433
  if (!locString) {
18343
- locString = target.createLocalizableString(key, target, true);
18434
+ var defaultStr = void 0;
18435
+ if (typeof options.localizable === "object" && options.localizable.defaultStr) {
18436
+ defaultStr = options.localizable.defaultStr;
18437
+ }
18438
+ locString = target.createLocalizableString(key, target, true, defaultStr);
18344
18439
  if (typeof options.localizable === "object" &&
18345
18440
  typeof options.localizable.onGetTextCallback === "function") {
18346
18441
  locString.onGetTextCallback = options.localizable.onGetTextCallback;
@@ -18554,14 +18649,17 @@ var JsonObjectProperty = /** @class */ (function () {
18554
18649
  enumerable: false,
18555
18650
  configurable: true
18556
18651
  });
18652
+ JsonObjectProperty.prototype.getDefaultValue = function (obj) {
18653
+ var result = !!this.defaultValueFunc ? this.defaultValueFunc(obj) : this.defaultValueValue;
18654
+ if (!!JsonObjectProperty.getItemValuesDefaultValue &&
18655
+ JsonObject.metaData.isDescendantOf(this.className, "itemvalue")) {
18656
+ result = JsonObjectProperty.getItemValuesDefaultValue(this.defaultValueValue || [], this.className);
18657
+ }
18658
+ return result;
18659
+ };
18557
18660
  Object.defineProperty(JsonObjectProperty.prototype, "defaultValue", {
18558
18661
  get: function () {
18559
- var result = !!this.defaultValueFunc ? this.defaultValueFunc() : this.defaultValueValue;
18560
- if (!!JsonObjectProperty.getItemValuesDefaultValue &&
18561
- JsonObject.metaData.isDescendantOf(this.className, "itemvalue")) {
18562
- result = JsonObjectProperty.getItemValuesDefaultValue(this.defaultValueValue || [], this.className);
18563
- }
18564
- return result;
18662
+ return this.getDefaultValue(undefined);
18565
18663
  },
18566
18664
  set: function (newValue) {
18567
18665
  this.defaultValueValue = newValue;
@@ -18570,8 +18668,12 @@ var JsonObjectProperty = /** @class */ (function () {
18570
18668
  configurable: true
18571
18669
  });
18572
18670
  JsonObjectProperty.prototype.isDefaultValue = function (value) {
18573
- if (!_helpers__WEBPACK_IMPORTED_MODULE_2__["Helpers"].isValueEmpty(this.defaultValue)) {
18574
- return _helpers__WEBPACK_IMPORTED_MODULE_2__["Helpers"].isTwoValueEquals(value, this.defaultValue, false, true, false);
18671
+ return this.isDefaultValueByObj(undefined, value);
18672
+ };
18673
+ JsonObjectProperty.prototype.isDefaultValueByObj = function (obj, value) {
18674
+ var dValue = this.getDefaultValue(obj);
18675
+ if (!_helpers__WEBPACK_IMPORTED_MODULE_2__["Helpers"].isValueEmpty(dValue)) {
18676
+ return _helpers__WEBPACK_IMPORTED_MODULE_2__["Helpers"].isTwoValueEquals(value, dValue, false, true, false);
18575
18677
  }
18576
18678
  if (this.isLocalizable)
18577
18679
  return value === null || value === undefined;
@@ -19662,7 +19764,7 @@ var JsonMetadata = /** @class */ (function () {
19662
19764
  if (prop.hasChoices) {
19663
19765
  var enumRes = prop.getChoices(null);
19664
19766
  if (Array.isArray(enumRes) && enumRes.length > 0) {
19665
- res.enum = enumRes;
19767
+ res.enum = this.getChoicesValues(enumRes);
19666
19768
  }
19667
19769
  }
19668
19770
  if (!!refType) {
@@ -19725,6 +19827,18 @@ var JsonMetadata = /** @class */ (function () {
19725
19827
  res.required = chemaProps.required;
19726
19828
  }
19727
19829
  };
19830
+ JsonMetadata.prototype.getChoicesValues = function (enumRes) {
19831
+ var res = new Array();
19832
+ enumRes.forEach(function (item) {
19833
+ if (typeof item === "object" && item.value !== undefined) {
19834
+ res.push(item.value);
19835
+ }
19836
+ else {
19837
+ res.push(item);
19838
+ }
19839
+ });
19840
+ return res;
19841
+ };
19728
19842
  return JsonMetadata;
19729
19843
  }());
19730
19844
 
@@ -19937,7 +20051,7 @@ var JsonObject = /** @class */ (function () {
19937
20051
  (property.isLightSerializable === false && this.lightSerializing))
19938
20052
  return;
19939
20053
  var value = property.getValue(obj);
19940
- if (!storeDefaults && property.isDefaultValue(value))
20054
+ if (!storeDefaults && property.isDefaultValueByObj(obj, value))
19941
20055
  return;
19942
20056
  if (this.isValueArray(value)) {
19943
20057
  var arrValue = [];
@@ -19951,7 +20065,7 @@ var JsonObject = /** @class */ (function () {
19951
20065
  }
19952
20066
  var hasValue = typeof obj["getPropertyValue"] === "function" &&
19953
20067
  obj["getPropertyValue"](property.name, null) !== null;
19954
- if ((storeDefaults && hasValue) || !property.isDefaultValue(value)) {
20068
+ if ((storeDefaults && hasValue) || !property.isDefaultValueByObj(obj, value)) {
19955
20069
  if (!Serializer.onSerializingProperty || !Serializer.onSerializingProperty(obj, property, value, result)) {
19956
20070
  result[property.name] = value;
19957
20071
  }
@@ -21196,7 +21310,7 @@ var arabicSurveyStrings = {
21196
21310
  loadingFile: "جار التحميل...",
21197
21311
  chooseFile: "اختر الملفات...",
21198
21312
  noFileChosen: "لم تقم باختيار ملف",
21199
- fileDragAreaPlaceholder: "اسحب ملفا وأفلته هنا أو انقر فوق الزر أدناه واختر ملفا لتحميله.",
21313
+ filePlaceholder: "اسحب ملفا وأفلته هنا أو انقر فوق الزر أدناه واختر ملفا لتحميله.",
21200
21314
  confirmDelete: "هل تريد حذف السجل؟",
21201
21315
  keyDuplicationError: "يجب أن تكون هذه القيمة فريدة.",
21202
21316
  addColumn: "أضف العمود",
@@ -21225,8 +21339,8 @@ var arabicSurveyStrings = {
21225
21339
  signaturePlaceHolder: "وقع هنا",
21226
21340
  chooseFileCaption: "اختر ملف",
21227
21341
  takePhotoCaption: "التقاط صورة",
21228
- cameraPlaceHolder: "انقر فوق الزر أدناه لالتقاط صورة باستخدام الكاميرا.",
21229
- fileCameraDragAreaPlaceHolder: "قم بسحب ملف وإفلاته أو تحديده لتحميله أو التقاط صورة باستخدام الكاميرا.",
21342
+ photoPlaceholder: "انقر فوق الزر أدناه لالتقاط صورة باستخدام الكاميرا.",
21343
+ fileOrPhotoPlaceholder: "قم بسحب ملف وإفلاته أو تحديده لتحميله أو التقاط صورة باستخدام الكاميرا.",
21230
21344
  replaceFileCaption: "استبدال الملف",
21231
21345
  removeFileCaption: "قم بإزالة هذا الملف",
21232
21346
  booleanCheckedLabel: "نعم",
@@ -21254,7 +21368,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ar"]
21254
21368
  // ratingOptionsCaption: "Select..." => "اختار..."
21255
21369
  // minError: "The value should not be less than {0}" => "يجب ألا تقل القيمة عن {0}"
21256
21370
  // maxError: "The value should not be greater than {0}" => "يجب ألا تزيد القيمة عن {0}"
21257
- // fileDragAreaPlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "اسحب ملفا وأفلته هنا أو انقر فوق الزر أدناه واختر ملفا لتحميله."
21371
+ // filePlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "اسحب ملفا وأفلته هنا أو انقر فوق الزر أدناه واختر ملفا لتحميله."
21258
21372
  // emptyRowsText: "There are no rows." => "لا توجد صفوف."
21259
21373
  // multipletext_itemname: "text" => "نص"
21260
21374
  // signaturePlaceHolder: "Sign here" => "وقع هنا"
@@ -21268,8 +21382,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ar"]
21268
21382
  // tagboxDoneButtonCaption: "OK" => "موافق"
21269
21383
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "يتم ترتيب جميع الخيارات"
21270
21384
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "قم بسحب وإسقاط الخيارات هنا لترتيبها"// takePhotoCaption: "Take Photo" => "التقاط صورة"
21271
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "انقر فوق الزر أدناه لالتقاط صورة باستخدام الكاميرا."
21272
- // fileCameraDragAreaPlaceHolder: "Drag and drop or select a file to upload or take a photo using the camera." => "قم بسحب ملف وإفلاته أو تحديده لتحميله أو التقاط صورة باستخدام الكاميرا."
21385
+ // photoPlaceholder: "Click the button below to take a photo using the camera." => "انقر فوق الزر أدناه لالتقاط صورة باستخدام الكاميرا."
21386
+ // fileOrPhotoPlaceholder: "Drag and drop or select a file to upload or take a photo using the camera." => "قم بسحب ملف وإفلاته أو تحديده لتحميله أو التقاط صورة باستخدام الكاميرا."
21273
21387
  // replaceFileCaption: "Replace file" => "استبدال الملف"
21274
21388
 
21275
21389
 
@@ -21334,7 +21448,7 @@ var basqueSurveyStrings = {
21334
21448
  loadingFile: "Kargatzen...",
21335
21449
  chooseFile: "Fitxategia(k) hautatu...",
21336
21450
  noFileChosen: "Ez da inolako fitxategirik hautatu",
21337
- fileDragAreaPlaceholder: "Arrastatu eta askatu artxibo bat hemen edo klik egin beheko botoian eta aukeratu artxibo bat kargatzeko.",
21451
+ filePlaceholder: "Arrastatu eta askatu artxibo bat hemen edo klik egin beheko botoian eta aukeratu artxibo bat kargatzeko.",
21338
21452
  confirmDelete: "¿Erregistroa borratu nahi al duzu?",
21339
21453
  keyDuplicationError: "Balio hau bakarra izan behar du.",
21340
21454
  addColumn: "Zutabe bat gehitu",
@@ -21363,8 +21477,8 @@ var basqueSurveyStrings = {
21363
21477
  signaturePlaceHolder: "Sinatu hemen",
21364
21478
  chooseFileCaption: "Fitxategia hautatu",
21365
21479
  takePhotoCaption: "Argazkia hartu",
21366
- cameraPlaceHolder: "Egin klik beheko botoian, kamerarekin argazki bat hartzeko.",
21367
- fileCameraDragAreaPlaceHolder: "Arrastatu eta askatu artxibo bat kamerarekin argazki bat kargatzeko edo hartzeko.",
21480
+ photoPlaceholder: "Egin klik beheko botoian, kamerarekin argazki bat hartzeko.",
21481
+ fileOrPhotoPlaceholder: "Arrastatu eta askatu artxibo bat kamerarekin argazki bat kargatzeko edo hartzeko.",
21368
21482
  replaceFileCaption: "Artxiboa ordeztu",
21369
21483
  removeFileCaption: "Fitxategi hau ezabatu",
21370
21484
  booleanCheckedLabel: "Bai",
@@ -21390,7 +21504,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["eu"]
21390
21504
  // indexText: "{0} of {1}" => "{1} {0}"
21391
21505
  // panelDynamicTabTextFormat: "Panel {panelIndex}" => "Panel {panelIndex}"
21392
21506
  // ratingOptionsCaption: "Select..." => "Aukeratu..."
21393
- // fileDragAreaPlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "Arrastatu eta askatu artxibo bat hemen edo klik egin beheko botoian eta aukeratu artxibo bat kargatzeko."
21507
+ // filePlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "Arrastatu eta askatu artxibo bat hemen edo klik egin beheko botoian eta aukeratu artxibo bat kargatzeko."
21394
21508
  // filterStringPlaceholder: "Type to search..." => "Idatzi bila..."
21395
21509
  // emptyMessage: "No data to display" => "Ez daturik erakusteko"
21396
21510
  // noEntriesText: "There are no entries yet.\nClick the button below to add a new entry." => "Oraindik ez sarrerarik.\nKlik beheko botoian klik egin sarrera berri bat eransteko."
@@ -21399,8 +21513,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["eu"]
21399
21513
  // tagboxDoneButtonCaption: "OK" => "Ados"
21400
21514
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Aukera guztiak sailkatuta daude"
21401
21515
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Arrastaka eta askatzen ditu hemen sailkatzeko"// takePhotoCaption: "Take Photo" => "Argazkia hartu"
21402
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Egin klik beheko botoian, kamerarekin argazki bat hartzeko."
21403
- // fileCameraDragAreaPlaceHolder: "Drag and drop or select a file to upload or take a photo using the camera." => "Arrastatu eta askatu artxibo bat kamerarekin argazki bat kargatzeko edo hartzeko."
21516
+ // photoPlaceholder: "Click the button below to take a photo using the camera." => "Egin klik beheko botoian, kamerarekin argazki bat hartzeko."
21517
+ // fileOrPhotoPlaceholder: "Drag and drop or select a file to upload or take a photo using the camera." => "Arrastatu eta askatu artxibo bat kamerarekin argazki bat kargatzeko edo hartzeko."
21404
21518
  // replaceFileCaption: "Replace file" => "Artxiboa ordeztu"
21405
21519
 
21406
21520
 
@@ -21465,7 +21579,7 @@ var bulgarianStrings = {
21465
21579
  loadingFile: "Зареждане...",
21466
21580
  chooseFile: "Изберете файл(ове)...",
21467
21581
  noFileChosen: "Няма избран файл",
21468
- fileDragAreaPlaceholder: "Плъзнете и пуснете файл тук или щракнете върху бутона по-долу и изберете файл за качване.",
21582
+ filePlaceholder: "Плъзнете и пуснете файл тук или щракнете върху бутона по-долу и изберете файл за качване.",
21469
21583
  confirmDelete: "Желаете ли да изтриете записа?",
21470
21584
  keyDuplicationError: "Стойността следва да бъде уникална.",
21471
21585
  addColumn: "Добавяне на колона",
@@ -21494,8 +21608,8 @@ var bulgarianStrings = {
21494
21608
  signaturePlaceHolder: "Подпишете тук",
21495
21609
  chooseFileCaption: "Изберете файл",
21496
21610
  takePhotoCaption: "Направете снимка",
21497
- cameraPlaceHolder: "Кликнете върху бутона по-долу, за да направите снимка с помощта на камерата.",
21498
- fileCameraDragAreaPlaceHolder: "Плъзнете и пуснете или изберете файл за качване или правене на снимка с помощта на камерата.",
21611
+ photoPlaceholder: "Кликнете върху бутона по-долу, за да направите снимка с помощта на камерата.",
21612
+ fileOrPhotoPlaceholder: "Плъзнете и пуснете или изберете файл за качване или правене на снимка с помощта на камерата.",
21499
21613
  replaceFileCaption: "Заместване на файл",
21500
21614
  removeFileCaption: "Премахване на файла",
21501
21615
  booleanCheckedLabel: "Да",
@@ -21523,7 +21637,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["bg"]
21523
21637
  // ratingOptionsCaption: "Select..." => "Отбран..."
21524
21638
  // minError: "The value should not be less than {0}" => "Стойността не трябва да бъде по-малка от {0}"
21525
21639
  // maxError: "The value should not be greater than {0}" => "Стойността не трябва да бъде по-голяма от {0}"
21526
- // fileDragAreaPlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "Плъзнете и пуснете файл тук или щракнете върху бутона по-долу и изберете файл за качване."
21640
+ // filePlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "Плъзнете и пуснете файл тук или щракнете върху бутона по-долу и изберете файл за качване."
21527
21641
  // emptyRowsText: "There are no rows." => "Няма редове."
21528
21642
  // multipletext_itemname: "text" => "Текст"
21529
21643
  // signaturePlaceHolder: "Sign here" => "Подпишете тук"
@@ -21537,8 +21651,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["bg"]
21537
21651
  // tagboxDoneButtonCaption: "OK" => "Добре"
21538
21652
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Всички възможности за избор са класирани"
21539
21653
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Плъзнете и пуснете опции тук, за да ги класирате"// takePhotoCaption: "Take Photo" => "Направете снимка"
21540
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Кликнете върху бутона по-долу, за да направите снимка с помощта на камерата."
21541
- // fileCameraDragAreaPlaceHolder: "Drag and drop or select a file to upload or take a photo using the camera." => "Плъзнете и пуснете или изберете файл за качване или правене на снимка с помощта на камерата."
21654
+ // photoPlaceholder: "Click the button below to take a photo using the camera." => "Кликнете върху бутона по-долу, за да направите снимка с помощта на камерата."
21655
+ // fileOrPhotoPlaceholder: "Drag and drop or select a file to upload or take a photo using the camera." => "Плъзнете и пуснете или изберете файл за качване или правене на снимка с помощта на камерата."
21542
21656
  // replaceFileCaption: "Replace file" => "Заместване на файл"
21543
21657
 
21544
21658
 
@@ -21603,7 +21717,7 @@ var catalanSurveyStrings = {
21603
21717
  loadingFile: "Càrrega...",
21604
21718
  chooseFile: "Trieu fitxer(s)...",
21605
21719
  noFileChosen: "No s'ha triat cap fitxer",
21606
- fileDragAreaPlaceholder: "Arrossegueu i deixeu anar un fitxer aquí o feu clic al botó següent i trieu un fitxer per carregar.",
21720
+ filePlaceholder: "Arrossegueu i deixeu anar un fitxer aquí o feu clic al botó següent i trieu un fitxer per carregar.",
21607
21721
  confirmDelete: "Vols eliminar el registre?",
21608
21722
  keyDuplicationError: "Aquest valor ha de ser únic.",
21609
21723
  addColumn: "Afegeix una columna",
@@ -21632,8 +21746,8 @@ var catalanSurveyStrings = {
21632
21746
  signaturePlaceHolder: "Inscriu-te aquí",
21633
21747
  chooseFileCaption: "Tria un fitxer",
21634
21748
  takePhotoCaption: "Fer foto",
21635
- cameraPlaceHolder: "Feu clic al botó següent per fer una foto amb la càmera.",
21636
- fileCameraDragAreaPlaceHolder: "Arrossegueu i deixeu anar o seleccioneu un fitxer per penjar-lo o fer-ne una foto amb la càmera.",
21749
+ photoPlaceholder: "Feu clic al botó següent per fer una foto amb la càmera.",
21750
+ fileOrPhotoPlaceholder: "Arrossegueu i deixeu anar o seleccioneu un fitxer per penjar-lo o fer-ne una foto amb la càmera.",
21637
21751
  replaceFileCaption: "Substitueix el fitxer",
21638
21752
  removeFileCaption: "Suprimeix aquest fitxer",
21639
21753
  booleanCheckedLabel: "Sí",
@@ -21675,7 +21789,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ca"]
21675
21789
  // loadingFile: "Loading..." => "Càrrega..."
21676
21790
  // chooseFile: "Choose file(s)..." => "Trieu fitxer(s)..."
21677
21791
  // noFileChosen: "No file chosen" => "No s'ha triat cap fitxer"
21678
- // fileDragAreaPlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "Arrossegueu i deixeu anar un fitxer aquí o feu clic al botó següent i trieu un fitxer per carregar."
21792
+ // filePlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "Arrossegueu i deixeu anar un fitxer aquí o feu clic al botó següent i trieu un fitxer per carregar."
21679
21793
  // confirmDelete: "Do you want to delete the record?" => "Vols eliminar el registre?"
21680
21794
  // keyDuplicationError: "This value should be unique." => "Aquest valor ha de ser únic."
21681
21795
  // addColumn: "Add Column" => "Afegeix una columna"
@@ -21715,8 +21829,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ca"]
21715
21829
  // tagboxDoneButtonCaption: "OK" => "D'ACORD"
21716
21830
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Totes les opcions estan classificades"
21717
21831
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Arrossegueu i deixeu anar les opcions aquí per classificar-les"// takePhotoCaption: "Take Photo" => "Fer foto"
21718
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Feu clic al botó següent per fer una foto amb la càmera."
21719
- // fileCameraDragAreaPlaceHolder: "Drag and drop or select a file to upload or take a photo using the camera." => "Arrossegueu i deixeu anar o seleccioneu un fitxer per penjar-lo o fer-ne una foto amb la càmera."
21832
+ // photoPlaceholder: "Click the button below to take a photo using the camera." => "Feu clic al botó següent per fer una foto amb la càmera."
21833
+ // fileOrPhotoPlaceholder: "Drag and drop or select a file to upload or take a photo using the camera." => "Arrossegueu i deixeu anar o seleccioneu un fitxer per penjar-lo o fer-ne una foto amb la càmera."
21720
21834
  // replaceFileCaption: "Replace file" => "Substitueix el fitxer"
21721
21835
 
21722
21836
 
@@ -21781,7 +21895,7 @@ var croatianStrings = {
21781
21895
  loadingFile: "Učitavanje...",
21782
21896
  chooseFile: "Odaberite datoteku...",
21783
21897
  noFileChosen: "Nije odabrana datoteka",
21784
- fileDragAreaPlaceholder: "Povucite i ispustite datoteku ovdje ili kliknite donji gumb i odaberite datoteku koju želite prenijeti.",
21898
+ filePlaceholder: "Povucite i ispustite datoteku ovdje ili kliknite donji gumb i odaberite datoteku koju želite prenijeti.",
21785
21899
  confirmDelete: "Želite li izbrisati zapis?",
21786
21900
  keyDuplicationError: "Ta bi vrijednost trebala biti jedinstvena.",
21787
21901
  addColumn: "Dodavanje stupca",
@@ -21810,8 +21924,8 @@ var croatianStrings = {
21810
21924
  signaturePlaceHolder: "Potpiši ovdje",
21811
21925
  chooseFileCaption: "Odaberite datoteku",
21812
21926
  takePhotoCaption: "Snimi fotografiju",
21813
- cameraPlaceHolder: "Kliknite donji gumb da biste snimili fotografiju pomoću kamere.",
21814
- fileCameraDragAreaPlaceHolder: "Povucite i ispustite ili odaberite datoteku za prijenos ili snimanje fotografije pomoću kamere.",
21927
+ photoPlaceholder: "Kliknite donji gumb da biste snimili fotografiju pomoću kamere.",
21928
+ fileOrPhotoPlaceholder: "Povucite i ispustite ili odaberite datoteku za prijenos ili snimanje fotografije pomoću kamere.",
21815
21929
  replaceFileCaption: "Zamijeni datoteku",
21816
21930
  removeFileCaption: "Uklonite ovu datoteku",
21817
21931
  booleanCheckedLabel: "Da",
@@ -21839,7 +21953,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["hr"]
21839
21953
  // ratingOptionsCaption: "Select..." => "Odabirati..."
21840
21954
  // minError: "The value should not be less than {0}" => "Vrijednost ne smije biti manja od {0}"
21841
21955
  // maxError: "The value should not be greater than {0}" => "Vrijednost ne smije biti veća od {0}"
21842
- // fileDragAreaPlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "Povucite i ispustite datoteku ovdje ili kliknite donji gumb i odaberite datoteku koju želite prenijeti."
21956
+ // filePlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "Povucite i ispustite datoteku ovdje ili kliknite donji gumb i odaberite datoteku koju želite prenijeti."
21843
21957
  // emptyRowsText: "There are no rows." => "Nema redova."
21844
21958
  // multipletext_itemname: "text" => "Tekstualna poruka"
21845
21959
  // signaturePlaceHolder: "Sign here" => "Potpiši ovdje"
@@ -21851,8 +21965,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["hr"]
21851
21965
  // tagboxDoneButtonCaption: "OK" => "OK"
21852
21966
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Svi izbori su rangirani"
21853
21967
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Ovdje povucite i ispustite odabire da biste ih rangirali"// takePhotoCaption: "Take Photo" => "Snimi fotografiju"
21854
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Kliknite donji gumb da biste snimili fotografiju pomoću kamere."
21855
- // fileCameraDragAreaPlaceHolder: "Drag and drop or select a file to upload or take a photo using the camera." => "Povucite i ispustite ili odaberite datoteku za prijenos ili snimanje fotografije pomoću kamere."
21968
+ // photoPlaceholder: "Click the button below to take a photo using the camera." => "Kliknite donji gumb da biste snimili fotografiju pomoću kamere."
21969
+ // fileOrPhotoPlaceholder: "Drag and drop or select a file to upload or take a photo using the camera." => "Povucite i ispustite ili odaberite datoteku za prijenos ili snimanje fotografije pomoću kamere."
21856
21970
  // replaceFileCaption: "Replace file" => "Zamijeni datoteku"
21857
21971
 
21858
21972
 
@@ -21917,7 +22031,7 @@ var czechSurveyStrings = {
21917
22031
  loadingFile: "Načítání...",
21918
22032
  chooseFile: "Vyberte soubory...",
21919
22033
  noFileChosen: "Není zvolený žádný soubor",
21920
- fileDragAreaPlaceholder: "Přetáhněte sem soubor nebo klikněte na tlačítko níže a vyberte soubor, který chcete nahrát.",
22034
+ filePlaceholder: "Přetáhněte sem soubor nebo klikněte na tlačítko níže a vyberte soubor, který chcete nahrát.",
21921
22035
  confirmDelete: "Chcete záznam smazat?",
21922
22036
  keyDuplicationError: "Tato hodnota by měla být unikátní.",
21923
22037
  addColumn: "Přidat sloupec",
@@ -21946,8 +22060,8 @@ var czechSurveyStrings = {
21946
22060
  signaturePlaceHolder: "Podepište se zde",
21947
22061
  chooseFileCaption: "Vyberte soubor",
21948
22062
  takePhotoCaption: "Pořídit fotografii",
21949
- cameraPlaceHolder: "Kliknutím na tlačítko níže pořídíte fotografii pomocí fotoaparátu.",
21950
- fileCameraDragAreaPlaceHolder: "Přetáhněte nebo vyberte soubor, který chcete nahrát nebo pořiďte fotografii pomocí fotoaparátu.",
22063
+ photoPlaceholder: "Kliknutím na tlačítko níže pořídíte fotografii pomocí fotoaparátu.",
22064
+ fileOrPhotoPlaceholder: "Přetáhněte nebo vyberte soubor, který chcete nahrát nebo pořiďte fotografii pomocí fotoaparátu.",
21951
22065
  replaceFileCaption: "Nahradit soubor",
21952
22066
  removeFileCaption: "Odeberte tento soubor",
21953
22067
  booleanCheckedLabel: "Ano",
@@ -21975,7 +22089,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["cs"]
21975
22089
  // ratingOptionsCaption: "Select..." => "Vybrat..."
21976
22090
  // minError: "The value should not be less than {0}" => "Hodnota by neměla být menší než {0}"
21977
22091
  // maxError: "The value should not be greater than {0}" => "Hodnota by neměla být větší než {0}"
21978
- // fileDragAreaPlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "Přetáhněte sem soubor nebo klikněte na tlačítko níže a vyberte soubor, který chcete nahrát."
22092
+ // filePlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "Přetáhněte sem soubor nebo klikněte na tlačítko níže a vyberte soubor, který chcete nahrát."
21979
22093
  // emptyRowsText: "There are no rows." => "Neexistují žádné řádky."
21980
22094
  // multipletext_itemname: "text" => "Text"
21981
22095
  // signaturePlaceHolder: "Sign here" => "Podepište se zde"
@@ -21989,8 +22103,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["cs"]
21989
22103
  // tagboxDoneButtonCaption: "OK" => "OK"
21990
22104
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Všechny možnosti jsou seřazeny"
21991
22105
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Přetáhněte volby zde a seřaďte je"// takePhotoCaption: "Take Photo" => "Pořídit fotografii"
21992
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Kliknutím na tlačítko níže pořídíte fotografii pomocí fotoaparátu."
21993
- // fileCameraDragAreaPlaceHolder: "Drag and drop or select a file to upload or take a photo using the camera." => "Přetáhněte nebo vyberte soubor, který chcete nahrát nebo pořiďte fotografii pomocí fotoaparátu."
22106
+ // photoPlaceholder: "Click the button below to take a photo using the camera." => "Kliknutím na tlačítko níže pořídíte fotografii pomocí fotoaparátu."
22107
+ // fileOrPhotoPlaceholder: "Drag and drop or select a file to upload or take a photo using the camera." => "Přetáhněte nebo vyberte soubor, který chcete nahrát nebo pořiďte fotografii pomocí fotoaparátu."
21994
22108
  // replaceFileCaption: "Replace file" => "Nahradit soubor"
21995
22109
 
21996
22110
 
@@ -22055,7 +22169,7 @@ var danishSurveyStrings = {
22055
22169
  loadingFile: "Indlæser...",
22056
22170
  chooseFile: "Vælg fil(er)...",
22057
22171
  noFileChosen: "Ingen fil er valgt",
22058
- fileDragAreaPlaceholder: "Træk og slip en fil her, eller klik på knappen nedenfor, og vælg en fil, der skal uploades.",
22172
+ filePlaceholder: "Træk og slip en fil her, eller klik på knappen nedenfor, og vælg en fil, der skal uploades.",
22059
22173
  confirmDelete: "Vil du fjerne den?",
22060
22174
  keyDuplicationError: "Denne værdi skal være unik.",
22061
22175
  addColumn: "Tilføj kolonne",
@@ -22084,8 +22198,8 @@ var danishSurveyStrings = {
22084
22198
  signaturePlaceHolder: "Tilmeld dig her",
22085
22199
  chooseFileCaption: "Vælg fil",
22086
22200
  takePhotoCaption: "Tag billede",
22087
- cameraPlaceHolder: "Klik på knappen nedenfor for at tage et billede med kameraet.",
22088
- fileCameraDragAreaPlaceHolder: "Træk og slip, eller vælg en fil, der skal uploades, eller tag et billede med kameraet.",
22201
+ photoPlaceholder: "Klik på knappen nedenfor for at tage et billede med kameraet.",
22202
+ fileOrPhotoPlaceholder: "Træk og slip, eller vælg en fil, der skal uploades, eller tag et billede med kameraet.",
22089
22203
  replaceFileCaption: "Erstat fil",
22090
22204
  removeFileCaption: "Fjern denne fil",
22091
22205
  booleanCheckedLabel: "Ja",
@@ -22113,7 +22227,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["da"]
22113
22227
  // ratingOptionsCaption: "Select..." => "Markere..."
22114
22228
  // minError: "The value should not be less than {0}" => "Værdien bør ikke være mindre end {0}"
22115
22229
  // maxError: "The value should not be greater than {0}" => "Værdien bør ikke være større end {0}"
22116
- // fileDragAreaPlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "Træk og slip en fil her, eller klik på knappen nedenfor, og vælg en fil, der skal uploades."
22230
+ // filePlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "Træk og slip en fil her, eller klik på knappen nedenfor, og vælg en fil, der skal uploades."
22117
22231
  // emptyRowsText: "There are no rows." => "Der er ingen rækker."
22118
22232
  // multipletext_itemname: "text" => "Tekst"
22119
22233
  // signaturePlaceHolder: "Sign here" => "Tilmeld dig her"
@@ -22127,8 +22241,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["da"]
22127
22241
  // tagboxDoneButtonCaption: "OK" => "OK"
22128
22242
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Alle valg er rangeret"
22129
22243
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Træk og slip valg her for at rangere dem"// takePhotoCaption: "Take Photo" => "Tag billede"
22130
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Klik på knappen nedenfor for at tage et billede med kameraet."
22131
- // fileCameraDragAreaPlaceHolder: "Drag and drop or select a file to upload or take a photo using the camera." => "Træk og slip, eller vælg en fil, der skal uploades, eller tag et billede med kameraet."
22244
+ // photoPlaceholder: "Click the button below to take a photo using the camera." => "Klik på knappen nedenfor for at tage et billede med kameraet."
22245
+ // fileOrPhotoPlaceholder: "Drag and drop or select a file to upload or take a photo using the camera." => "Træk og slip, eller vælg en fil, der skal uploades, eller tag et billede med kameraet."
22132
22246
  // replaceFileCaption: "Replace file" => "Erstat fil"
22133
22247
 
22134
22248
 
@@ -22193,7 +22307,7 @@ var dutchSurveyStrings = {
22193
22307
  loadingFile: "Laden...",
22194
22308
  chooseFile: "Kies uw bestand(en)...",
22195
22309
  noFileChosen: "Geen bestand gekozen",
22196
- fileDragAreaPlaceholder: "Sleep het bestand naar hier",
22310
+ filePlaceholder: "Sleep het bestand naar hier",
22197
22311
  confirmDelete: "Wilt u deze gegevens verwijderen?",
22198
22312
  keyDuplicationError: "Deze waarde moet uniek zijn.",
22199
22313
  addColumn: "Voeg kolom toe",
@@ -22222,8 +22336,8 @@ var dutchSurveyStrings = {
22222
22336
  signaturePlaceHolder: "Hier tekenen",
22223
22337
  chooseFileCaption: "Gekozen bestand",
22224
22338
  takePhotoCaption: "Foto maken",
22225
- cameraPlaceHolder: "Klik op de onderstaande knop om een foto te maken met de camera.",
22226
- fileCameraDragAreaPlaceHolder: "Sleep en zet neer of selecteer een bestand om te uploaden of maak een foto met de camera.",
22339
+ photoPlaceholder: "Klik op de onderstaande knop om een foto te maken met de camera.",
22340
+ fileOrPhotoPlaceholder: "Sleep en zet neer of selecteer een bestand om te uploaden of maak een foto met de camera.",
22227
22341
  replaceFileCaption: "Bestand vervangen",
22228
22342
  removeFileCaption: "Verwijder dit bestand",
22229
22343
  booleanCheckedLabel: "Ja",
@@ -22263,8 +22377,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["nl"]
22263
22377
  // tagboxDoneButtonCaption: "OK" => "OK"
22264
22378
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Alle keuzes zijn gerangschikt"
22265
22379
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Drag en drop keuzes hier om ze te rangschikken"// takePhotoCaption: "Take Photo" => "Foto maken"
22266
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Klik op de onderstaande knop om een foto te maken met de camera."
22267
- // fileCameraDragAreaPlaceHolder: "Drag and drop or select a file to upload or take a photo using the camera." => "Sleep en zet neer of selecteer een bestand om te uploaden of maak een foto met de camera."
22380
+ // photoPlaceholder: "Click the button below to take a photo using the camera." => "Klik op de onderstaande knop om een foto te maken met de camera."
22381
+ // fileOrPhotoPlaceholder: "Drag and drop or select a file to upload or take a photo using the camera." => "Sleep en zet neer of selecteer een bestand om te uploaden of maak een foto met de camera."
22268
22382
  // replaceFileCaption: "Replace file" => "Bestand vervangen"
22269
22383
 
22270
22384
 
@@ -22329,7 +22443,7 @@ var englishStrings = {
22329
22443
  loadingFile: "Loading...",
22330
22444
  chooseFile: "Choose file(s)...",
22331
22445
  noFileChosen: "No file chosen",
22332
- fileDragAreaPlaceholder: "Drag and drop a file here or click the button below to select a file to upload.",
22446
+ filePlaceholder: "Drag and drop a file here or click the button below to select a file to upload.",
22333
22447
  confirmDelete: "Do you want to delete the record?",
22334
22448
  keyDuplicationError: "This value should be unique.",
22335
22449
  addColumn: "Add Column",
@@ -22358,8 +22472,8 @@ var englishStrings = {
22358
22472
  signaturePlaceHolder: "Sign here",
22359
22473
  chooseFileCaption: "Select File",
22360
22474
  takePhotoCaption: "Take Photo",
22361
- cameraPlaceHolder: "Click the button below to take a photo using the camera.",
22362
- fileCameraDragAreaPlaceHolder: "Drag and drop or select a file to upload or take a photo using the camera.",
22475
+ photoPlaceholder: "Click the button below to take a photo using the camera.",
22476
+ fileOrPhotoPlaceholder: "Drag and drop or select a file to upload or take a photo using the camera.",
22363
22477
  replaceFileCaption: "Replace file",
22364
22478
  removeFileCaption: "Remove this file",
22365
22479
  booleanCheckedLabel: "Yes",
@@ -22448,7 +22562,7 @@ var estonianSurveyStrings = {
22448
22562
  loadingFile: "Laen...",
22449
22563
  chooseFile: "Vali fail(id)...",
22450
22564
  noFileChosen: "Faili pole valitud",
22451
- fileDragAreaPlaceholder: "Pukseerige fail siia või klõpsake allolevat nuppu ja valige üleslaaditav fail.",
22565
+ filePlaceholder: "Pukseerige fail siia või klõpsake allolevat nuppu ja valige üleslaaditav fail.",
22452
22566
  confirmDelete: "Kas tahad kirje kustutada?",
22453
22567
  keyDuplicationError: "See väärtus peab olema unikaalne.",
22454
22568
  addColumn: "Lisa veerg",
@@ -22477,8 +22591,8 @@ var estonianSurveyStrings = {
22477
22591
  signaturePlaceHolder: "Allkirjasta siin",
22478
22592
  chooseFileCaption: "Vali fail",
22479
22593
  takePhotoCaption: "Pildistamine",
22480
- cameraPlaceHolder: "Kaamera abil pildistamiseks klõpsake allolevat nuppu.",
22481
- fileCameraDragAreaPlaceHolder: "Pukseerige või valige üleslaaditav fail või pildistage seda kaamera abil.",
22594
+ photoPlaceholder: "Kaamera abil pildistamiseks klõpsake allolevat nuppu.",
22595
+ fileOrPhotoPlaceholder: "Pukseerige või valige üleslaaditav fail või pildistage seda kaamera abil.",
22482
22596
  replaceFileCaption: "Asenda fail",
22483
22597
  removeFileCaption: "Eemalda see fail",
22484
22598
  booleanCheckedLabel: "Jah",
@@ -22506,7 +22620,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["et"]
22506
22620
  // ratingOptionsCaption: "Select..." => "Valima..."
22507
22621
  // minError: "The value should not be less than {0}" => "Väärtus ei tohiks olla väiksem kui {0}"
22508
22622
  // maxError: "The value should not be greater than {0}" => "Väärtus ei tohiks olla suurem kui {0}"
22509
- // fileDragAreaPlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "Pukseerige fail siia või klõpsake allolevat nuppu ja valige üleslaaditav fail."
22623
+ // filePlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "Pukseerige fail siia või klõpsake allolevat nuppu ja valige üleslaaditav fail."
22510
22624
  // emptyRowsText: "There are no rows." => "Ridu pole."
22511
22625
  // multipletext_itemname: "text" => "Tekst"
22512
22626
  // signaturePlaceHolder: "Sign here" => "Allkirjasta siin"
@@ -22520,8 +22634,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["et"]
22520
22634
  // tagboxDoneButtonCaption: "OK" => "OK"
22521
22635
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Kõik valikud on järjestatud"
22522
22636
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Lohistage valikuid siia, et neid järjestada"// takePhotoCaption: "Take Photo" => "Pildistamine"
22523
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Kaamera abil pildistamiseks klõpsake allolevat nuppu."
22524
- // fileCameraDragAreaPlaceHolder: "Drag and drop or select a file to upload or take a photo using the camera." => "Pukseerige või valige üleslaaditav fail või pildistage seda kaamera abil."
22637
+ // photoPlaceholder: "Click the button below to take a photo using the camera." => "Kaamera abil pildistamiseks klõpsake allolevat nuppu."
22638
+ // fileOrPhotoPlaceholder: "Drag and drop or select a file to upload or take a photo using the camera." => "Pukseerige või valige üleslaaditav fail või pildistage seda kaamera abil."
22525
22639
  // replaceFileCaption: "Replace file" => "Asenda fail"
22526
22640
 
22527
22641
 
@@ -22586,7 +22700,7 @@ var finnishSurveyStrings = {
22586
22700
  loadingFile: "Ladataan...",
22587
22701
  chooseFile: "Valitse tiedosto(t)...",
22588
22702
  noFileChosen: "Ei tiedostoa valittuna",
22589
- fileDragAreaPlaceholder: "Pudota tiedosto tähän tai lataa tiedosto napsauttamalla alla olevaa painiketta.",
22703
+ filePlaceholder: "Pudota tiedosto tähän tai lataa tiedosto napsauttamalla alla olevaa painiketta.",
22590
22704
  confirmDelete: "Haluatko poistaa osion?",
22591
22705
  keyDuplicationError: "Tämä arvo on jo käytössä. Syötä toinen arvo.",
22592
22706
  addColumn: "Lisää sarake",
@@ -22615,8 +22729,8 @@ var finnishSurveyStrings = {
22615
22729
  signaturePlaceHolder: "Allekirjoita tähän",
22616
22730
  chooseFileCaption: "Valitse tiedosto",
22617
22731
  takePhotoCaption: "Ota valokuva",
22618
- cameraPlaceHolder: "Napsauta alla olevaa painiketta ottaaksesi valokuvan kameralla.",
22619
- fileCameraDragAreaPlaceHolder: "Vedä ja pudota tai valitse ladattava tiedosto tai ota valokuva kameralla.",
22732
+ photoPlaceholder: "Napsauta alla olevaa painiketta ottaaksesi valokuvan kameralla.",
22733
+ fileOrPhotoPlaceholder: "Vedä ja pudota tai valitse ladattava tiedosto tai ota valokuva kameralla.",
22620
22734
  replaceFileCaption: "Korvaa tiedosto",
22621
22735
  removeFileCaption: "Poista tämä tiedosto",
22622
22736
  booleanCheckedLabel: "Kyllä",
@@ -22646,8 +22760,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["fi"]
22646
22760
  // tagboxDoneButtonCaption: "OK" => "OKEI"
22647
22761
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Kaikki valinnat asetetaan paremmuusjärjestykseen"
22648
22762
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Vedä ja pudota vaihtoehdot tähän luokitellaksesi ne"// takePhotoCaption: "Take Photo" => "Ota valokuva"
22649
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Napsauta alla olevaa painiketta ottaaksesi valokuvan kameralla."
22650
- // fileCameraDragAreaPlaceHolder: "Drag and drop or select a file to upload or take a photo using the camera." => "Vedä ja pudota tai valitse ladattava tiedosto tai ota valokuva kameralla."
22763
+ // photoPlaceholder: "Click the button below to take a photo using the camera." => "Napsauta alla olevaa painiketta ottaaksesi valokuvan kameralla."
22764
+ // fileOrPhotoPlaceholder: "Drag and drop or select a file to upload or take a photo using the camera." => "Vedä ja pudota tai valitse ladattava tiedosto tai ota valokuva kameralla."
22651
22765
  // replaceFileCaption: "Replace file" => "Korvaa tiedosto"
22652
22766
 
22653
22767
 
@@ -22712,7 +22826,7 @@ var frenchSurveyStrings = {
22712
22826
  loadingFile: "Chargement...",
22713
22827
  chooseFile: "Ajouter des fichiers...",
22714
22828
  noFileChosen: "Aucun fichier ajouté",
22715
- fileDragAreaPlaceholder: "Déposez un fichier ici ou cliquez sur le bouton ci-dessous pour charger le fichier.",
22829
+ filePlaceholder: "Déposez un fichier ici ou cliquez sur le bouton ci-dessous pour charger le fichier.",
22716
22830
  confirmDelete: "Voulez-vous supprimer cet enregistrement ?",
22717
22831
  keyDuplicationError: "Cette valeur doit être unique.",
22718
22832
  addColumn: "Ajouter une colonne",
@@ -22741,8 +22855,8 @@ var frenchSurveyStrings = {
22741
22855
  signaturePlaceHolder: "Signez ici",
22742
22856
  chooseFileCaption: "Ajouter un fichier",
22743
22857
  takePhotoCaption: "Prendre une photo",
22744
- cameraPlaceHolder: "Cliquez sur le bouton ci-dessous pour prendre une photo à l’aide de l’appareil photo.",
22745
- fileCameraDragAreaPlaceHolder: "Faites glisser et déposez ou sélectionnez un fichier à télécharger ou à prendre une photo à l’aide de l’appareil photo.",
22858
+ photoPlaceholder: "Cliquez sur le bouton ci-dessous pour prendre une photo à l’aide de l’appareil photo.",
22859
+ fileOrPhotoPlaceholder: "Faites glisser et déposez ou sélectionnez un fichier à télécharger ou à prendre une photo à l’aide de l’appareil photo.",
22746
22860
  replaceFileCaption: "Remplacer le fichier",
22747
22861
  removeFileCaption: "Enlever ce fichier",
22748
22862
  booleanCheckedLabel: "Oui",
@@ -22772,8 +22886,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["fr"]
22772
22886
  // tagboxDoneButtonCaption: "OK" => "D’ACCORD"
22773
22887
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Tous les choix sont classés"
22774
22888
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Faites glisser et déposez les choix ici pour les classer"// takePhotoCaption: "Take Photo" => "Prendre une photo"
22775
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Cliquez sur le bouton ci-dessous pour prendre une photo à l’aide de l’appareil photo."
22776
- // fileCameraDragAreaPlaceHolder: "Drag and drop or select a file to upload or take a photo using the camera." => "Faites glisser et déposez ou sélectionnez un fichier à télécharger ou à prendre une photo à l’aide de l’appareil photo."
22889
+ // photoPlaceholder: "Click the button below to take a photo using the camera." => "Cliquez sur le bouton ci-dessous pour prendre une photo à l’aide de l’appareil photo."
22890
+ // fileOrPhotoPlaceholder: "Drag and drop or select a file to upload or take a photo using the camera." => "Faites glisser et déposez ou sélectionnez un fichier à télécharger ou à prendre une photo à l’aide de l’appareil photo."
22777
22891
  // replaceFileCaption: "Replace file" => "Remplacer le fichier"
22778
22892
 
22779
22893
 
@@ -22838,7 +22952,7 @@ var georgianSurveyStrings = {
22838
22952
  loadingFile: "იტვირთება...",
22839
22953
  chooseFile: "აირჩიეთ ფაილი...",
22840
22954
  noFileChosen: "ფაილის არჩევა არ არის",
22841
- fileDragAreaPlaceholder: "გადაიტანეთ და ჩამოაგდეთ ფაილი აქ ან დააჭირეთ ქვემოთ მოცემულ ღილაკს და აირჩიეთ ფაილი ასატვირთად.",
22955
+ filePlaceholder: "გადაიტანეთ და ჩამოაგდეთ ფაილი აქ ან დააჭირეთ ქვემოთ მოცემულ ღილაკს და აირჩიეთ ფაილი ასატვირთად.",
22842
22956
  confirmDelete: "გსურთ ჩანაწერის წაშლა?",
22843
22957
  keyDuplicationError: "ეს მნიშვნელობა უნდა იყოს უნიკალური.",
22844
22958
  addColumn: "სვეტის დამატება",
@@ -22867,8 +22981,8 @@ var georgianSurveyStrings = {
22867
22981
  signaturePlaceHolder: "შესვლა აქ",
22868
22982
  chooseFileCaption: "ვაუჩერის ნახვა",
22869
22983
  takePhotoCaption: "გადაიღეთ ფოტო",
22870
- cameraPlaceHolder: "დააჭირეთ ქვემოთ მოცემულ ღილაკს, რომ გადაიღოთ ფოტო კამერის გამოყენებით.",
22871
- fileCameraDragAreaPlaceHolder: "გადაიტანეთ და ჩამოაგდეთ ან შეარჩიეთ ფაილი კამერის გამოყენებით ფოტოს ასატვირთად ან გადასაღებად.",
22984
+ photoPlaceholder: "დააჭირეთ ქვემოთ მოცემულ ღილაკს, რომ გადაიღოთ ფოტო კამერის გამოყენებით.",
22985
+ fileOrPhotoPlaceholder: "გადაიტანეთ და ჩამოაგდეთ ან შეარჩიეთ ფაილი კამერის გამოყენებით ფოტოს ასატვირთად ან გადასაღებად.",
22872
22986
  replaceFileCaption: "ფაილის შეცვლა",
22873
22987
  removeFileCaption: "ამ ფაილის წაშლა",
22874
22988
  booleanCheckedLabel: "დიახ",
@@ -22919,7 +23033,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ka"]
22919
23033
  // loadingFile: "Loading..." => "იტვირთება..."
22920
23034
  // chooseFile: "Choose file(s)..." => "აირჩიეთ ფაილი..."
22921
23035
  // noFileChosen: "No file chosen" => "ფაილის არჩევა არ არის"
22922
- // fileDragAreaPlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "გადაიტანეთ და ჩამოაგდეთ ფაილი აქ ან დააჭირეთ ქვემოთ მოცემულ ღილაკს და აირჩიეთ ფაილი ასატვირთად."
23036
+ // filePlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "გადაიტანეთ და ჩამოაგდეთ ფაილი აქ ან დააჭირეთ ქვემოთ მოცემულ ღილაკს და აირჩიეთ ფაილი ასატვირთად."
22923
23037
  // confirmDelete: "Do you want to delete the record?" => "გსურთ ჩანაწერის წაშლა?"
22924
23038
  // keyDuplicationError: "This value should be unique." => "ეს მნიშვნელობა უნდა იყოს უნიკალური."
22925
23039
  // addColumn: "Add Column" => "სვეტის დამატება"
@@ -22963,8 +23077,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ka"]
22963
23077
  // tagboxDoneButtonCaption: "OK" => "კარგი"
22964
23078
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "ყველა არჩევანი რანჟირებულია"
22965
23079
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "გადაიტანეთ და ჩამოაგდეთ არჩევანი აქ, რომ დაასახელოთ ისინი"// takePhotoCaption: "Take Photo" => "გადაიღეთ ფოტო"
22966
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "დააჭირეთ ქვემოთ მოცემულ ღილაკს, რომ გადაიღოთ ფოტო კამერის გამოყენებით."
22967
- // fileCameraDragAreaPlaceHolder: "Drag and drop or select a file to upload or take a photo using the camera." => "გადაიტანეთ და ჩამოაგდეთ ან შეარჩიეთ ფაილი კამერის გამოყენებით ფოტოს ასატვირთად ან გადასაღებად."
23080
+ // photoPlaceholder: "Click the button below to take a photo using the camera." => "დააჭირეთ ქვემოთ მოცემულ ღილაკს, რომ გადაიღოთ ფოტო კამერის გამოყენებით."
23081
+ // fileOrPhotoPlaceholder: "Drag and drop or select a file to upload or take a photo using the camera." => "გადაიტანეთ და ჩამოაგდეთ ან შეარჩიეთ ფაილი კამერის გამოყენებით ფოტოს ასატვირთად ან გადასაღებად."
22968
23082
  // replaceFileCaption: "Replace file" => "ფაილის შეცვლა"
22969
23083
 
22970
23084
 
@@ -23029,7 +23143,7 @@ var germanSurveyStrings = {
23029
23143
  loadingFile: "Wird hochgeladen...",
23030
23144
  chooseFile: "Datei(en) auswählen...",
23031
23145
  noFileChosen: "Keine Datei ausgewählt",
23032
- fileDragAreaPlaceholder: "Legen Sie hier eine Datei ab oder klicken Sie auf die Schaltfläche unten, um die Datei zu laden.",
23146
+ filePlaceholder: "Legen Sie hier eine Datei ab oder klicken Sie auf die Schaltfläche unten, um die Datei zu laden.",
23033
23147
  confirmDelete: "Wollen Sie den Eintrag löschen?",
23034
23148
  keyDuplicationError: "Dieser Wert muss einmalig sein.",
23035
23149
  addColumn: "Spalte hinzufügen",
@@ -23058,8 +23172,8 @@ var germanSurveyStrings = {
23058
23172
  signaturePlaceHolder: "Hier unterschreiben",
23059
23173
  chooseFileCaption: "Datei auswählen",
23060
23174
  takePhotoCaption: "Foto machen",
23061
- cameraPlaceHolder: "Klicken Sie auf die Schaltfläche unten, um ein Foto mit der Kamera aufzunehmen.",
23062
- fileCameraDragAreaPlaceHolder: "Ziehen Sie eine Datei per Drag & Drop oder wählen Sie sie aus, um sie hochzuladen oder ein Foto mit der Kamera aufzunehmen.",
23175
+ photoPlaceholder: "Klicken Sie auf die Schaltfläche unten, um ein Foto mit der Kamera aufzunehmen.",
23176
+ fileOrPhotoPlaceholder: "Ziehen Sie eine Datei per Drag & Drop oder wählen Sie sie aus, um sie hochzuladen oder ein Foto mit der Kamera aufzunehmen.",
23063
23177
  replaceFileCaption: "Datei ersetzen",
23064
23178
  removeFileCaption: "Datei löschen",
23065
23179
  booleanCheckedLabel: "Ja",
@@ -23087,8 +23201,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["de"]
23087
23201
  // tagboxDoneButtonCaption: "OK" => "OKAY"
23088
23202
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Alle Auswahlmöglichkeiten sind in einer Rangfolge angeordnet"
23089
23203
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Ziehen Sie die Auswahl hierher, um sie zu ordnen"// takePhotoCaption: "Take Photo" => "Foto machen"
23090
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Klicken Sie auf die Schaltfläche unten, um ein Foto mit der Kamera aufzunehmen."
23091
- // fileCameraDragAreaPlaceHolder: "Drag and drop or select a file to upload or take a photo using the camera." => "Ziehen Sie eine Datei per Drag & Drop oder wählen Sie sie aus, um sie hochzuladen oder ein Foto mit der Kamera aufzunehmen."
23204
+ // photoPlaceholder: "Click the button below to take a photo using the camera." => "Klicken Sie auf die Schaltfläche unten, um ein Foto mit der Kamera aufzunehmen."
23205
+ // fileOrPhotoPlaceholder: "Drag and drop or select a file to upload or take a photo using the camera." => "Ziehen Sie eine Datei per Drag & Drop oder wählen Sie sie aus, um sie hochzuladen oder ein Foto mit der Kamera aufzunehmen."
23092
23206
  // replaceFileCaption: "Replace file" => "Datei ersetzen"
23093
23207
 
23094
23208
 
@@ -23153,7 +23267,7 @@ var greekSurveyStrings = {
23153
23267
  loadingFile: "Φόρτωση...",
23154
23268
  chooseFile: "Επιλογή αρχείων ...",
23155
23269
  noFileChosen: "Δεν έχει επιλεγεί αρχείο",
23156
- fileDragAreaPlaceholder: "Αποθέστε το αρχείο σας εδώ ή κάντε κλικ στο κουμπί παρακάτω για να φορτώσετε το αρχείο.",
23270
+ filePlaceholder: "Αποθέστε το αρχείο σας εδώ ή κάντε κλικ στο κουμπί παρακάτω για να φορτώσετε το αρχείο.",
23157
23271
  confirmDelete: "Θέλετε να διαγράψετε την εγγραφή;",
23158
23272
  keyDuplicationError: "Αυτή η τιμή πρέπει να είναι μοναδική.",
23159
23273
  addColumn: "Προσθήκη στήλης",
@@ -23182,8 +23296,8 @@ var greekSurveyStrings = {
23182
23296
  signaturePlaceHolder: "Υπογράψτε εδώ",
23183
23297
  chooseFileCaption: "Επιλέξτε αρχείο",
23184
23298
  takePhotoCaption: "Λήψη φωτογραφίας",
23185
- cameraPlaceHolder: "Κάντε κλικ στο παρακάτω κουμπί για να τραβήξετε μια φωτογραφία χρησιμοποιώντας την κάμερα.",
23186
- fileCameraDragAreaPlaceHolder: "Σύρετε και αποθέστε ή επιλέξτε ένα αρχείο για αποστολή ή λήψη φωτογραφίας χρησιμοποιώντας την κάμερα.",
23299
+ photoPlaceholder: "Κάντε κλικ στο παρακάτω κουμπί για να τραβήξετε μια φωτογραφία χρησιμοποιώντας την κάμερα.",
23300
+ fileOrPhotoPlaceholder: "Σύρετε και αποθέστε ή επιλέξτε ένα αρχείο για αποστολή ή λήψη φωτογραφίας χρησιμοποιώντας την κάμερα.",
23187
23301
  replaceFileCaption: "Αντικατάσταση αρχείου",
23188
23302
  removeFileCaption: "Διαγράψτε αυτό το αρχείο",
23189
23303
  booleanCheckedLabel: "Ναι",
@@ -23210,8 +23324,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["gr"]
23210
23324
  // noEntriesReadonlyText: "There are no entries." => "Δεν υπάρχουν καταχωρήσεις."
23211
23325
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Όλες οι επιλογές κατατάσσονται"
23212
23326
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Σύρετε και αποθέστε επιλογές εδώ για να τις κατατάξετε"// takePhotoCaption: "Take Photo" => "Λήψη φωτογραφίας"
23213
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Κάντε κλικ στο παρακάτω κουμπί για να τραβήξετε μια φωτογραφία χρησιμοποιώντας την κάμερα."
23214
- // fileCameraDragAreaPlaceHolder: "Drag and drop or select a file to upload or take a photo using the camera." => "Σύρετε και αποθέστε ή επιλέξτε ένα αρχείο για αποστολή ή λήψη φωτογραφίας χρησιμοποιώντας την κάμερα."
23327
+ // photoPlaceholder: "Click the button below to take a photo using the camera." => "Κάντε κλικ στο παρακάτω κουμπί για να τραβήξετε μια φωτογραφία χρησιμοποιώντας την κάμερα."
23328
+ // fileOrPhotoPlaceholder: "Drag and drop or select a file to upload or take a photo using the camera." => "Σύρετε και αποθέστε ή επιλέξτε ένα αρχείο για αποστολή ή λήψη φωτογραφίας χρησιμοποιώντας την κάμερα."
23215
23329
  // replaceFileCaption: "Replace file" => "Αντικατάσταση αρχείου"
23216
23330
 
23217
23331
 
@@ -23276,7 +23390,7 @@ var hebrewSurveyStrings = {
23276
23390
  loadingFile: "טוען...",
23277
23391
  chooseFile: "לבחור קבצים...",
23278
23392
  noFileChosen: "לא נבחר קובץ",
23279
- fileDragAreaPlaceholder: "גרור ושחרר קובץ לכאן או לחץ על הלחצן למטה ובחר קובץ להעלאה.",
23393
+ filePlaceholder: "גרור ושחרר קובץ לכאן או לחץ על הלחצן למטה ובחר קובץ להעלאה.",
23280
23394
  confirmDelete: "האם אתה רוצה למחוק את הרשומה?",
23281
23395
  keyDuplicationError: "ערך זה צריך להיות ייחודי.",
23282
23396
  addColumn: "הוסף עמודה",
@@ -23305,8 +23419,8 @@ var hebrewSurveyStrings = {
23305
23419
  signaturePlaceHolder: "חתום כאן",
23306
23420
  chooseFileCaption: "בחר קובץ",
23307
23421
  takePhotoCaption: "צלם תמונה",
23308
- cameraPlaceHolder: "לחץ על הלחצן למטה כדי לצלם תמונה באמצעות המצלמה.",
23309
- fileCameraDragAreaPlaceHolder: "גרור ושחרר או בחר קובץ כדי להעלות או לצלם תמונה באמצעות המצלמה.",
23422
+ photoPlaceholder: "לחץ על הלחצן למטה כדי לצלם תמונה באמצעות המצלמה.",
23423
+ fileOrPhotoPlaceholder: "גרור ושחרר או בחר קובץ כדי להעלות או לצלם תמונה באמצעות המצלמה.",
23310
23424
  replaceFileCaption: "החלפת קובץ",
23311
23425
  removeFileCaption: "הסר קובץ זה",
23312
23426
  booleanCheckedLabel: "כן",
@@ -23334,7 +23448,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["he"]
23334
23448
  // ratingOptionsCaption: "Select..." => "בחר..."
23335
23449
  // minError: "The value should not be less than {0}" => "הערך לא צריך להיות קטן מ {0}"
23336
23450
  // maxError: "The value should not be greater than {0}" => "הערך לא צריך להיות גדול מ- {0}"
23337
- // fileDragAreaPlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "גרור ושחרר קובץ לכאן או לחץ על הלחצן למטה ובחר קובץ להעלאה."
23451
+ // filePlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "גרור ושחרר קובץ לכאן או לחץ על הלחצן למטה ובחר קובץ להעלאה."
23338
23452
  // emptyRowsText: "There are no rows." => "אין שורות."
23339
23453
  // multipletext_itemname: "text" => "טקסט"
23340
23454
  // signaturePlaceHolder: "Sign here" => "חתום כאן"
@@ -23348,8 +23462,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["he"]
23348
23462
  // tagboxDoneButtonCaption: "OK" => "אוקיי"
23349
23463
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "כל האפשרויות מדורגות"
23350
23464
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "גרור ושחרר אפשרויות לכאן כדי לדרג אותן"// takePhotoCaption: "Take Photo" => "צלם תמונה"
23351
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "לחץ על הלחצן למטה כדי לצלם תמונה באמצעות המצלמה."
23352
- // fileCameraDragAreaPlaceHolder: "Drag and drop or select a file to upload or take a photo using the camera." => "גרור ושחרר או בחר קובץ כדי להעלות או לצלם תמונה באמצעות המצלמה."
23465
+ // photoPlaceholder: "Click the button below to take a photo using the camera." => "לחץ על הלחצן למטה כדי לצלם תמונה באמצעות המצלמה."
23466
+ // fileOrPhotoPlaceholder: "Drag and drop or select a file to upload or take a photo using the camera." => "גרור ושחרר או בחר קובץ כדי להעלות או לצלם תמונה באמצעות המצלמה."
23353
23467
  // replaceFileCaption: "Replace file" => "החלפת קובץ"
23354
23468
 
23355
23469
 
@@ -23414,7 +23528,7 @@ var hindiStrings = {
23414
23528
  loadingFile: "लोडिंग",
23415
23529
  chooseFile: "फ़ाइल चुनें",
23416
23530
  noFileChosen: "कोई फाइल नहीं चुनी गई",
23417
- fileDragAreaPlaceholder: "यहां एक फ़ाइल खींचें और छोड़ें या नीचे दिए गए बटन पर क्लिक करें और अपलोड करने के लिए एक फ़ाइल चुनें।",
23531
+ filePlaceholder: "यहां एक फ़ाइल खींचें और छोड़ें या नीचे दिए गए बटन पर क्लिक करें और अपलोड करने के लिए एक फ़ाइल चुनें।",
23418
23532
  confirmDelete: "क्या आप रिकॉर्ड हटाना चाहते हैं",
23419
23533
  keyDuplicationError: "यह मान अनोखा होना चाहिए",
23420
23534
  addColumn: "कॉलम जोड़ें",
@@ -23443,8 +23557,8 @@ var hindiStrings = {
23443
23557
  signaturePlaceHolder: "यहां साइन करें",
23444
23558
  chooseFileCaption: "फ़ाइल चुनें",
23445
23559
  takePhotoCaption: "फोटो ले लो",
23446
- cameraPlaceHolder: "कैमरे का उपयोग करके फोटो लेने के लिए नीचे दिए गए बटन पर क्लिक करें।",
23447
- fileCameraDragAreaPlaceHolder: "कैमरे का उपयोग करके फ़ोटो अपलोड करने या फ़ोटो लेने के लिए किसी फ़ाइल को खींचें और छोड़ें या चुनें.",
23560
+ photoPlaceholder: "कैमरे का उपयोग करके फोटो लेने के लिए नीचे दिए गए बटन पर क्लिक करें।",
23561
+ fileOrPhotoPlaceholder: "कैमरे का उपयोग करके फ़ोटो अपलोड करने या फ़ोटो लेने के लिए किसी फ़ाइल को खींचें और छोड़ें या चुनें.",
23448
23562
  replaceFileCaption: "फ़ाइल बदलें",
23449
23563
  removeFileCaption: "इस फाइल को निकालें",
23450
23564
  booleanCheckedLabel: "हाँ",
@@ -23473,7 +23587,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["hi"]
23473
23587
  // ratingOptionsCaption: "Select..." => "चुनना।।।"
23474
23588
  // minError: "The value should not be less than {0}" => "मान {0} से कम नहीं होना चाहिए"
23475
23589
  // maxError: "The value should not be greater than {0}" => "मान {0} से अधिक नहीं होना चाहिए"
23476
- // fileDragAreaPlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "यहां एक फ़ाइल खींचें और छोड़ें या नीचे दिए गए बटन पर क्लिक करें और अपलोड करने के लिए एक फ़ाइल चुनें।"
23590
+ // filePlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "यहां एक फ़ाइल खींचें और छोड़ें या नीचे दिए गए बटन पर क्लिक करें और अपलोड करने के लिए एक फ़ाइल चुनें।"
23477
23591
  // emptyRowsText: "There are no rows." => "कोई पंक्तियाँ नहीं हैं."
23478
23592
  // multipletext_itemname: "text" => "टेक्स्ट"
23479
23593
  // signaturePlaceHolder: "Sign here" => "यहां साइन करें"
@@ -23487,8 +23601,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["hi"]
23487
23601
  // tagboxDoneButtonCaption: "OK" => "ठीक है"
23488
23602
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "सभी विकल्पों को रैंक किया गया है"
23489
23603
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "विकल्पों को रैंक करने के लिए उन्हें यहां खींचें और छोड़ दें"// takePhotoCaption: "Take Photo" => "फोटो ले लो"
23490
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "कैमरे का उपयोग करके फोटो लेने के लिए नीचे दिए गए बटन पर क्लिक करें।"
23491
- // fileCameraDragAreaPlaceHolder: "Drag and drop or select a file to upload or take a photo using the camera." => "कैमरे का उपयोग करके फ़ोटो अपलोड करने या फ़ोटो लेने के लिए किसी फ़ाइल को खींचें और छोड़ें या चुनें."
23604
+ // photoPlaceholder: "Click the button below to take a photo using the camera." => "कैमरे का उपयोग करके फोटो लेने के लिए नीचे दिए गए बटन पर क्लिक करें।"
23605
+ // fileOrPhotoPlaceholder: "Drag and drop or select a file to upload or take a photo using the camera." => "कैमरे का उपयोग करके फ़ोटो अपलोड करने या फ़ोटो लेने के लिए किसी फ़ाइल को खींचें और छोड़ें या चुनें."
23492
23606
  // replaceFileCaption: "Replace file" => "फ़ाइल बदलें"
23493
23607
 
23494
23608
 
@@ -23553,7 +23667,7 @@ var hungarianSurveyStrings = {
23553
23667
  loadingFile: "Betöltés...",
23554
23668
  chooseFile: "Fájlok kiválasztása ...",
23555
23669
  noFileChosen: "Nincs kiválasztva fájl",
23556
- fileDragAreaPlaceholder: "Dobjon ide egy fájlt, vagy kattintson az alábbi gombra a fájl betöltéséhez.",
23670
+ filePlaceholder: "Dobjon ide egy fájlt, vagy kattintson az alábbi gombra a fájl betöltéséhez.",
23557
23671
  confirmDelete: "Törli ezt a rekordot?",
23558
23672
  keyDuplicationError: "Az értéknek egyedinek kell lennie.",
23559
23673
  addColumn: "Oszlop hozzáadása",
@@ -23582,8 +23696,8 @@ var hungarianSurveyStrings = {
23582
23696
  signaturePlaceHolder: "Írja alá itt",
23583
23697
  chooseFileCaption: "Válassz fájlt",
23584
23698
  takePhotoCaption: "Fotó készítése",
23585
- cameraPlaceHolder: "Kattintson az alábbi gombra, hogy fényképet készítsen a fényképezőgéppel.",
23586
- fileCameraDragAreaPlaceHolder: "Húzzon át vagy válasszon ki egy fájlt, amelyet fel szeretne tölteni vagy fényképet szeretne készíteni a kamerával.",
23699
+ photoPlaceholder: "Kattintson az alábbi gombra, hogy fényképet készítsen a fényképezőgéppel.",
23700
+ fileOrPhotoPlaceholder: "Húzzon át vagy válasszon ki egy fájlt, amelyet fel szeretne tölteni vagy fényképet szeretne készíteni a kamerával.",
23587
23701
  replaceFileCaption: "Fájl cseréje",
23588
23702
  removeFileCaption: "Távolítsa el ezt a fájlt",
23589
23703
  booleanCheckedLabel: "Igen",
@@ -23624,8 +23738,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["hu"]
23624
23738
  // tagboxDoneButtonCaption: "OK" => "OKÉ"
23625
23739
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Minden választási lehetőség rangsorolva van"
23626
23740
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Húzza ide a választási lehetőségeket a rangsoroláshoz"// takePhotoCaption: "Take Photo" => "Fotó készítése"
23627
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Kattintson az alábbi gombra, hogy fényképet készítsen a fényképezőgéppel."
23628
- // fileCameraDragAreaPlaceHolder: "Drag and drop or select a file to upload or take a photo using the camera." => "Húzzon át vagy válasszon ki egy fájlt, amelyet fel szeretne tölteni vagy fényképet szeretne készíteni a kamerával."
23741
+ // photoPlaceholder: "Click the button below to take a photo using the camera." => "Kattintson az alábbi gombra, hogy fényképet készítsen a fényképezőgéppel."
23742
+ // fileOrPhotoPlaceholder: "Drag and drop or select a file to upload or take a photo using the camera." => "Húzzon át vagy válasszon ki egy fájlt, amelyet fel szeretne tölteni vagy fényképet szeretne készíteni a kamerával."
23629
23743
  // replaceFileCaption: "Replace file" => "Fájl cseréje"
23630
23744
 
23631
23745
 
@@ -23690,7 +23804,7 @@ var icelandicSurveyStrings = {
23690
23804
  loadingFile: "Hleður ...",
23691
23805
  chooseFile: "Veldu skrár ...",
23692
23806
  noFileChosen: "Engin skrá valin",
23693
- fileDragAreaPlaceholder: "Dragðu og slepptu skrá hér eða smelltu á hnappinn hér að neðan og veldu skrá til að hlaða upp.",
23807
+ filePlaceholder: "Dragðu og slepptu skrá hér eða smelltu á hnappinn hér að neðan og veldu skrá til að hlaða upp.",
23694
23808
  confirmDelete: "Viltu eyða skránni?",
23695
23809
  keyDuplicationError: "Þetta gildi ætti að vera einstakt.",
23696
23810
  addColumn: "Bæta við dálki",
@@ -23719,8 +23833,8 @@ var icelandicSurveyStrings = {
23719
23833
  signaturePlaceHolder: "Kvittađu hér",
23720
23834
  chooseFileCaption: "Veldu skrá",
23721
23835
  takePhotoCaption: "Taka mynd",
23722
- cameraPlaceHolder: "Smelltu á hnappinn hér að neðan til að taka mynd með myndavélinni.",
23723
- fileCameraDragAreaPlaceHolder: "Dragðu og slepptu eða veldu skrá til að hlaða upp eða taka mynd með myndavélinni.",
23836
+ photoPlaceholder: "Smelltu á hnappinn hér að neðan til að taka mynd með myndavélinni.",
23837
+ fileOrPhotoPlaceholder: "Dragðu og slepptu eða veldu skrá til að hlaða upp eða taka mynd með myndavélinni.",
23724
23838
  replaceFileCaption: "Skipta út skrá",
23725
23839
  removeFileCaption: "Fjarlægðu þessa skrá",
23726
23840
  booleanCheckedLabel: "Já",
@@ -23748,7 +23862,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["is"]
23748
23862
  // ratingOptionsCaption: "Select..." => "Velja..."
23749
23863
  // minError: "The value should not be less than {0}" => "Gildið má ekki vera lægra en {0}"
23750
23864
  // maxError: "The value should not be greater than {0}" => "Gildið má ekki vera hærra en {0}"
23751
- // fileDragAreaPlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "Dragðu og slepptu skrá hér eða smelltu á hnappinn hér að neðan og veldu skrá til að hlaða upp."
23865
+ // filePlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "Dragðu og slepptu skrá hér eða smelltu á hnappinn hér að neðan og veldu skrá til að hlaða upp."
23752
23866
  // emptyRowsText: "There are no rows." => "Það eru engar raðir."
23753
23867
  // multipletext_itemname: "text" => "Texti"
23754
23868
  // signaturePlaceHolder: "Sign here" => "Kvittađu hér"
@@ -23762,8 +23876,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["is"]
23762
23876
  // tagboxDoneButtonCaption: "OK" => "ÓKEI"
23763
23877
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Öllum valkostum er raðað"
23764
23878
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Dragðu og slepptu valkostum hér til að raða þeim"// takePhotoCaption: "Take Photo" => "Taka mynd"
23765
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Smelltu á hnappinn hér að neðan til að taka mynd með myndavélinni."
23766
- // fileCameraDragAreaPlaceHolder: "Drag and drop or select a file to upload or take a photo using the camera." => "Dragðu og slepptu eða veldu skrá til að hlaða upp eða taka mynd með myndavélinni."
23879
+ // photoPlaceholder: "Click the button below to take a photo using the camera." => "Smelltu á hnappinn hér að neðan til að taka mynd með myndavélinni."
23880
+ // fileOrPhotoPlaceholder: "Drag and drop or select a file to upload or take a photo using the camera." => "Dragðu og slepptu eða veldu skrá til að hlaða upp eða taka mynd með myndavélinni."
23767
23881
  // replaceFileCaption: "Replace file" => "Skipta út skrá"
23768
23882
 
23769
23883
 
@@ -23828,7 +23942,7 @@ var indonesianStrings = {
23828
23942
  loadingFile: "Memuat...",
23829
23943
  chooseFile: "Pilih berkas...",
23830
23944
  noFileChosen: "Tidak ada file yang dipilih",
23831
- fileDragAreaPlaceholder: "Seret dan jatuhkan file di sini atau klik tombol di bawah ini dan pilih file yang akan diunggah.",
23945
+ filePlaceholder: "Seret dan jatuhkan file di sini atau klik tombol di bawah ini dan pilih file yang akan diunggah.",
23832
23946
  confirmDelete: "Apakah Anda ingin menghapus catatan?",
23833
23947
  keyDuplicationError: "Nilai harus unik.",
23834
23948
  addColumn: "Tambah kolom",
@@ -23857,8 +23971,8 @@ var indonesianStrings = {
23857
23971
  signaturePlaceHolder: "Tanda tangan di sini",
23858
23972
  chooseFileCaption: "Pilih File",
23859
23973
  takePhotoCaption: "Ambil Foto",
23860
- cameraPlaceHolder: "Klik tombol di bawah ini untuk mengambil foto menggunakan kamera.",
23861
- fileCameraDragAreaPlaceHolder: "Seret dan lepas atau pilih file untuk diunggah atau mengambil foto menggunakan kamera.",
23974
+ photoPlaceholder: "Klik tombol di bawah ini untuk mengambil foto menggunakan kamera.",
23975
+ fileOrPhotoPlaceholder: "Seret dan lepas atau pilih file untuk diunggah atau mengambil foto menggunakan kamera.",
23862
23976
  replaceFileCaption: "Ganti file",
23863
23977
  removeFileCaption: "Hapus berkas ini",
23864
23978
  booleanCheckedLabel: "Iya",
@@ -23886,7 +24000,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["id"]
23886
24000
  // ratingOptionsCaption: "Select..." => "Pilih..."
23887
24001
  // minError: "The value should not be less than {0}" => "Nilainya tidak boleh kurang dari {0}"
23888
24002
  // maxError: "The value should not be greater than {0}" => "Nilai tidak boleh lebih besar dari {0}"
23889
- // fileDragAreaPlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "Seret dan jatuhkan file di sini atau klik tombol di bawah ini dan pilih file yang akan diunggah."
24003
+ // filePlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "Seret dan jatuhkan file di sini atau klik tombol di bawah ini dan pilih file yang akan diunggah."
23890
24004
  // emptyRowsText: "There are no rows." => "Tidak ada baris."
23891
24005
  // multipletext_itemname: "text" => "Teks"
23892
24006
  // signaturePlaceHolder: "Sign here" => "Tanda tangan di sini"
@@ -23900,8 +24014,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["id"]
23900
24014
  // tagboxDoneButtonCaption: "OK" => "OKE"
23901
24015
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Semua pilihan diberi peringkat"
23902
24016
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Seret dan lepas pilihan di sini untuk memberi peringkat"// takePhotoCaption: "Take Photo" => "Ambil Foto"
23903
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Klik tombol di bawah ini untuk mengambil foto menggunakan kamera."
23904
- // fileCameraDragAreaPlaceHolder: "Drag and drop or select a file to upload or take a photo using the camera." => "Seret dan lepas atau pilih file untuk diunggah atau mengambil foto menggunakan kamera."
24017
+ // photoPlaceholder: "Click the button below to take a photo using the camera." => "Klik tombol di bawah ini untuk mengambil foto menggunakan kamera."
24018
+ // fileOrPhotoPlaceholder: "Drag and drop or select a file to upload or take a photo using the camera." => "Seret dan lepas atau pilih file untuk diunggah atau mengambil foto menggunakan kamera."
23905
24019
  // replaceFileCaption: "Replace file" => "Ganti file"
23906
24020
 
23907
24021
 
@@ -23966,7 +24080,7 @@ var italianSurveyStrings = {
23966
24080
  loadingFile: "Caricamento...",
23967
24081
  chooseFile: "Selezionare file(s)...",
23968
24082
  noFileChosen: "Nessun file selezionato",
23969
- fileDragAreaPlaceholder: "Trascina un file qui o fai clic sul pulsante in basso per caricare il file.",
24083
+ filePlaceholder: "Trascina un file qui o fai clic sul pulsante in basso per caricare il file.",
23970
24084
  confirmDelete: "Sei sicuro di voler elminare il record?",
23971
24085
  keyDuplicationError: "Questo valore deve essere univoco.",
23972
24086
  addColumn: "Aggiungi colonna",
@@ -23995,8 +24109,8 @@ var italianSurveyStrings = {
23995
24109
  signaturePlaceHolder: "Firmare qui",
23996
24110
  chooseFileCaption: "Scegliere il file",
23997
24111
  takePhotoCaption: "Scatta foto",
23998
- cameraPlaceHolder: "Fai clic sul pulsante qui sotto per scattare una foto utilizzando la fotocamera.",
23999
- fileCameraDragAreaPlaceHolder: "Trascina e rilascia o seleziona un file da caricare o scattare una foto utilizzando la fotocamera.",
24112
+ photoPlaceholder: "Fai clic sul pulsante qui sotto per scattare una foto utilizzando la fotocamera.",
24113
+ fileOrPhotoPlaceholder: "Trascina e rilascia o seleziona un file da caricare o scattare una foto utilizzando la fotocamera.",
24000
24114
  replaceFileCaption: "Sostituisci file",
24001
24115
  removeFileCaption: "Rimuovere questo file",
24002
24116
  booleanCheckedLabel: "Sì",
@@ -24026,8 +24140,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["it"]
24026
24140
  // tagboxDoneButtonCaption: "OK" => "OK"
24027
24141
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Tutte le scelte sono classificate"
24028
24142
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Trascina e rilascia le scelte qui per classificarle"// takePhotoCaption: "Take Photo" => "Scatta foto"
24029
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Fai clic sul pulsante qui sotto per scattare una foto utilizzando la fotocamera."
24030
- // fileCameraDragAreaPlaceHolder: "Drag and drop or select a file to upload or take a photo using the camera." => "Trascina e rilascia o seleziona un file da caricare o scattare una foto utilizzando la fotocamera."
24143
+ // photoPlaceholder: "Click the button below to take a photo using the camera." => "Fai clic sul pulsante qui sotto per scattare una foto utilizzando la fotocamera."
24144
+ // fileOrPhotoPlaceholder: "Drag and drop or select a file to upload or take a photo using the camera." => "Trascina e rilascia o seleziona un file da caricare o scattare una foto utilizzando la fotocamera."
24031
24145
  // replaceFileCaption: "Replace file" => "Sostituisci file"
24032
24146
 
24033
24147
 
@@ -24092,7 +24206,7 @@ var japaneseSurveyStrings = {
24092
24206
  loadingFile: "読み込み中",
24093
24207
  chooseFile: "ファイルを選択",
24094
24208
  noFileChosen: "選択されたファイルはありません",
24095
- fileDragAreaPlaceholder: "ここにファイルをドラッグ&ドロップするか、下のボタンをクリックしてアップロードするファイルを選択してください。",
24209
+ filePlaceholder: "ここにファイルをドラッグ&ドロップするか、下のボタンをクリックしてアップロードするファイルを選択してください。",
24096
24210
  confirmDelete: "レコードを削除しますか?",
24097
24211
  keyDuplicationError: "この値は一意でなければなりません。",
24098
24212
  addColumn: "列の追加",
@@ -24121,8 +24235,8 @@ var japaneseSurveyStrings = {
24121
24235
  signaturePlaceHolder: "ここに署名",
24122
24236
  chooseFileCaption: "ファイルを選択",
24123
24237
  takePhotoCaption: "写真を撮る",
24124
- cameraPlaceHolder: "下のボタンをクリックして、カメラを使用して写真を撮ります。",
24125
- fileCameraDragAreaPlaceHolder: "アップロードするファイルをドラッグアンドドロップまたは選択するか、カメラを使用して写真を撮ります。",
24238
+ photoPlaceholder: "下のボタンをクリックして、カメラを使用して写真を撮ります。",
24239
+ fileOrPhotoPlaceholder: "アップロードするファイルをドラッグアンドドロップまたは選択するか、カメラを使用して写真を撮ります。",
24126
24240
  replaceFileCaption: "ファイルの置換",
24127
24241
  removeFileCaption: "このファイルを削除",
24128
24242
  booleanCheckedLabel: "噫",
@@ -24150,7 +24264,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ja"]
24150
24264
  // ratingOptionsCaption: "Select..." => "選ぶ。。。"
24151
24265
  // minError: "The value should not be less than {0}" => "値は {0} 値より小さくすることはできません"
24152
24266
  // maxError: "The value should not be greater than {0}" => "値は {0} を超えてはなりません。"
24153
- // fileDragAreaPlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "ここにファイルをドラッグ&ドロップするか、下のボタンをクリックしてアップロードするファイルを選択してください。"
24267
+ // filePlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "ここにファイルをドラッグ&ドロップするか、下のボタンをクリックしてアップロードするファイルを選択してください。"
24154
24268
  // emptyRowsText: "There are no rows." => "行はありません。"
24155
24269
  // multipletext_itemname: "text" => "テキスト"
24156
24270
  // signaturePlaceHolder: "Sign here" => "ここに署名"
@@ -24164,8 +24278,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ja"]
24164
24278
  // tagboxDoneButtonCaption: "OK" => "わかりました"
24165
24279
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "すべての選択肢がランク付けされます"
24166
24280
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "ここに選択肢をドラッグアンドドロップしてランク付けします"// takePhotoCaption: "Take Photo" => "写真を撮る"
24167
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "下のボタンをクリックして、カメラを使用して写真を撮ります。"
24168
- // fileCameraDragAreaPlaceHolder: "Drag and drop or select a file to upload or take a photo using the camera." => "アップロードするファイルをドラッグアンドドロップまたは選択するか、カメラを使用して写真を撮ります。"
24281
+ // photoPlaceholder: "Click the button below to take a photo using the camera." => "下のボタンをクリックして、カメラを使用して写真を撮ります。"
24282
+ // fileOrPhotoPlaceholder: "Drag and drop or select a file to upload or take a photo using the camera." => "アップロードするファイルをドラッグアンドドロップまたは選択するか、カメラを使用して写真を撮ります。"
24169
24283
  // replaceFileCaption: "Replace file" => "ファイルの置換"
24170
24284
 
24171
24285
 
@@ -24230,7 +24344,7 @@ var kazakhStrings = {
24230
24344
  loadingFile: "Жүктеу...",
24231
24345
  chooseFile: "Файлдарды таңдаңыз...",
24232
24346
  noFileChosen: "Файл таңдалынбады",
24233
- fileDragAreaPlaceholder: "Файлды осы жерге апарып тастаңыз немесе төмендегі түймені басыңыз және кері жүктеу үшін файлды таңдаңыз.",
24347
+ filePlaceholder: "Файлды осы жерге апарып тастаңыз немесе төмендегі түймені басыңыз және кері жүктеу үшін файлды таңдаңыз.",
24234
24348
  confirmDelete: "Сіз жазбаны жоятыныңызға сенімдісіз бе?",
24235
24349
  keyDuplicationError: "Бұл мән бірегей болу керек.",
24236
24350
  addColumn: "Бағана қосу",
@@ -24259,8 +24373,8 @@ var kazakhStrings = {
24259
24373
  signaturePlaceHolder: "Осында кіру",
24260
24374
  chooseFileCaption: "Файл таңдаңыз",
24261
24375
  takePhotoCaption: "Фотосуретке түсу",
24262
- cameraPlaceHolder: "Камераны пайдаланып суретке түсу үшін төмендегі түймені басыңыз.",
24263
- fileCameraDragAreaPlaceHolder: "Фотоаппаратты пайдаланып кері жүктеу немесе суретке түсіру үшін файлды апарып тастаыңыз немесе таңдаңыз.",
24376
+ photoPlaceholder: "Камераны пайдаланып суретке түсу үшін төмендегі түймені басыңыз.",
24377
+ fileOrPhotoPlaceholder: "Фотоаппаратты пайдаланып кері жүктеу немесе суретке түсіру үшін файлды апарып тастаыңыз немесе таңдаңыз.",
24264
24378
  replaceFileCaption: "Файлды ауыстыру",
24265
24379
  removeFileCaption: "Файлды жойыңыз",
24266
24380
  booleanCheckedLabel: "Иә",
@@ -24288,7 +24402,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["kk"]
24288
24402
  // ratingOptionsCaption: "Select..." => "Таңдау..."
24289
24403
  // minError: "The value should not be less than {0}" => "Мәні {0} кем болмауы тиіс"
24290
24404
  // maxError: "The value should not be greater than {0}" => "Мән {0} артық болмауы тиіс"
24291
- // fileDragAreaPlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "Файлды осы жерге апарып тастаңыз немесе төмендегі түймені басыңыз және кері жүктеу үшін файлды таңдаңыз."
24405
+ // filePlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "Файлды осы жерге апарып тастаңыз немесе төмендегі түймені басыңыз және кері жүктеу үшін файлды таңдаңыз."
24292
24406
  // emptyRowsText: "There are no rows." => "Қатарлар жоқ."
24293
24407
  // multipletext_itemname: "text" => "мәтін"
24294
24408
  // signaturePlaceHolder: "Sign here" => "Осында кіру"
@@ -24302,8 +24416,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["kk"]
24302
24416
  // tagboxDoneButtonCaption: "OK" => "ЖАҚСЫ"
24303
24417
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Барлық таңдаулар ранжирленген"
24304
24418
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Таңдауды рангтеу үшін осында апарып тастау"// takePhotoCaption: "Take Photo" => "Фотосуретке түсу"
24305
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Камераны пайдаланып суретке түсу үшін төмендегі түймені басыңыз."
24306
- // fileCameraDragAreaPlaceHolder: "Drag and drop or select a file to upload or take a photo using the camera." => "Фотоаппаратты пайдаланып кері жүктеу немесе суретке түсіру үшін файлды апарып тастаыңыз немесе таңдаңыз."
24419
+ // photoPlaceholder: "Click the button below to take a photo using the camera." => "Камераны пайдаланып суретке түсу үшін төмендегі түймені басыңыз."
24420
+ // fileOrPhotoPlaceholder: "Drag and drop or select a file to upload or take a photo using the camera." => "Фотоаппаратты пайдаланып кері жүктеу немесе суретке түсіру үшін файлды апарып тастаыңыз немесе таңдаңыз."
24307
24421
  // replaceFileCaption: "Replace file" => "Файлды ауыстыру"
24308
24422
 
24309
24423
 
@@ -24368,7 +24482,7 @@ var koreanStrings = {
24368
24482
  loadingFile: "로드 중...",
24369
24483
  chooseFile: "파일 선택...",
24370
24484
  noFileChosen: "선택된 파일이 없습니다.",
24371
- fileDragAreaPlaceholder: "파일을 여기에 놓거나 아래 버튼을 클릭하여 파일을 불러오세요.",
24485
+ filePlaceholder: "파일을 여기에 놓거나 아래 버튼을 클릭하여 파일을 불러오세요.",
24372
24486
  confirmDelete: "기록을 삭제하시겠습니까?",
24373
24487
  keyDuplicationError: " 이 값은 고유해야합니다.",
24374
24488
  addColumn: "열 추가",
@@ -24397,8 +24511,8 @@ var koreanStrings = {
24397
24511
  signaturePlaceHolder: "서명하세요.",
24398
24512
  chooseFileCaption: "파일 선택",
24399
24513
  takePhotoCaption: "사진 찍기",
24400
- cameraPlaceHolder: "아래 버튼을 클릭하여 카메라로 사진을 찍습니다.",
24401
- fileCameraDragAreaPlaceHolder: "업로드할 파일을 드래그 앤 드롭하거나 선택하거나 카메라를 사용하여 사진을 찍습니다.",
24514
+ photoPlaceholder: "아래 버튼을 클릭하여 카메라로 사진을 찍습니다.",
24515
+ fileOrPhotoPlaceholder: "업로드할 파일을 드래그 앤 드롭하거나 선택하거나 카메라를 사용하여 사진을 찍습니다.",
24402
24516
  replaceFileCaption: "파일 바꾸기",
24403
24517
  removeFileCaption: "파일 제거",
24404
24518
  booleanCheckedLabel: "예",
@@ -24427,8 +24541,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ko"]
24427
24541
  // tagboxDoneButtonCaption: "OK" => "그래"
24428
24542
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "모든 선택 항목이 순위가 매겨집니다."
24429
24543
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "여기에 선택 항목을 끌어다 놓아 순위를 매깁니다."// takePhotoCaption: "Take Photo" => "사진 찍기"
24430
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "아래 버튼을 클릭하여 카메라로 사진을 찍습니다."
24431
- // fileCameraDragAreaPlaceHolder: "Drag and drop or select a file to upload or take a photo using the camera." => "업로드할 파일을 드래그 앤 드롭하거나 선택하거나 카메라를 사용하여 사진을 찍습니다."
24544
+ // photoPlaceholder: "Click the button below to take a photo using the camera." => "아래 버튼을 클릭하여 카메라로 사진을 찍습니다."
24545
+ // fileOrPhotoPlaceholder: "Drag and drop or select a file to upload or take a photo using the camera." => "업로드할 파일을 드래그 앤 드롭하거나 선택하거나 카메라를 사용하여 사진을 찍습니다."
24432
24546
  // replaceFileCaption: "Replace file" => "파일 바꾸기"
24433
24547
 
24434
24548
 
@@ -24493,7 +24607,7 @@ var latvianSurveyStrings = {
24493
24607
  loadingFile: "Notiek ielāde ...",
24494
24608
  chooseFile: "Izvēlieties failus ...",
24495
24609
  noFileChosen: "Nav izvēlēts neviens fails",
24496
- fileDragAreaPlaceholder: "Lai pievienotu, ievelciet failu šeit vai arī klikšķiniet uz zemāk redzamās pogas",
24610
+ filePlaceholder: "Lai pievienotu, ievelciet failu šeit vai arī klikšķiniet uz zemāk redzamās pogas",
24497
24611
  confirmDelete: "Vai vēlaties izdzēst ierakstu?",
24498
24612
  keyDuplicationError: "Šai vērtībai jābūt unikālai.",
24499
24613
  addColumn: "Pievienot kolonnu",
@@ -24522,8 +24636,8 @@ var latvianSurveyStrings = {
24522
24636
  signaturePlaceHolder: "Parakstieties šeit",
24523
24637
  chooseFileCaption: "Izvēlēties failu",
24524
24638
  takePhotoCaption: "Uzņemt fotoattēlu",
24525
- cameraPlaceHolder: "Noklikšķiniet uz pogas zemāk, lai uzņemtu fotoattēlu, izmantojot kameru.",
24526
- fileCameraDragAreaPlaceHolder: "Velciet un nometiet vai atlasiet failu, ko augšupielādēt vai uzņemt fotoattēlu, izmantojot kameru.",
24639
+ photoPlaceholder: "Noklikšķiniet uz pogas zemāk, lai uzņemtu fotoattēlu, izmantojot kameru.",
24640
+ fileOrPhotoPlaceholder: "Velciet un nometiet vai atlasiet failu, ko augšupielādēt vai uzņemt fotoattēlu, izmantojot kameru.",
24527
24641
  replaceFileCaption: "Aizstāt failu",
24528
24642
  removeFileCaption: "Noņemiet šo failu",
24529
24643
  booleanCheckedLabel: "Jā",
@@ -24553,8 +24667,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["lv"]
24553
24667
  // tagboxDoneButtonCaption: "OK" => "LABI"
24554
24668
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Visas izvēles ir sarindotas"
24555
24669
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Velciet un nometiet izvēles iespējas šeit, lai tās sarindotu"// takePhotoCaption: "Take Photo" => "Uzņemt fotoattēlu"
24556
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Noklikšķiniet uz pogas zemāk, lai uzņemtu fotoattēlu, izmantojot kameru."
24557
- // fileCameraDragAreaPlaceHolder: "Drag and drop or select a file to upload or take a photo using the camera." => "Velciet un nometiet vai atlasiet failu, ko augšupielādēt vai uzņemt fotoattēlu, izmantojot kameru."
24670
+ // photoPlaceholder: "Click the button below to take a photo using the camera." => "Noklikšķiniet uz pogas zemāk, lai uzņemtu fotoattēlu, izmantojot kameru."
24671
+ // fileOrPhotoPlaceholder: "Drag and drop or select a file to upload or take a photo using the camera." => "Velciet un nometiet vai atlasiet failu, ko augšupielādēt vai uzņemt fotoattēlu, izmantojot kameru."
24558
24672
  // replaceFileCaption: "Replace file" => "Aizstāt failu"
24559
24673
 
24560
24674
 
@@ -24619,7 +24733,7 @@ var lithuaniaSurveyStrings = {
24619
24733
  loadingFile: "Prašome palaukti...",
24620
24734
  chooseFile: "Pasirinkti failą(us)...",
24621
24735
  noFileChosen: "Nepasirinktas joks failas",
24622
- fileDragAreaPlaceholder: "Nuvilkite failą čia arba spustelėkite žemiau esantį mygtuką ir pasirinkite failą, kurį norite įkelti.",
24736
+ filePlaceholder: "Nuvilkite failą čia arba spustelėkite žemiau esantį mygtuką ir pasirinkite failą, kurį norite įkelti.",
24623
24737
  confirmDelete: "Ar norite ištrinti įrašą?",
24624
24738
  keyDuplicationError: "Ši reikšmė turėtų būti unikali.",
24625
24739
  addColumn: "Pridėti stulpelį",
@@ -24648,8 +24762,8 @@ var lithuaniaSurveyStrings = {
24648
24762
  signaturePlaceHolder: "Pasirašykite čia",
24649
24763
  chooseFileCaption: "Pasirinkti failą",
24650
24764
  takePhotoCaption: "Fotografuoti",
24651
- cameraPlaceHolder: "Spustelėkite žemiau esantį mygtuką, kad nufotografuotumėte fotoaparatu.",
24652
- fileCameraDragAreaPlaceHolder: "Nuvilkite arba pasirinkite failą, kurį norite įkelti arba nufotografuoti naudodami fotoaparatą.",
24765
+ photoPlaceholder: "Spustelėkite žemiau esantį mygtuką, kad nufotografuotumėte fotoaparatu.",
24766
+ fileOrPhotoPlaceholder: "Nuvilkite arba pasirinkite failą, kurį norite įkelti arba nufotografuoti naudodami fotoaparatą.",
24653
24767
  replaceFileCaption: "Pakeiskite failą",
24654
24768
  removeFileCaption: "Ištrinti šį failą",
24655
24769
  booleanCheckedLabel: "Taip",
@@ -24677,7 +24791,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["lt"]
24677
24791
  // ratingOptionsCaption: "Select..." => "Žymėti..."
24678
24792
  // minError: "The value should not be less than {0}" => "Vertė neturėtų būti mažesnė nei {0}"
24679
24793
  // maxError: "The value should not be greater than {0}" => "Vertė neturėtų būti didesnė nei {0}"
24680
- // fileDragAreaPlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "Nuvilkite failą čia arba spustelėkite žemiau esantį mygtuką ir pasirinkite failą, kurį norite įkelti."
24794
+ // filePlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "Nuvilkite failą čia arba spustelėkite žemiau esantį mygtuką ir pasirinkite failą, kurį norite įkelti."
24681
24795
  // emptyRowsText: "There are no rows." => "Eilių nėra."
24682
24796
  // multipletext_itemname: "text" => "SMS žinutė"
24683
24797
  // signaturePlaceHolder: "Sign here" => "Pasirašykite čia"
@@ -24691,8 +24805,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["lt"]
24691
24805
  // tagboxDoneButtonCaption: "OK" => "GERAI"
24692
24806
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Visi pasirinkimai yra reitinguojami"
24693
24807
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Nuvilkite pasirinkimus čia, kad juos reitinguotumėte"// takePhotoCaption: "Take Photo" => "Fotografuoti"
24694
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Spustelėkite žemiau esantį mygtuką, kad nufotografuotumėte fotoaparatu."
24695
- // fileCameraDragAreaPlaceHolder: "Drag and drop or select a file to upload or take a photo using the camera." => "Nuvilkite arba pasirinkite failą, kurį norite įkelti arba nufotografuoti naudodami fotoaparatą."
24808
+ // photoPlaceholder: "Click the button below to take a photo using the camera." => "Spustelėkite žemiau esantį mygtuką, kad nufotografuotumėte fotoaparatu."
24809
+ // fileOrPhotoPlaceholder: "Drag and drop or select a file to upload or take a photo using the camera." => "Nuvilkite arba pasirinkite failą, kurį norite įkelti arba nufotografuoti naudodami fotoaparatą."
24696
24810
  // replaceFileCaption: "Replace file" => "Pakeiskite failą"
24697
24811
 
24698
24812
 
@@ -24757,7 +24871,7 @@ var macedonianSurveyStrings = {
24757
24871
  loadingFile: "Се вчитува ...",
24758
24872
  chooseFile: "Изберете датотека (и) ...",
24759
24873
  noFileChosen: "Не се избрани датотеки",
24760
- fileDragAreaPlaceholder: "Пуштете датотека овде или кликнете на копчето подолу за да ја вчитате датотеката.",
24874
+ filePlaceholder: "Пуштете датотека овде или кликнете на копчето подолу за да ја вчитате датотеката.",
24761
24875
  confirmDelete: "Дали сакате да го избришете записот?",
24762
24876
  keyDuplicationError: "Оваа вредност треба да биде единствена.",
24763
24877
  addColumn: "Додај колона",
@@ -24786,8 +24900,8 @@ var macedonianSurveyStrings = {
24786
24900
  signaturePlaceHolder: "Потпиши се овде.",
24787
24901
  chooseFileCaption: "Изберете датотека",
24788
24902
  takePhotoCaption: "Фотографирајте",
24789
- cameraPlaceHolder: "Кликнете на копчето подолу за да фотографирате користејќи ја камерата.",
24790
- fileCameraDragAreaPlaceHolder: "Влечете и фрлајте или изберете датотека за качување или фотографирање користејќи ја камерата.",
24903
+ photoPlaceholder: "Кликнете на копчето подолу за да фотографирате користејќи ја камерата.",
24904
+ fileOrPhotoPlaceholder: "Влечете и фрлајте или изберете датотека за качување или фотографирање користејќи ја камерата.",
24791
24905
  replaceFileCaption: "Заменете го фајлот.",
24792
24906
  removeFileCaption: "Отстранете ја оваа датотека",
24793
24907
  booleanCheckedLabel: "Да",
@@ -24823,8 +24937,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["mk"]
24823
24937
  // tagboxDoneButtonCaption: "OK" => "ДОБРО"
24824
24938
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Сите избори се рангирани"
24825
24939
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Влечете и фрлете го изборот овде за да ги рангирате"// takePhotoCaption: "Take Photo" => "Фотографирајте"
24826
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Кликнете на копчето подолу за да фотографирате користејќи ја камерата."
24827
- // fileCameraDragAreaPlaceHolder: "Drag and drop or select a file to upload or take a photo using the camera." => "Влечете и фрлајте или изберете датотека за качување или фотографирање користејќи ја камерата."
24940
+ // photoPlaceholder: "Click the button below to take a photo using the camera." => "Кликнете на копчето подолу за да фотографирате користејќи ја камерата."
24941
+ // fileOrPhotoPlaceholder: "Drag and drop or select a file to upload or take a photo using the camera." => "Влечете и фрлајте или изберете датотека за качување или фотографирање користејќи ја камерата."
24828
24942
  // replaceFileCaption: "Replace file" => "Заменете го фајлот."
24829
24943
 
24830
24944
 
@@ -24889,7 +25003,7 @@ var malaySurveyStrings = {
24889
25003
  loadingFile: "Memuat...",
24890
25004
  chooseFile: "Pilih fail...",
24891
25005
  noFileChosen: "Tiada fail dipilih",
24892
- fileDragAreaPlaceholder: "Letakkan fail di sini atau klik butang di bawah untuk memuatkan fail.",
25006
+ filePlaceholder: "Letakkan fail di sini atau klik butang di bawah untuk memuatkan fail.",
24893
25007
  confirmDelete: "Adakah anda ingin memadamkan rekod?",
24894
25008
  keyDuplicationError: "Nilai ini hendaklah unik.",
24895
25009
  addColumn: "Tambahkan lajur",
@@ -24918,8 +25032,8 @@ var malaySurveyStrings = {
24918
25032
  signaturePlaceHolder: "Tandatangan di sini",
24919
25033
  chooseFileCaption: "Pilih fail",
24920
25034
  takePhotoCaption: "Ambil gambar",
24921
- cameraPlaceHolder: "Klik butang di bawah untuk mengambil gambar menggunakan kamera.",
24922
- fileCameraDragAreaPlaceHolder: "Seret dan lepas atau pilih fail untuk memuat naik atau mengambil foto menggunakan kamera.",
25035
+ photoPlaceholder: "Klik butang di bawah untuk mengambil gambar menggunakan kamera.",
25036
+ fileOrPhotoPlaceholder: "Seret dan lepas atau pilih fail untuk memuat naik atau mengambil foto menggunakan kamera.",
24923
25037
  replaceFileCaption: "Gantikan fail",
24924
25038
  removeFileCaption: "Alih keluar fail ini",
24925
25039
  booleanCheckedLabel: "Ya",
@@ -24951,8 +25065,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ms"]
24951
25065
  // tagboxDoneButtonCaption: "OK" => "OK"
24952
25066
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Semua pilihan disenaraikan"
24953
25067
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Seret dan lepaskan pilihan di sini untuk meletakkannya"// takePhotoCaption: "Take Photo" => "Ambil gambar"
24954
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Klik butang di bawah untuk mengambil gambar menggunakan kamera."
24955
- // fileCameraDragAreaPlaceHolder: "Drag and drop or select a file to upload or take a photo using the camera." => "Seret dan lepas atau pilih fail untuk memuat naik atau mengambil foto menggunakan kamera."
25068
+ // photoPlaceholder: "Click the button below to take a photo using the camera." => "Klik butang di bawah untuk mengambil gambar menggunakan kamera."
25069
+ // fileOrPhotoPlaceholder: "Drag and drop or select a file to upload or take a photo using the camera." => "Seret dan lepas atau pilih fail untuk memuat naik atau mengambil foto menggunakan kamera."
24956
25070
  // replaceFileCaption: "Replace file" => "Gantikan fail"
24957
25071
 
24958
25072
 
@@ -25041,7 +25155,7 @@ var norwegianSurveyStrings = {
25041
25155
  loadingFile: "Laster inn ...",
25042
25156
  chooseFile: "Velg fil (er) ...",
25043
25157
  noFileChosen: "Ingen fil valgt",
25044
- fileDragAreaPlaceholder: "Dra og slipp en fil her, eller klikk på knappen nedenfor og velg en fil du vil laste opp.",
25158
+ filePlaceholder: "Dra og slipp en fil her, eller klikk på knappen nedenfor og velg en fil du vil laste opp.",
25045
25159
  confirmDelete: "Ønsker du å slette posten?",
25046
25160
  keyDuplicationError: "Denne verdien skal være unik.",
25047
25161
  addColumn: "Legg til kolonne",
@@ -25070,8 +25184,8 @@ var norwegianSurveyStrings = {
25070
25184
  signaturePlaceHolder: "Logg inn her",
25071
25185
  chooseFileCaption: "Velg Fil",
25072
25186
  takePhotoCaption: "Ta bilde",
25073
- cameraPlaceHolder: "Klikk på knappen nedenfor for å ta et bilde med kameraet.",
25074
- fileCameraDragAreaPlaceHolder: "Dra og slipp eller velg en fil for å laste opp eller ta et bilde med kameraet.",
25187
+ photoPlaceholder: "Klikk på knappen nedenfor for å ta et bilde med kameraet.",
25188
+ fileOrPhotoPlaceholder: "Dra og slipp eller velg en fil for å laste opp eller ta et bilde med kameraet.",
25075
25189
  replaceFileCaption: "Erstatt fil",
25076
25190
  removeFileCaption: "Fjern denne filen",
25077
25191
  booleanCheckedLabel: "Ja",
@@ -25099,7 +25213,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["no"]
25099
25213
  // ratingOptionsCaption: "Select..." => "Velge..."
25100
25214
  // minError: "The value should not be less than {0}" => "Verdien bør ikke være mindre enn {0}"
25101
25215
  // maxError: "The value should not be greater than {0}" => "Verdien bør ikke være større enn {0}"
25102
- // fileDragAreaPlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "Dra og slipp en fil her, eller klikk på knappen nedenfor og velg en fil du vil laste opp."
25216
+ // filePlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "Dra og slipp en fil her, eller klikk på knappen nedenfor og velg en fil du vil laste opp."
25103
25217
  // emptyRowsText: "There are no rows." => "Det er ingen rader."
25104
25218
  // multipletext_itemname: "text" => "Tekst"
25105
25219
  // signaturePlaceHolder: "Sign here" => "Logg inn her"
@@ -25113,8 +25227,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["no"]
25113
25227
  // tagboxDoneButtonCaption: "OK" => "OK"
25114
25228
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Alle valg er rangert"
25115
25229
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Dra og slipp valg her for å rangere dem"// takePhotoCaption: "Take Photo" => "Ta bilde"
25116
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Klikk på knappen nedenfor for å ta et bilde med kameraet."
25117
- // fileCameraDragAreaPlaceHolder: "Drag and drop or select a file to upload or take a photo using the camera." => "Dra og slipp eller velg en fil for å laste opp eller ta et bilde med kameraet."
25230
+ // photoPlaceholder: "Click the button below to take a photo using the camera." => "Klikk på knappen nedenfor for å ta et bilde med kameraet."
25231
+ // fileOrPhotoPlaceholder: "Drag and drop or select a file to upload or take a photo using the camera." => "Dra og slipp eller velg en fil for å laste opp eller ta et bilde med kameraet."
25118
25232
  // replaceFileCaption: "Replace file" => "Erstatt fil"
25119
25233
 
25120
25234
 
@@ -25179,7 +25293,7 @@ var persianSurveyStrings = {
25179
25293
  loadingFile: "بارگیری...",
25180
25294
  chooseFile: "انتخاب فایل(ها)...",
25181
25295
  noFileChosen: "هیچ فایلی انتخاب نشده",
25182
- fileDragAreaPlaceholder: "کشیدن و رها کردن یک فایل در اینجا و یا کلیک بر روی دکمه زیر و یک فایل برای اپلود را انتخاب کنید.",
25296
+ filePlaceholder: "کشیدن و رها کردن یک فایل در اینجا و یا کلیک بر روی دکمه زیر و یک فایل برای اپلود را انتخاب کنید.",
25183
25297
  confirmDelete: "آیا مایل به حذف این ردیف هستید؟",
25184
25298
  keyDuplicationError: "این مقدار باید غیر تکراری باشد",
25185
25299
  addColumn: "ستون جدید",
@@ -25208,8 +25322,8 @@ var persianSurveyStrings = {
25208
25322
  signaturePlaceHolder: "اینجا را امضا کنید",
25209
25323
  chooseFileCaption: "انتخاب فایل",
25210
25324
  takePhotoCaption: "گرفتن عکس",
25211
- cameraPlaceHolder: "روی دکمه زیر کلیک کنید تا با استفاده از دوربین عکس بگیرید.",
25212
- fileCameraDragAreaPlaceHolder: "کشیدن و رها کردن یا انتخاب یک فایل برای اپلود یا گرفتن عکس با استفاده از دوربین.",
25325
+ photoPlaceholder: "روی دکمه زیر کلیک کنید تا با استفاده از دوربین عکس بگیرید.",
25326
+ fileOrPhotoPlaceholder: "کشیدن و رها کردن یا انتخاب یک فایل برای اپلود یا گرفتن عکس با استفاده از دوربین.",
25213
25327
  replaceFileCaption: "جایگزینی پرونده",
25214
25328
  removeFileCaption: "حذف این فایل",
25215
25329
  booleanCheckedLabel: "بله",
@@ -25237,7 +25351,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["fa"]
25237
25351
  // ratingOptionsCaption: "Select..." => "انتخاب..."
25238
25352
  // minError: "The value should not be less than {0}" => "ارزش نباید کمتر از {0}"
25239
25353
  // maxError: "The value should not be greater than {0}" => "ارزش نباید بیشتر از {0}"
25240
- // fileDragAreaPlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "کشیدن و رها کردن یک فایل در اینجا و یا کلیک بر روی دکمه زیر و یک فایل برای اپلود را انتخاب کنید."
25354
+ // filePlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "کشیدن و رها کردن یک فایل در اینجا و یا کلیک بر روی دکمه زیر و یک فایل برای اپلود را انتخاب کنید."
25241
25355
  // emptyRowsText: "There are no rows." => "هیچ ردیفی وجود ندارد."
25242
25356
  // multipletext_itemname: "text" => "پیامک"
25243
25357
  // signaturePlaceHolder: "Sign here" => "اینجا را امضا کنید"
@@ -25251,8 +25365,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["fa"]
25251
25365
  // tagboxDoneButtonCaption: "OK" => "باشه"
25252
25366
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "همه انتخاب ها رتبه بندی می شوند"
25253
25367
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "انتخاب های کشیدن و رها کردن در اینجا برای رتبه بندی انها"// takePhotoCaption: "Take Photo" => "گرفتن عکس"
25254
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "روی دکمه زیر کلیک کنید تا با استفاده از دوربین عکس بگیرید."
25255
- // fileCameraDragAreaPlaceHolder: "Drag and drop or select a file to upload or take a photo using the camera." => "کشیدن و رها کردن یا انتخاب یک فایل برای اپلود یا گرفتن عکس با استفاده از دوربین."
25368
+ // photoPlaceholder: "Click the button below to take a photo using the camera." => "روی دکمه زیر کلیک کنید تا با استفاده از دوربین عکس بگیرید."
25369
+ // fileOrPhotoPlaceholder: "Drag and drop or select a file to upload or take a photo using the camera." => "کشیدن و رها کردن یا انتخاب یک فایل برای اپلود یا گرفتن عکس با استفاده از دوربین."
25256
25370
  // replaceFileCaption: "Replace file" => "جایگزینی پرونده"
25257
25371
 
25258
25372
 
@@ -25317,7 +25431,7 @@ var polishSurveyStrings = {
25317
25431
  loadingFile: "Ładowanie...",
25318
25432
  chooseFile: "Wybierz plik(i)...",
25319
25433
  noFileChosen: "Nie wybrano żadnego pliku",
25320
- fileDragAreaPlaceholder: "Upuść plik tutaj lub kliknij przycisk poniżej, aby załadować plik.",
25434
+ filePlaceholder: "Upuść plik tutaj lub kliknij przycisk poniżej, aby załadować plik.",
25321
25435
  confirmDelete: "Chcesz skasować nagranie?",
25322
25436
  keyDuplicationError: "Ta wartość powinna być wyjątkowa.",
25323
25437
  addColumn: "Dodaj kolumnę",
@@ -25346,8 +25460,8 @@ var polishSurveyStrings = {
25346
25460
  signaturePlaceHolder: "Podpisz tutaj",
25347
25461
  chooseFileCaption: "Wybierz plik",
25348
25462
  takePhotoCaption: "Zrób zdjęcie",
25349
- cameraPlaceHolder: "Kliknij przycisk poniżej, aby zrobić zdjęcie aparatem.",
25350
- fileCameraDragAreaPlaceHolder: "Przeciągnij i upuść lub wybierz plik, który chcesz przesłać lub zrobić zdjęcie za pomocą aparatu.",
25463
+ photoPlaceholder: "Kliknij przycisk poniżej, aby zrobić zdjęcie aparatem.",
25464
+ fileOrPhotoPlaceholder: "Przeciągnij i upuść lub wybierz plik, który chcesz przesłać lub zrobić zdjęcie za pomocą aparatu.",
25351
25465
  replaceFileCaption: "Zastąp plik",
25352
25466
  removeFileCaption: "Usuń ten plik",
25353
25467
  booleanCheckedLabel: "Tak",
@@ -25377,8 +25491,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["pl"]
25377
25491
  // tagboxDoneButtonCaption: "OK" => "OK"
25378
25492
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Wszystkie wybory są uszeregowane"
25379
25493
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Przeciągnij i upuść tutaj wybory, aby je uszeregować"// takePhotoCaption: "Take Photo" => "Zrób zdjęcie"
25380
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Kliknij przycisk poniżej, aby zrobić zdjęcie aparatem."
25381
- // fileCameraDragAreaPlaceHolder: "Drag and drop or select a file to upload or take a photo using the camera." => "Przeciągnij i upuść lub wybierz plik, który chcesz przesłać lub zrobić zdjęcie za pomocą aparatu."
25494
+ // photoPlaceholder: "Click the button below to take a photo using the camera." => "Kliknij przycisk poniżej, aby zrobić zdjęcie aparatem."
25495
+ // fileOrPhotoPlaceholder: "Drag and drop or select a file to upload or take a photo using the camera." => "Przeciągnij i upuść lub wybierz plik, który chcesz przesłać lub zrobić zdjęcie za pomocą aparatu."
25382
25496
  // replaceFileCaption: "Replace file" => "Zastąp plik"
25383
25497
 
25384
25498
 
@@ -25446,7 +25560,7 @@ var portugueseBrSurveyStrings = {
25446
25560
  loadingFile: "Carregando...",
25447
25561
  chooseFile: "Escolha o(s) arquivo(s)...",
25448
25562
  noFileChosen: "Nenhum arquivo escolhido",
25449
- fileDragAreaPlaceholder: "Arraste e solte um arquivo aqui ou clique no botão abaixo e escolha um arquivo para carregar.",
25563
+ filePlaceholder: "Arraste e solte um arquivo aqui ou clique no botão abaixo e escolha um arquivo para carregar.",
25450
25564
  confirmDelete: "Tem certeza que deseja deletar?",
25451
25565
  keyDuplicationError: "Esse valor deve ser único.",
25452
25566
  addColumn: "Adicionar coluna",
@@ -25475,8 +25589,8 @@ var portugueseBrSurveyStrings = {
25475
25589
  signaturePlaceHolder: "Assine aqui",
25476
25590
  chooseFileCaption: "Escolher arquivo",
25477
25591
  takePhotoCaption: "Tirar foto",
25478
- cameraPlaceHolder: "Clique no botão abaixo para tirar uma foto usando a câmera.",
25479
- fileCameraDragAreaPlaceHolder: "Arraste e solte ou selecione um arquivo para carregar ou tirar uma foto usando a câmera.",
25592
+ photoPlaceholder: "Clique no botão abaixo para tirar uma foto usando a câmera.",
25593
+ fileOrPhotoPlaceholder: "Arraste e solte ou selecione um arquivo para carregar ou tirar uma foto usando a câmera.",
25480
25594
  replaceFileCaption: "Substituir arquivo",
25481
25595
  removeFileCaption: "Remover este arquivo",
25482
25596
  booleanCheckedLabel: "Sim",
@@ -25530,7 +25644,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["pt-b
25530
25644
  // invalidExpression: "The expression: {0} should return 'true'." => "A expressão: {0} deve retornar 'verdadeiro'."
25531
25645
  // exceedMaxSize: "The file size should not exceed {0}." => "O tamanho do arquivo não deve exceder {0}."
25532
25646
  // chooseFile: "Choose file(s)..." => "Escolha o(s) arquivo(s)..."
25533
- // fileDragAreaPlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "Arraste e solte um arquivo aqui ou clique no botão abaixo e escolha um arquivo para carregar."
25647
+ // filePlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "Arraste e solte um arquivo aqui ou clique no botão abaixo e escolha um arquivo para carregar."
25534
25648
  // addColumn: "Add Column" => "Adicionar coluna"
25535
25649
  // addRow: "Add Row" => "Adicionar linha"
25536
25650
  // removeRow: "Remove" => "Retirar"
@@ -25565,8 +25679,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["pt-b
25565
25679
  // tagboxDoneButtonCaption: "OK" => "OKEY"
25566
25680
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Todas as opções são classificadas"
25567
25681
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Arraste e solte as opções aqui para classificá-las"// takePhotoCaption: "Take Photo" => "Tirar foto"
25568
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Clique no botão abaixo para tirar uma foto usando a câmera."
25569
- // fileCameraDragAreaPlaceHolder: "Drag and drop or select a file to upload or take a photo using the camera." => "Arraste e solte ou selecione um arquivo para carregar ou tirar uma foto usando a câmera."
25682
+ // photoPlaceholder: "Click the button below to take a photo using the camera." => "Clique no botão abaixo para tirar uma foto usando a câmera."
25683
+ // fileOrPhotoPlaceholder: "Drag and drop or select a file to upload or take a photo using the camera." => "Arraste e solte ou selecione um arquivo para carregar ou tirar uma foto usando a câmera."
25570
25684
  // replaceFileCaption: "Replace file" => "Substituir arquivo"
25571
25685
 
25572
25686
 
@@ -25631,7 +25745,7 @@ var portugueseSurveyStrings = {
25631
25745
  loadingFile: "A carregar...",
25632
25746
  chooseFile: "Selecione o(s) arquivo(s)...",
25633
25747
  noFileChosen: "Nenhum ficheiro escolhido",
25634
- fileDragAreaPlaceholder: "Arraste um ficheiro aqui ou clique no botão abaixo para carregar o ficheiro.",
25748
+ filePlaceholder: "Arraste um ficheiro aqui ou clique no botão abaixo para carregar o ficheiro.",
25635
25749
  confirmDelete: "Tem a certeza que deseja apagar?",
25636
25750
  keyDuplicationError: "Este valor deve ser único.",
25637
25751
  addColumn: "Adicionar coluna",
@@ -25660,8 +25774,8 @@ var portugueseSurveyStrings = {
25660
25774
  signaturePlaceHolder: "Assine aqui",
25661
25775
  chooseFileCaption: "Escolher ficheiro",
25662
25776
  takePhotoCaption: "Tirar foto",
25663
- cameraPlaceHolder: "Clique no botão abaixo para tirar uma foto usando a câmera.",
25664
- fileCameraDragAreaPlaceHolder: "Arraste e solte ou selecione um arquivo para carregar ou tirar uma foto usando a câmera.",
25777
+ photoPlaceholder: "Clique no botão abaixo para tirar uma foto usando a câmera.",
25778
+ fileOrPhotoPlaceholder: "Arraste e solte ou selecione um arquivo para carregar ou tirar uma foto usando a câmera.",
25665
25779
  replaceFileCaption: "Substituir arquivo",
25666
25780
  removeFileCaption: "Remover este ficheiro",
25667
25781
  booleanCheckedLabel: "Sim",
@@ -25688,8 +25802,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["pt"]
25688
25802
  // noEntriesReadonlyText: "There are no entries." => "Não há entradas."
25689
25803
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Todas as opções são classificadas"
25690
25804
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Arraste e solte as opções aqui para classificá-las"// takePhotoCaption: "Take Photo" => "Tirar foto"
25691
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Clique no botão abaixo para tirar uma foto usando a câmera."
25692
- // fileCameraDragAreaPlaceHolder: "Drag and drop or select a file to upload or take a photo using the camera." => "Arraste e solte ou selecione um arquivo para carregar ou tirar uma foto usando a câmera."
25805
+ // photoPlaceholder: "Click the button below to take a photo using the camera." => "Clique no botão abaixo para tirar uma foto usando a câmera."
25806
+ // fileOrPhotoPlaceholder: "Drag and drop or select a file to upload or take a photo using the camera." => "Arraste e solte ou selecione um arquivo para carregar ou tirar uma foto usando a câmera."
25693
25807
  // replaceFileCaption: "Replace file" => "Substituir arquivo"
25694
25808
 
25695
25809
 
@@ -25754,7 +25868,7 @@ var romanianSurveyStrings = {
25754
25868
  loadingFile: "Se încarcă...",
25755
25869
  chooseFile: "Alege fisierele...",
25756
25870
  noFileChosen: "Niciun fișier ales",
25757
- fileDragAreaPlaceholder: "Glisați și fixați un fișier aici sau faceți clic pe butonul de mai jos și alegeți un fișier de încărcat.",
25871
+ filePlaceholder: "Glisați și fixați un fișier aici sau faceți clic pe butonul de mai jos și alegeți un fișier de încărcat.",
25758
25872
  confirmDelete: "Sunteți sigur că doriți să ștergeți înregistrarea?",
25759
25873
  keyDuplicationError: "Valoarea trebuie să fie unică.",
25760
25874
  addColumn: "Adăugați coloană",
@@ -25783,8 +25897,8 @@ var romanianSurveyStrings = {
25783
25897
  signaturePlaceHolder: "Semnează aici",
25784
25898
  chooseFileCaption: "Alege fișierul",
25785
25899
  takePhotoCaption: "Faceți o fotografie",
25786
- cameraPlaceHolder: "Faceți clic pe butonul de mai jos pentru a face o fotografie folosind camera.",
25787
- fileCameraDragAreaPlaceHolder: "Glisați și fixați sau selectați un fișier pentru a încărca sau a face o fotografie folosind camera.",
25900
+ photoPlaceholder: "Faceți clic pe butonul de mai jos pentru a face o fotografie folosind camera.",
25901
+ fileOrPhotoPlaceholder: "Glisați și fixați sau selectați un fișier pentru a încărca sau a face o fotografie folosind camera.",
25788
25902
  replaceFileCaption: "Înlocuire fișier",
25789
25903
  removeFileCaption: "Eliminați acest fișier",
25790
25904
  booleanCheckedLabel: "da",
@@ -25812,7 +25926,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ro"]
25812
25926
  // ratingOptionsCaption: "Select..." => "Alege..."
25813
25927
  // minError: "The value should not be less than {0}" => "Valoarea nu trebuie să fie mai mică de {0}"
25814
25928
  // maxError: "The value should not be greater than {0}" => "Valoarea nu trebuie să fie mai mare de {0}"
25815
- // fileDragAreaPlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "Glisați și fixați un fișier aici sau faceți clic pe butonul de mai jos și alegeți un fișier de încărcat."
25929
+ // filePlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "Glisați și fixați un fișier aici sau faceți clic pe butonul de mai jos și alegeți un fișier de încărcat."
25816
25930
  // emptyRowsText: "There are no rows." => "Nu există rânduri."
25817
25931
  // multipletext_itemname: "text" => "Text"
25818
25932
  // signaturePlaceHolder: "Sign here" => "Semnează aici"
@@ -25826,8 +25940,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ro"]
25826
25940
  // tagboxDoneButtonCaption: "OK" => "OK"
25827
25941
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Toate opțiunile sunt clasificate"
25828
25942
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Glisați și fixați opțiunile aici pentru a le clasifica"// takePhotoCaption: "Take Photo" => "Faceți o fotografie"
25829
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Faceți clic pe butonul de mai jos pentru a face o fotografie folosind camera."
25830
- // fileCameraDragAreaPlaceHolder: "Drag and drop or select a file to upload or take a photo using the camera." => "Glisați și fixați sau selectați un fișier pentru a încărca sau a face o fotografie folosind camera."
25943
+ // photoPlaceholder: "Click the button below to take a photo using the camera." => "Faceți clic pe butonul de mai jos pentru a face o fotografie folosind camera."
25944
+ // fileOrPhotoPlaceholder: "Drag and drop or select a file to upload or take a photo using the camera." => "Glisați și fixați sau selectați un fișier pentru a încărca sau a face o fotografie folosind camera."
25831
25945
  // replaceFileCaption: "Replace file" => "Înlocuire fișier"
25832
25946
 
25833
25947
 
@@ -25892,7 +26006,7 @@ var russianSurveyStrings = {
25892
26006
  loadingFile: "Загрузка...",
25893
26007
  chooseFile: "Выберите файл(ы)...",
25894
26008
  noFileChosen: "Файл не выбран",
25895
- fileDragAreaPlaceholder: "Перетащите файл сюда или нажмите кнопку ниже, чтобы загрузить файл.",
26009
+ filePlaceholder: "Перетащите файл сюда или нажмите кнопку ниже, чтобы загрузить файл.",
25896
26010
  confirmDelete: "Вы точно хотите удалить запись?",
25897
26011
  keyDuplicationError: "Это значение должно быть уникальным.",
25898
26012
  addColumn: "Добавить колонку",
@@ -25921,8 +26035,8 @@ var russianSurveyStrings = {
25921
26035
  signaturePlaceHolder: "Подпишите здесь",
25922
26036
  chooseFileCaption: "Выберите файл",
25923
26037
  takePhotoCaption: "Сделать фото",
25924
- cameraPlaceHolder: "Нажмите кнопку ниже, чтобы сделать снимок с помощью камеры.",
25925
- fileCameraDragAreaPlaceHolder: "Перетащите или выберите файл для загрузки или съемки с помощью камеры.",
26038
+ photoPlaceholder: "Нажмите кнопку ниже, чтобы сделать снимок с помощью камеры.",
26039
+ fileOrPhotoPlaceholder: "Перетащите или выберите файл для загрузки или съемки с помощью камеры.",
25926
26040
  replaceFileCaption: "Заменить файл",
25927
26041
  removeFileCaption: "Удалить файл",
25928
26042
  booleanCheckedLabel: "Да",
@@ -25952,8 +26066,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ru"]
25952
26066
  // tagboxDoneButtonCaption: "OK" => "ХОРОШО"
25953
26067
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Все варианты ранжируются"
25954
26068
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Перетащите сюда варианты, чтобы ранжировать их"// takePhotoCaption: "Take Photo" => "Сделать фото"
25955
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Нажмите кнопку ниже, чтобы сделать снимок с помощью камеры."
25956
- // fileCameraDragAreaPlaceHolder: "Drag and drop or select a file to upload or take a photo using the camera." => "Перетащите или выберите файл для загрузки или съемки с помощью камеры."
26069
+ // photoPlaceholder: "Click the button below to take a photo using the camera." => "Нажмите кнопку ниже, чтобы сделать снимок с помощью камеры."
26070
+ // fileOrPhotoPlaceholder: "Drag and drop or select a file to upload or take a photo using the camera." => "Перетащите или выберите файл для загрузки или съемки с помощью камеры."
25957
26071
  // replaceFileCaption: "Replace file" => "Заменить файл"
25958
26072
 
25959
26073
 
@@ -26018,7 +26132,7 @@ var serbianStrings = {
26018
26132
  loadingFile: "Učitavanje...",
26019
26133
  chooseFile: "Izaberite fajlove...",
26020
26134
  noFileChosen: "Nije izabran nijedan fajl",
26021
- fileDragAreaPlaceholder: "Prevucite i otpustite datoteku ovde ili kliknite na dugme ispod i odaberite datoteku za otpremanje.",
26135
+ filePlaceholder: "Prevucite i otpustite datoteku ovde ili kliknite na dugme ispod i odaberite datoteku za otpremanje.",
26022
26136
  confirmDelete: "Da li želite da izbrišete unos?",
26023
26137
  keyDuplicationError: "Ova vrednost treba da bude jedinstvena.",
26024
26138
  addColumn: "Dodaj kolonu",
@@ -26047,8 +26161,8 @@ var serbianStrings = {
26047
26161
  signaturePlaceHolder: "Potpišite ovde",
26048
26162
  chooseFileCaption: "Izaberi fajl",
26049
26163
  takePhotoCaption: "Fotografisanje",
26050
- cameraPlaceHolder: "Kliknite na dugme ispod da biste snimili fotografiju pomoću fotoaparata.",
26051
- fileCameraDragAreaPlaceHolder: "Prevucite i otpustite ili izaberite datoteku za otpremanje ili snimanje fotografije pomoću fotoaparata.",
26164
+ photoPlaceholder: "Kliknite na dugme ispod da biste snimili fotografiju pomoću fotoaparata.",
26165
+ fileOrPhotoPlaceholder: "Prevucite i otpustite ili izaberite datoteku za otpremanje ili snimanje fotografije pomoću fotoaparata.",
26052
26166
  replaceFileCaption: "Zameni datoteku",
26053
26167
  removeFileCaption: "Ukloni ovaj fajl",
26054
26168
  booleanCheckedLabel: "Da",
@@ -26075,7 +26189,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["rs"]
26075
26189
  // indexText: "{0} of {1}" => "{0} {1}"
26076
26190
  // panelDynamicTabTextFormat: "Panel {panelIndex}" => "Panel {panelIndex}"
26077
26191
  // ratingOptionsCaption: "Select..." => "Izaberite..."
26078
- // fileDragAreaPlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "Prevucite i otpustite datoteku ovde ili kliknite na dugme ispod i odaberite datoteku za otpremanje."
26192
+ // filePlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "Prevucite i otpustite datoteku ovde ili kliknite na dugme ispod i odaberite datoteku za otpremanje."
26079
26193
  // signaturePlaceHolder: "Sign here" => "Potpišite ovde"
26080
26194
  // filterStringPlaceholder: "Type to search..." => "Otkucajte da biste pretražili..."
26081
26195
  // emptyMessage: "No data to display" => "Nema podataka za prikazivanje"
@@ -26085,8 +26199,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["rs"]
26085
26199
  // tagboxDoneButtonCaption: "OK" => "U redu"
26086
26200
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Svi izbori su rangirani"
26087
26201
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Prevucite i otpustite izbor ovde da biste ih rangirali"// takePhotoCaption: "Take Photo" => "Fotografisanje"
26088
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Kliknite na dugme ispod da biste snimili fotografiju pomoću fotoaparata."
26089
- // fileCameraDragAreaPlaceHolder: "Drag and drop or select a file to upload or take a photo using the camera." => "Prevucite i otpustite ili izaberite datoteku za otpremanje ili snimanje fotografije pomoću fotoaparata."
26202
+ // photoPlaceholder: "Click the button below to take a photo using the camera." => "Kliknite na dugme ispod da biste snimili fotografiju pomoću fotoaparata."
26203
+ // fileOrPhotoPlaceholder: "Drag and drop or select a file to upload or take a photo using the camera." => "Prevucite i otpustite ili izaberite datoteku za otpremanje ili snimanje fotografije pomoću fotoaparata."
26090
26204
  // replaceFileCaption: "Replace file" => "Zameni datoteku"
26091
26205
 
26092
26206
 
@@ -26151,7 +26265,7 @@ var simplifiedChineseSurveyStrings = {
26151
26265
  loadingFile: "加载...",
26152
26266
  chooseFile: "选择文件...",
26153
26267
  noFileChosen: "未选择文件",
26154
- fileDragAreaPlaceholder: "将文件拖放到此处或单击下面的按钮并选择要上传的文件。",
26268
+ filePlaceholder: "将文件拖放到此处或单击下面的按钮并选择要上传的文件。",
26155
26269
  confirmDelete: "删除记录?",
26156
26270
  keyDuplicationError: "主键不能重复",
26157
26271
  addColumn: "添加列",
@@ -26180,8 +26294,8 @@ var simplifiedChineseSurveyStrings = {
26180
26294
  signaturePlaceHolder: "在此签名",
26181
26295
  chooseFileCaption: "选择文件",
26182
26296
  takePhotoCaption: "拍照",
26183
- cameraPlaceHolder: "单击下面的按钮使用相机拍照。",
26184
- fileCameraDragAreaPlaceHolder: "拖放或选择要上传的文件或使用相机拍摄照片。",
26297
+ photoPlaceholder: "单击下面的按钮使用相机拍照。",
26298
+ fileOrPhotoPlaceholder: "拖放或选择要上传的文件或使用相机拍摄照片。",
26185
26299
  replaceFileCaption: "替换文件",
26186
26300
  removeFileCaption: "移除文件",
26187
26301
  booleanCheckedLabel: "是",
@@ -26207,7 +26321,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["zh-c
26207
26321
  // indexText: "{0} of {1}" => "{1}{0}"
26208
26322
  // panelDynamicTabTextFormat: "Panel {panelIndex}" => "面板 {面板索引}"
26209
26323
  // ratingOptionsCaption: "Select..." => "选择。。。"
26210
- // fileDragAreaPlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "将文件拖放到此处或单击下面的按钮并选择要上传的文件。"
26324
+ // filePlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "将文件拖放到此处或单击下面的按钮并选择要上传的文件。"
26211
26325
  // signaturePlaceHolder: "Sign here" => "在此签名"
26212
26326
  // filterStringPlaceholder: "Type to search..." => "键入以搜索..."
26213
26327
  // emptyMessage: "No data to display" => "没有要显示的数据"
@@ -26217,8 +26331,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["zh-c
26217
26331
  // tagboxDoneButtonCaption: "OK" => "还行"
26218
26332
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "所有选择均已排名"
26219
26333
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "将选项拖放到此处进行排名"// takePhotoCaption: "Take Photo" => "拍照"
26220
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "单击下面的按钮使用相机拍照。"
26221
- // fileCameraDragAreaPlaceHolder: "Drag and drop or select a file to upload or take a photo using the camera." => "拖放或选择要上传的文件或使用相机拍摄照片。"
26334
+ // photoPlaceholder: "Click the button below to take a photo using the camera." => "单击下面的按钮使用相机拍照。"
26335
+ // fileOrPhotoPlaceholder: "Drag and drop or select a file to upload or take a photo using the camera." => "拖放或选择要上传的文件或使用相机拍摄照片。"
26222
26336
  // replaceFileCaption: "Replace file" => "替换文件"
26223
26337
 
26224
26338
 
@@ -26283,7 +26397,7 @@ var slovakSurveyStrings = {
26283
26397
  loadingFile: "Načítanie...",
26284
26398
  chooseFile: "Vyberte súbor(-y)...",
26285
26399
  noFileChosen: "Žiadny vybratý súbor",
26286
- fileDragAreaPlaceholder: "Presuňte súbor sem alebo kliknite na nasledujúce tlačidlo a načítajte súbor.",
26400
+ filePlaceholder: "Presuňte súbor sem alebo kliknite na nasledujúce tlačidlo a načítajte súbor.",
26287
26401
  confirmDelete: "Chcete záznam odstrániť?",
26288
26402
  keyDuplicationError: "Táto hodnota má byť jedinečná.",
26289
26403
  addColumn: "Pridať stĺpec",
@@ -26312,8 +26426,8 @@ var slovakSurveyStrings = {
26312
26426
  signaturePlaceHolder: "Podpísať tu",
26313
26427
  chooseFileCaption: "Vybrať súbor",
26314
26428
  takePhotoCaption: "Odfotiť",
26315
- cameraPlaceHolder: "Kliknutím na tlačidlo nižšie nasnímate fotografiu pomocou fotoaparátu.",
26316
- fileCameraDragAreaPlaceHolder: "Presuňte myšou alebo vyberte súbor, ktorý chcete nahrať alebo nasnímať fotografiu pomocou fotoaparátu.",
26429
+ photoPlaceholder: "Kliknutím na tlačidlo nižšie nasnímate fotografiu pomocou fotoaparátu.",
26430
+ fileOrPhotoPlaceholder: "Presuňte myšou alebo vyberte súbor, ktorý chcete nahrať alebo nasnímať fotografiu pomocou fotoaparátu.",
26317
26431
  replaceFileCaption: "Nahradenie súboru",
26318
26432
  removeFileCaption: "Odstrániť tento súbor",
26319
26433
  booleanCheckedLabel: "Áno",
@@ -26345,8 +26459,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["sk"]
26345
26459
  // tagboxDoneButtonCaption: "OK" => "OK"
26346
26460
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Všetky možnosti sú zoradené"
26347
26461
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Presuňte sem voľby, aby ste ich zoradili"// takePhotoCaption: "Take Photo" => "Odfotiť"
26348
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Kliknutím na tlačidlo nižšie nasnímate fotografiu pomocou fotoaparátu."
26349
- // fileCameraDragAreaPlaceHolder: "Drag and drop or select a file to upload or take a photo using the camera." => "Presuňte myšou alebo vyberte súbor, ktorý chcete nahrať alebo nasnímať fotografiu pomocou fotoaparátu."
26462
+ // photoPlaceholder: "Click the button below to take a photo using the camera." => "Kliknutím na tlačidlo nižšie nasnímate fotografiu pomocou fotoaparátu."
26463
+ // fileOrPhotoPlaceholder: "Drag and drop or select a file to upload or take a photo using the camera." => "Presuňte myšou alebo vyberte súbor, ktorý chcete nahrať alebo nasnímať fotografiu pomocou fotoaparátu."
26350
26464
  // replaceFileCaption: "Replace file" => "Nahradenie súboru"
26351
26465
 
26352
26466
 
@@ -26411,7 +26525,7 @@ var spanishSurveyStrings = {
26411
26525
  loadingFile: "Cargando...",
26412
26526
  chooseFile: "Elija archivo(s)...",
26413
26527
  noFileChosen: "No se ha elegido ningún archivo",
26414
- fileDragAreaPlaceholder: "Suelte un archivo aquí o haga clic en el botón de abajo para cargar el archivo",
26528
+ filePlaceholder: "Suelte un archivo aquí o haga clic en el botón de abajo para cargar el archivo",
26415
26529
  confirmDelete: "¿Quieres borrar el registro?",
26416
26530
  keyDuplicationError: "Este valor debe ser único.",
26417
26531
  addColumn: "Añadir columna",
@@ -26440,8 +26554,8 @@ var spanishSurveyStrings = {
26440
26554
  signaturePlaceHolder: "Firma aqui",
26441
26555
  chooseFileCaption: "Elija el archivo",
26442
26556
  takePhotoCaption: "Tomar foto",
26443
- cameraPlaceHolder: "Haga clic en el botón de abajo para tomar una foto con la cámara.",
26444
- fileCameraDragAreaPlaceHolder: "Arrastre y suelte o seleccione un archivo para cargar o tomar una foto con la cámara.",
26557
+ photoPlaceholder: "Haga clic en el botón de abajo para tomar una foto con la cámara.",
26558
+ fileOrPhotoPlaceholder: "Arrastre y suelte o seleccione un archivo para cargar o tomar una foto con la cámara.",
26445
26559
  replaceFileCaption: "Reemplazar archivo",
26446
26560
  removeFileCaption: "Elimina este archivo",
26447
26561
  booleanCheckedLabel: "Sí",
@@ -26471,8 +26585,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["es"]
26471
26585
  // tagboxDoneButtonCaption: "OK" => "De acuerdo"
26472
26586
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Todas las opciones están clasificadas"
26473
26587
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Arrastra y suelta opciones aquí para clasificarlas"// takePhotoCaption: "Take Photo" => "Tomar foto"
26474
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Haga clic en el botón de abajo para tomar una foto con la cámara."
26475
- // fileCameraDragAreaPlaceHolder: "Drag and drop or select a file to upload or take a photo using the camera." => "Arrastre y suelte o seleccione un archivo para cargar o tomar una foto con la cámara."
26588
+ // photoPlaceholder: "Click the button below to take a photo using the camera." => "Haga clic en el botón de abajo para tomar una foto con la cámara."
26589
+ // fileOrPhotoPlaceholder: "Drag and drop or select a file to upload or take a photo using the camera." => "Arrastre y suelte o seleccione un archivo para cargar o tomar una foto con la cámara."
26476
26590
  // replaceFileCaption: "Replace file" => "Reemplazar archivo"
26477
26591
 
26478
26592
 
@@ -26537,7 +26651,7 @@ var swahiliStrings = {
26537
26651
  loadingFile: "Inapakia...",
26538
26652
  chooseFile: "Chagua faili...",
26539
26653
  noFileChosen: "Hujachagua faili",
26540
- fileDragAreaPlaceholder: "Buruta na udondoshe faili hapa au bofya kitufe hapa chini na uchague faili ya kupakia.",
26654
+ filePlaceholder: "Buruta na udondoshe faili hapa au bofya kitufe hapa chini na uchague faili ya kupakia.",
26541
26655
  confirmDelete: "Je! Unataka kufuta rekodi?",
26542
26656
  keyDuplicationError: "Thamani hii inapaswa kuwa ya kipekee.",
26543
26657
  addColumn: "Ongeza Kolamu",
@@ -26566,8 +26680,8 @@ var swahiliStrings = {
26566
26680
  signaturePlaceHolder: "Ingia hapa",
26567
26681
  chooseFileCaption: "Chagua faili",
26568
26682
  takePhotoCaption: "Chukua Picha",
26569
- cameraPlaceHolder: "Bonyeza kitufe hapa chini ili kupiga picha kwa kutumia kamera.",
26570
- fileCameraDragAreaPlaceHolder: "Drag na kuacha au kuchagua faili kupakia au kuchukua picha kwa kutumia kamera.",
26683
+ photoPlaceholder: "Bonyeza kitufe hapa chini ili kupiga picha kwa kutumia kamera.",
26684
+ fileOrPhotoPlaceholder: "Drag na kuacha au kuchagua faili kupakia au kuchukua picha kwa kutumia kamera.",
26571
26685
  replaceFileCaption: "Badilisha faili",
26572
26686
  removeFileCaption: "Ondoa faili",
26573
26687
  booleanCheckedLabel: "Ndio",
@@ -26595,7 +26709,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["sw"]
26595
26709
  // ratingOptionsCaption: "Select..." => "Teua..."
26596
26710
  // minError: "The value should not be less than {0}" => "Thamani haipaswi kuwa chini ya {0}"
26597
26711
  // maxError: "The value should not be greater than {0}" => "Thamani haipaswi kuwa kubwa kuliko {0}"
26598
- // fileDragAreaPlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "Buruta na udondoshe faili hapa au bofya kitufe hapa chini na uchague faili ya kupakia."
26712
+ // filePlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "Buruta na udondoshe faili hapa au bofya kitufe hapa chini na uchague faili ya kupakia."
26599
26713
  // emptyRowsText: "There are no rows." => "Hakuna safu."
26600
26714
  // multipletext_itemname: "text" => "Ujumbe"
26601
26715
  // signaturePlaceHolder: "Sign here" => "Ingia hapa"
@@ -26609,8 +26723,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["sw"]
26609
26723
  // tagboxDoneButtonCaption: "OK" => "Sawa kabisa"
26610
26724
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Chaguzi zote zimeorodheshwa"
26611
26725
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Buruta na uache uchaguzi hapa ili kuziorodhesha"// takePhotoCaption: "Take Photo" => "Chukua Picha"
26612
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Bonyeza kitufe hapa chini ili kupiga picha kwa kutumia kamera."
26613
- // fileCameraDragAreaPlaceHolder: "Drag and drop or select a file to upload or take a photo using the camera." => "Drag na kuacha au kuchagua faili kupakia au kuchukua picha kwa kutumia kamera."
26726
+ // photoPlaceholder: "Click the button below to take a photo using the camera." => "Bonyeza kitufe hapa chini ili kupiga picha kwa kutumia kamera."
26727
+ // fileOrPhotoPlaceholder: "Drag and drop or select a file to upload or take a photo using the camera." => "Drag na kuacha au kuchagua faili kupakia au kuchukua picha kwa kutumia kamera."
26614
26728
  // replaceFileCaption: "Replace file" => "Badilisha faili"
26615
26729
 
26616
26730
 
@@ -26675,7 +26789,7 @@ var swedishSurveyStrings = {
26675
26789
  loadingFile: "Laddar...",
26676
26790
  chooseFile: "Välj fil(er) ...",
26677
26791
  noFileChosen: "Ingen fil vald",
26678
- fileDragAreaPlaceholder: "Dra och släpp en fil här eller klicka på knappen nedan och välj en fil att ladda upp.",
26792
+ filePlaceholder: "Dra och släpp en fil här eller klicka på knappen nedan och välj en fil att ladda upp.",
26679
26793
  confirmDelete: "Vill du radera posten?",
26680
26794
  keyDuplicationError: "Detta värde ska vara unikt.",
26681
26795
  addColumn: "Lägg till kolumn",
@@ -26704,8 +26818,8 @@ var swedishSurveyStrings = {
26704
26818
  signaturePlaceHolder: "Signera här",
26705
26819
  chooseFileCaption: "Välj fil",
26706
26820
  takePhotoCaption: "Ta foto",
26707
- cameraPlaceHolder: "Klicka på knappen nedan för att ta ett foto med kameran.",
26708
- fileCameraDragAreaPlaceHolder: "Dra och släpp eller välj en fil att ladda upp eller ta ett foto med kameran.",
26821
+ photoPlaceholder: "Klicka på knappen nedan för att ta ett foto med kameran.",
26822
+ fileOrPhotoPlaceholder: "Dra och släpp eller välj en fil att ladda upp eller ta ett foto med kameran.",
26709
26823
  replaceFileCaption: "Ersätt fil",
26710
26824
  removeFileCaption: "Ta bort den här filen",
26711
26825
  booleanCheckedLabel: "Ja",
@@ -26729,14 +26843,14 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["sv"]
26729
26843
  // The following strings have been translated by a machine translation service
26730
26844
  // Remove those strings that you have corrected manually
26731
26845
  // panelDynamicTabTextFormat: "Panel {panelIndex}" => "Panel {panelIndex}"
26732
- // fileDragAreaPlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "Dra och släpp en fil här eller klicka på knappen nedan och välj en fil att ladda upp."
26846
+ // filePlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "Dra och släpp en fil här eller klicka på knappen nedan och välj en fil att ladda upp."
26733
26847
  // emptyRowsText: "There are no rows." => "Det finns inga rader."
26734
26848
  // noEntriesReadonlyText: "There are no entries." => "Det finns inga poster."
26735
26849
  // tagboxDoneButtonCaption: "OK" => "OKEJ"
26736
26850
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Alla val rangordnas"
26737
26851
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Dra och släpp val här för att rangordna dem"// takePhotoCaption: "Take Photo" => "Ta foto"
26738
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Klicka på knappen nedan för att ta ett foto med kameran."
26739
- // fileCameraDragAreaPlaceHolder: "Drag and drop or select a file to upload or take a photo using the camera." => "Dra och släpp eller välj en fil att ladda upp eller ta ett foto med kameran."
26852
+ // photoPlaceholder: "Click the button below to take a photo using the camera." => "Klicka på knappen nedan för att ta ett foto med kameran."
26853
+ // fileOrPhotoPlaceholder: "Drag and drop or select a file to upload or take a photo using the camera." => "Dra och släpp eller välj en fil att ladda upp eller ta ett foto med kameran."
26740
26854
  // replaceFileCaption: "Replace file" => "Ersätt fil"
26741
26855
 
26742
26856
 
@@ -26802,7 +26916,7 @@ var tajikSurveyStrings = {
26802
26916
  loadingFile: "Боркунӣ...",
26803
26917
  chooseFile: "Файл(ҳо)-ро интихоб кунед...",
26804
26918
  // noFileChosen: "No file chosen",
26805
- // fileDragAreaPlaceholder: "Drop a file here or click the button below to load the file.",
26919
+ // filePlaceholder: "Drop a file here or click the button below to load the file.",
26806
26920
  confirmDelete: "Шумо мутмаин ҳастед, ки мехоҳед воридро тоза кунед?",
26807
26921
  keyDuplicationError: "Ин арзиш бояд беназир бошад.",
26808
26922
  addColumn: "Иловаи сутун",
@@ -26908,7 +27022,7 @@ var teluguStrings = {
26908
27022
  loadingFile: "లోడ్ అవుతున్నది",
26909
27023
  chooseFile: "ఫైళ్లను ఎన్నుకోండి",
26910
27024
  noFileChosen: "ఏ ఫైల్ ఎన్నుకో లేదు",
26911
- fileDragAreaPlaceholder: "ఇక్కడ ఒక ఫైల్ ను డ్రాగ్ చేసి డ్రాప్ చేయండి లేదా దిగువ బటన్ క్లిక్ చేయండి మరియు అప్ లోడ్ చేయడానికి ఫైల్ ఎంచుకోండి.",
27025
+ filePlaceholder: "ఇక్కడ ఒక ఫైల్ ను డ్రాగ్ చేసి డ్రాప్ చేయండి లేదా దిగువ బటన్ క్లిక్ చేయండి మరియు అప్ లోడ్ చేయడానికి ఫైల్ ఎంచుకోండి.",
26912
27026
  confirmDelete: "మీరు రికార్డులను తొలగించాలని అనుకుంటున్నారా",
26913
27027
  keyDuplicationError: "విలువ ప్రత్యేకంగా ఉండాలి",
26914
27028
  addColumn: "కాలం చేర్పించండి",
@@ -26937,8 +27051,8 @@ var teluguStrings = {
26937
27051
  signaturePlaceHolder: "ఇక్కడ సంతకం చేయండి",
26938
27052
  chooseFileCaption: "ఫైల్ ఎంచుకోండి",
26939
27053
  takePhotoCaption: "ఫోటో తీసుకోండి",
26940
- cameraPlaceHolder: "కెమెరాను ఉపయోగించి ఫోటో తీయడానికి దిగువ బటన్ మీద క్లిక్ చేయండి.",
26941
- fileCameraDragAreaPlaceHolder: "కెమెరాను ఉపయోగించి ఫోటోను అప్ లోడ్ చేయడానికి లేదా తీయడానికి ఫైల్ ను డ్రాగ్ మరియు డ్రాప్ చేయండి లేదా ఎంచుకోండి.",
27054
+ photoPlaceholder: "కెమెరాను ఉపయోగించి ఫోటో తీయడానికి దిగువ బటన్ మీద క్లిక్ చేయండి.",
27055
+ fileOrPhotoPlaceholder: "కెమెరాను ఉపయోగించి ఫోటోను అప్ లోడ్ చేయడానికి లేదా తీయడానికి ఫైల్ ను డ్రాగ్ మరియు డ్రాప్ చేయండి లేదా ఎంచుకోండి.",
26942
27056
  replaceFileCaption: "ఫైలు మార్చండి",
26943
27057
  removeFileCaption: "ఈ ఫైల్ తీసేయండి",
26944
27058
  booleanCheckedLabel: "అవును",
@@ -26967,7 +27081,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["tel"
26967
27081
  // ratingOptionsCaption: "Select..." => "ఎంచు..."
26968
27082
  // minError: "The value should not be less than {0}" => "విలువ {0} కంటే తక్కువగా ఉండకూడదు."
26969
27083
  // maxError: "The value should not be greater than {0}" => "విలువ {0} కంటే ఎక్కువ ఉండకూడదు."
26970
- // fileDragAreaPlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "ఇక్కడ ఒక ఫైల్ ను డ్రాగ్ చేసి డ్రాప్ చేయండి లేదా దిగువ బటన్ క్లిక్ చేయండి మరియు అప్ లోడ్ చేయడానికి ఫైల్ ఎంచుకోండి."
27084
+ // filePlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "ఇక్కడ ఒక ఫైల్ ను డ్రాగ్ చేసి డ్రాప్ చేయండి లేదా దిగువ బటన్ క్లిక్ చేయండి మరియు అప్ లోడ్ చేయడానికి ఫైల్ ఎంచుకోండి."
26971
27085
  // emptyRowsText: "There are no rows." => "వరుసలు లేవు."
26972
27086
  // multipletext_itemname: "text" => "వచనం"
26973
27087
  // signaturePlaceHolder: "Sign here" => "ఇక్కడ సంతకం చేయండి"
@@ -26981,8 +27095,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["tel"
26981
27095
  // tagboxDoneButtonCaption: "OK" => "సరే"
26982
27096
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "అన్ని ఎంపికలు ర్యాంక్ చేయబడతాయి"
26983
27097
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "వాటిని ర్యాంక్ చేయడం కొరకు ఎంపికలను ఇక్కడ డ్రాగ్ మరియు డ్రాప్ చేయండి"// takePhotoCaption: "Take Photo" => "ఫోటో తీసుకోండి"
26984
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "కెమెరాను ఉపయోగించి ఫోటో తీయడానికి దిగువ బటన్ మీద క్లిక్ చేయండి."
26985
- // fileCameraDragAreaPlaceHolder: "Drag and drop or select a file to upload or take a photo using the camera." => "కెమెరాను ఉపయోగించి ఫోటోను అప్ లోడ్ చేయడానికి లేదా తీయడానికి ఫైల్ ను డ్రాగ్ మరియు డ్రాప్ చేయండి లేదా ఎంచుకోండి."
27098
+ // photoPlaceholder: "Click the button below to take a photo using the camera." => "కెమెరాను ఉపయోగించి ఫోటో తీయడానికి దిగువ బటన్ మీద క్లిక్ చేయండి."
27099
+ // fileOrPhotoPlaceholder: "Drag and drop or select a file to upload or take a photo using the camera." => "కెమెరాను ఉపయోగించి ఫోటోను అప్ లోడ్ చేయడానికి లేదా తీయడానికి ఫైల్ ను డ్రాగ్ మరియు డ్రాప్ చేయండి లేదా ఎంచుకోండి."
26986
27100
  // replaceFileCaption: "Replace file" => "ఫైలు మార్చండి"
26987
27101
 
26988
27102
 
@@ -27047,7 +27161,7 @@ var thaiStrings = {
27047
27161
  loadingFile: "กำลังโหลด...",
27048
27162
  chooseFile: "เลือกไฟล์...",
27049
27163
  noFileChosen: "ไม่ไฟล์ที่เลือก",
27050
- fileDragAreaPlaceholder: "ลากและวางไฟล์ที่นี่หรือคลิกปุ่มด้านล่างและเลือกไฟล์ที่จะอัปโหลด",
27164
+ filePlaceholder: "ลากและวางไฟล์ที่นี่หรือคลิกปุ่มด้านล่างและเลือกไฟล์ที่จะอัปโหลด",
27051
27165
  confirmDelete: "คุณต้องการลบรายการนี้จริงหรือไม่?",
27052
27166
  keyDuplicationError: "ข้อมูลนี้ต้องเป็น unique.",
27053
27167
  addColumn: "เพิ่มคอลัมน์",
@@ -27076,8 +27190,8 @@ var thaiStrings = {
27076
27190
  signaturePlaceHolder: "ลงชื่อที่นี่",
27077
27191
  chooseFileCaption: "เลือกไฟล์",
27078
27192
  takePhotoCaption: "ถ่ายรูป",
27079
- cameraPlaceHolder: "คลิกปุ่มด้านล่างเพื่อถ่ายภาพโดยใช้กล้อง",
27080
- fileCameraDragAreaPlaceHolder: "ลากและวางหรือเลือกไฟล์ที่จะอัปโหลดหรือถ่ายภาพโดยใช้กล้อง",
27193
+ photoPlaceholder: "คลิกปุ่มด้านล่างเพื่อถ่ายภาพโดยใช้กล้อง",
27194
+ fileOrPhotoPlaceholder: "ลากและวางหรือเลือกไฟล์ที่จะอัปโหลดหรือถ่ายภาพโดยใช้กล้อง",
27081
27195
  replaceFileCaption: "แทนที่ไฟล์",
27082
27196
  removeFileCaption: "นำไฟล์นี้ออก",
27083
27197
  booleanCheckedLabel: "ใช่",
@@ -27105,7 +27219,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["th"]
27105
27219
  // ratingOptionsCaption: "Select..." => "เลือก "
27106
27220
  // minError: "The value should not be less than {0}" => "ค่าไม่ควรน้อยกว่า {0}"
27107
27221
  // maxError: "The value should not be greater than {0}" => "ค่าไม่ควรเกิน{0}"
27108
- // fileDragAreaPlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "ลากและวางไฟล์ที่นี่หรือคลิกปุ่มด้านล่างและเลือกไฟล์ที่จะอัปโหลด"
27222
+ // filePlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "ลากและวางไฟล์ที่นี่หรือคลิกปุ่มด้านล่างและเลือกไฟล์ที่จะอัปโหลด"
27109
27223
  // emptyRowsText: "There are no rows." => "ไม่มีแถว"
27110
27224
  // multipletext_itemname: "text" => "ข้อความ"
27111
27225
  // signaturePlaceHolder: "Sign here" => "ลงชื่อที่นี่"
@@ -27119,8 +27233,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["th"]
27119
27233
  // tagboxDoneButtonCaption: "OK" => "ตกลง, ได้"
27120
27234
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "ตัวเลือกทั้งหมดจะถูกจัดอันดับ"
27121
27235
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "ลากและวางตัวเลือกที่นี่เพื่อจัดอันดับ"// takePhotoCaption: "Take Photo" => "ถ่ายรูป"
27122
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "คลิกปุ่มด้านล่างเพื่อถ่ายภาพโดยใช้กล้อง"
27123
- // fileCameraDragAreaPlaceHolder: "Drag and drop or select a file to upload or take a photo using the camera." => "ลากและวางหรือเลือกไฟล์ที่จะอัปโหลดหรือถ่ายภาพโดยใช้กล้อง"
27236
+ // photoPlaceholder: "Click the button below to take a photo using the camera." => "คลิกปุ่มด้านล่างเพื่อถ่ายภาพโดยใช้กล้อง"
27237
+ // fileOrPhotoPlaceholder: "Drag and drop or select a file to upload or take a photo using the camera." => "ลากและวางหรือเลือกไฟล์ที่จะอัปโหลดหรือถ่ายภาพโดยใช้กล้อง"
27124
27238
  // replaceFileCaption: "Replace file" => "แทนที่ไฟล์"
27125
27239
 
27126
27240
 
@@ -27185,7 +27299,7 @@ var traditionalChineseSurveyStrings = {
27185
27299
  loadingFile: "裝載。。。",
27186
27300
  chooseFile: "選擇檔案...",
27187
27301
  noFileChosen: "未選擇任何檔",
27188
- fileDragAreaPlaceholder: "將檔案拖放到此處或按下下面的按鈕並選擇要上傳的檔。",
27302
+ filePlaceholder: "將檔案拖放到此處或按下下面的按鈕並選擇要上傳的檔。",
27189
27303
  confirmDelete: "是否要刪除記錄?",
27190
27304
  keyDuplicationError: "此值應該是唯一的。",
27191
27305
  addColumn: "添加列",
@@ -27214,8 +27328,8 @@ var traditionalChineseSurveyStrings = {
27214
27328
  signaturePlaceHolder: "在此簽名",
27215
27329
  chooseFileCaption: "選擇檔案",
27216
27330
  takePhotoCaption: "拍照",
27217
- cameraPlaceHolder: "按下下面的按鈕使用相機拍照。",
27218
- fileCameraDragAreaPlaceHolder: "拖放或選擇要上傳的檔或使用相機拍攝照片。",
27331
+ photoPlaceholder: "按下下面的按鈕使用相機拍照。",
27332
+ fileOrPhotoPlaceholder: "拖放或選擇要上傳的檔或使用相機拍攝照片。",
27219
27333
  replaceFileCaption: "替換檔",
27220
27334
  removeFileCaption: "刪除此檔",
27221
27335
  booleanCheckedLabel: "是的",
@@ -27257,7 +27371,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["zh-t
27257
27371
  // loadingFile: "Loading..." => "裝載。。。"
27258
27372
  // chooseFile: "Choose file(s)..." => "選擇檔案..."
27259
27373
  // noFileChosen: "No file chosen" => "未選擇任何檔"
27260
- // fileDragAreaPlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "將檔案拖放到此處或按下下面的按鈕並選擇要上傳的檔。"
27374
+ // filePlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "將檔案拖放到此處或按下下面的按鈕並選擇要上傳的檔。"
27261
27375
  // confirmDelete: "Do you want to delete the record?" => "是否要刪除記錄?"
27262
27376
  // keyDuplicationError: "This value should be unique." => "此值應該是唯一的。"
27263
27377
  // addColumn: "Add Column" => "添加列"
@@ -27292,8 +27406,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["zh-t
27292
27406
  // tagboxDoneButtonCaption: "OK" => "還行"
27293
27407
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "所有選擇均已排名"
27294
27408
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "將選項拖放到此處進行排名"// takePhotoCaption: "Take Photo" => "拍照"
27295
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "按下下面的按鈕使用相機拍照。"
27296
- // fileCameraDragAreaPlaceHolder: "Drag and drop or select a file to upload or take a photo using the camera." => "拖放或選擇要上傳的檔或使用相機拍攝照片。"
27409
+ // photoPlaceholder: "Click the button below to take a photo using the camera." => "按下下面的按鈕使用相機拍照。"
27410
+ // fileOrPhotoPlaceholder: "Drag and drop or select a file to upload or take a photo using the camera." => "拖放或選擇要上傳的檔或使用相機拍攝照片。"
27297
27411
  // replaceFileCaption: "Replace file" => "替換檔"
27298
27412
 
27299
27413
 
@@ -27358,7 +27472,7 @@ var turkishSurveyStrings = {
27358
27472
  loadingFile: "Yükleniyor...",
27359
27473
  chooseFile: "Dosyaları seçin...",
27360
27474
  noFileChosen: "Dosya seçili değil",
27361
- fileDragAreaPlaceholder: "Buraya bir dosya bırakın veya dosyayı yüklemek için aşağıdaki düğmeyi tıklayın.",
27475
+ filePlaceholder: "Buraya bir dosya bırakın veya dosyayı yüklemek için aşağıdaki düğmeyi tıklayın.",
27362
27476
  confirmDelete: "Kaydı silmek istiyor musunuz?",
27363
27477
  keyDuplicationError: "Bu değer benzersiz olmalıdır.",
27364
27478
  addColumn: "Sütun Ekle",
@@ -27387,8 +27501,8 @@ var turkishSurveyStrings = {
27387
27501
  signaturePlaceHolder: "Burayı imzalayın",
27388
27502
  chooseFileCaption: "Dosya seçin",
27389
27503
  takePhotoCaption: "Fotoğraf Çekin",
27390
- cameraPlaceHolder: "Kamerayı kullanarak fotoğraf çekmek için aşağıdaki düğmeyi tıklayın.",
27391
- fileCameraDragAreaPlaceHolder: "Kamerayı kullanarak fotoğraf yüklemek veya fotoğraf çekmek için bir dosyayı sürükleyip bırakın veya seçin.",
27504
+ photoPlaceholder: "Kamerayı kullanarak fotoğraf çekmek için aşağıdaki düğmeyi tıklayın.",
27505
+ fileOrPhotoPlaceholder: "Kamerayı kullanarak fotoğraf yüklemek veya fotoğraf çekmek için bir dosyayı sürükleyip bırakın veya seçin.",
27392
27506
  replaceFileCaption: "Dosyayı değiştir",
27393
27507
  removeFileCaption: "Bu dosyayı kaldır",
27394
27508
  booleanCheckedLabel: "Evet",
@@ -27412,8 +27526,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["tr"]
27412
27526
  // The following strings have been translated by a machine translation service
27413
27527
  // Remove those strings that you have corrected manually
27414
27528
  // takePhotoCaption: "Take Photo" => "Fotoğraf Çekin"
27415
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Kamerayı kullanarak fotoğraf çekmek için aşağıdaki düğmeyi tıklayın."
27416
- // fileCameraDragAreaPlaceHolder: "Drag and drop or select a file to upload or take a photo using the camera." => "Kamerayı kullanarak fotoğraf yüklemek veya fotoğraf çekmek için bir dosyayı sürükleyip bırakın veya seçin."
27529
+ // photoPlaceholder: "Click the button below to take a photo using the camera." => "Kamerayı kullanarak fotoğraf çekmek için aşağıdaki düğmeyi tıklayın."
27530
+ // fileOrPhotoPlaceholder: "Drag and drop or select a file to upload or take a photo using the camera." => "Kamerayı kullanarak fotoğraf yüklemek veya fotoğraf çekmek için bir dosyayı sürükleyip bırakın veya seçin."
27417
27531
  // replaceFileCaption: "Replace file" => "Dosyayı değiştir"
27418
27532
 
27419
27533
 
@@ -27478,7 +27592,7 @@ var ukrainianSurveyStrings = {
27478
27592
  loadingFile: "Завантаження...",
27479
27593
  chooseFile: "Виберіть файл(и)...",
27480
27594
  noFileChosen: "Файл не вибрано",
27481
- fileDragAreaPlaceholder: "Перетягніть файл сюди або натисніть кнопку нижче та виберіть файл для завантаження.",
27595
+ filePlaceholder: "Перетягніть файл сюди або натисніть кнопку нижче та виберіть файл для завантаження.",
27482
27596
  confirmDelete: "Ви хочете видалити запис?",
27483
27597
  keyDuplicationError: "Це значення повинно бути унікальним.",
27484
27598
  addColumn: "Додати колонку",
@@ -27507,8 +27621,8 @@ var ukrainianSurveyStrings = {
27507
27621
  signaturePlaceHolder: "Підпишіться тут",
27508
27622
  chooseFileCaption: "Виберіть файл",
27509
27623
  takePhotoCaption: "Зробити фото",
27510
- cameraPlaceHolder: "Натисніть кнопку нижче, щоб зробити фото за допомогою камери.",
27511
- fileCameraDragAreaPlaceHolder: "Перетягніть або виберіть файл, щоб завантажити або зробити фотографію за допомогою камери.",
27624
+ photoPlaceholder: "Натисніть кнопку нижче, щоб зробити фото за допомогою камери.",
27625
+ fileOrPhotoPlaceholder: "Перетягніть або виберіть файл, щоб завантажити або зробити фотографію за допомогою камери.",
27512
27626
  replaceFileCaption: "Замінити файл",
27513
27627
  removeFileCaption: "Видалити файл",
27514
27628
  booleanCheckedLabel: "Так",
@@ -27536,7 +27650,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ua"]
27536
27650
  // ratingOptionsCaption: "Select..." => "Виберіть..."
27537
27651
  // minError: "The value should not be less than {0}" => "Значення не повинно бути менше {0}"
27538
27652
  // maxError: "The value should not be greater than {0}" => "Значення не повинно бути більше {0}"
27539
- // fileDragAreaPlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "Перетягніть файл сюди або натисніть кнопку нижче та виберіть файл для завантаження."
27653
+ // filePlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "Перетягніть файл сюди або натисніть кнопку нижче та виберіть файл для завантаження."
27540
27654
  // emptyRowsText: "There are no rows." => "Рядів немає."
27541
27655
  // multipletext_itemname: "text" => "Текст"
27542
27656
  // signaturePlaceHolder: "Sign here" => "Підпишіться тут"
@@ -27550,8 +27664,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ua"]
27550
27664
  // tagboxDoneButtonCaption: "OK" => "ГАРАЗД"
27551
27665
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Всі варіанти ранжуються"
27552
27666
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Перетягніть варіанти тут, щоб оцінити їх"// takePhotoCaption: "Take Photo" => "Зробити фото"
27553
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Натисніть кнопку нижче, щоб зробити фото за допомогою камери."
27554
- // fileCameraDragAreaPlaceHolder: "Drag and drop or select a file to upload or take a photo using the camera." => "Перетягніть або виберіть файл, щоб завантажити або зробити фотографію за допомогою камери."
27667
+ // photoPlaceholder: "Click the button below to take a photo using the camera." => "Натисніть кнопку нижче, щоб зробити фото за допомогою камери."
27668
+ // fileOrPhotoPlaceholder: "Drag and drop or select a file to upload or take a photo using the camera." => "Перетягніть або виберіть файл, щоб завантажити або зробити фотографію за допомогою камери."
27555
27669
  // replaceFileCaption: "Replace file" => "Замінити файл"
27556
27670
 
27557
27671
 
@@ -27616,7 +27730,7 @@ var vietnameseSurveyStrings = {
27616
27730
  loadingFile: "Đang tải...",
27617
27731
  chooseFile: "Chọn các tập tin...",
27618
27732
  noFileChosen: "Không có tập tin nào được chọn",
27619
- fileDragAreaPlaceholder: "Kéo và thả tệp vào đây hoặc nhấp vào nút bên dưới và chọn tệp để tải lên.",
27733
+ filePlaceholder: "Kéo và thả tệp vào đây hoặc nhấp vào nút bên dưới và chọn tệp để tải lên.",
27620
27734
  confirmDelete: "Bạn muốn xóa dòng này?",
27621
27735
  keyDuplicationError: "Giá trị này không nên bị trùng lặp.",
27622
27736
  addColumn: "Thêm cột",
@@ -27645,8 +27759,8 @@ var vietnameseSurveyStrings = {
27645
27759
  signaturePlaceHolder: "Ký tên tại đây",
27646
27760
  chooseFileCaption: "Chọn tập tin",
27647
27761
  takePhotoCaption: "Chụp ảnh",
27648
- cameraPlaceHolder: "Nhấp vào nút bên dưới để chụp ảnh bằng máy ảnh.",
27649
- fileCameraDragAreaPlaceHolder: "Kéo và thả hoặc chọn tệp để tải lên hoặc chụp ảnh bằng máy ảnh.",
27762
+ photoPlaceholder: "Nhấp vào nút bên dưới để chụp ảnh bằng máy ảnh.",
27763
+ fileOrPhotoPlaceholder: "Kéo và thả hoặc chọn tệp để tải lên hoặc chụp ảnh bằng máy ảnh.",
27650
27764
  replaceFileCaption: "Thay thế tập tin",
27651
27765
  removeFileCaption: "Xóa tập tin",
27652
27766
  booleanCheckedLabel: "Có",
@@ -27675,7 +27789,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["vi"]
27675
27789
  // ratingOptionsCaption: "Select..." => "Lựa..."
27676
27790
  // minError: "The value should not be less than {0}" => "Giá trị không được nhỏ hơn {0}"
27677
27791
  // maxError: "The value should not be greater than {0}" => "Giá trị không được lớn hơn {0}"
27678
- // fileDragAreaPlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "Kéo và thả tệp vào đây hoặc nhấp vào nút bên dưới và chọn tệp để tải lên."
27792
+ // filePlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "Kéo và thả tệp vào đây hoặc nhấp vào nút bên dưới và chọn tệp để tải lên."
27679
27793
  // emptyRowsText: "There are no rows." => "Không có hàng."
27680
27794
  // multipletext_itemname: "text" => "Nhắn tin"
27681
27795
  // signaturePlaceHolder: "Sign here" => "Ký tên tại đây"
@@ -27689,8 +27803,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["vi"]
27689
27803
  // tagboxDoneButtonCaption: "OK" => "OK"
27690
27804
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Tất cả các lựa chọn được xếp hạng"
27691
27805
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Kéo và thả các lựa chọn vào đây để xếp hạng chúng"// takePhotoCaption: "Take Photo" => "Chụp ảnh"
27692
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Nhấp vào nút bên dưới để chụp ảnh bằng máy ảnh."
27693
- // fileCameraDragAreaPlaceHolder: "Drag and drop or select a file to upload or take a photo using the camera." => "Kéo và thả hoặc chọn tệp để tải lên hoặc chụp ảnh bằng máy ảnh."
27806
+ // photoPlaceholder: "Click the button below to take a photo using the camera." => "Nhấp vào nút bên dưới để chụp ảnh bằng máy ảnh."
27807
+ // fileOrPhotoPlaceholder: "Drag and drop or select a file to upload or take a photo using the camera." => "Kéo và thả hoặc chọn tệp để tải lên hoặc chụp ảnh bằng máy ảnh."
27694
27808
  // replaceFileCaption: "Replace file" => "Thay thế tập tin"
27695
27809
 
27696
27810
 
@@ -27755,7 +27869,7 @@ var welshSurveyStrings = {
27755
27869
  loadingFile: "Wrthi’n llwytho...",
27756
27870
  chooseFile: "Dewiswch ffeil(iau)...",
27757
27871
  noFileChosen: "Heb ddewis ffeil ",
27758
- fileDragAreaPlaceholder: "Llusgwch a gollwng ffeil yma neu cliciwch y botwm isod a dewiswch ffeil i'w lanlwytho.",
27872
+ filePlaceholder: "Llusgwch a gollwng ffeil yma neu cliciwch y botwm isod a dewiswch ffeil i'w lanlwytho.",
27759
27873
  confirmDelete: "Ydych chi am ddileu’r cofnod?",
27760
27874
  keyDuplicationError: "Dylai’r gwerth hwn fod yn unigryw.",
27761
27875
  addColumn: "Ychwanegu colofn ",
@@ -27784,8 +27898,8 @@ var welshSurveyStrings = {
27784
27898
  signaturePlaceHolder: "Arwydd yma",
27785
27899
  chooseFileCaption: "Dewiswch ffeil ",
27786
27900
  takePhotoCaption: "Tynnu Llun",
27787
- cameraPlaceHolder: "Cliciwch y botwm isod i dynnu llun gan ddefnyddio'r camera.",
27788
- fileCameraDragAreaPlaceHolder: "Llusgwch a gollwng neu dewiswch ffeil i lanlwytho neu dynnu llun gan ddefnyddio'r camera.",
27901
+ photoPlaceholder: "Cliciwch y botwm isod i dynnu llun gan ddefnyddio'r camera.",
27902
+ fileOrPhotoPlaceholder: "Llusgwch a gollwng neu dewiswch ffeil i lanlwytho neu dynnu llun gan ddefnyddio'r camera.",
27789
27903
  replaceFileCaption: "Amnewid ffeil",
27790
27904
  removeFileCaption: "Tynnu’r ffeil hon ",
27791
27905
  booleanCheckedLabel: "Iawn",
@@ -27813,7 +27927,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["cy"]
27813
27927
  // ratingOptionsCaption: "Select..." => "Dewis..."
27814
27928
  // minError: "The value should not be less than {0}" => "Ni ddylai'r gwerth fod yn llai na {0}"
27815
27929
  // maxError: "The value should not be greater than {0}" => "Ni ddylai'r gwerth fod yn fwy na {0}"
27816
- // fileDragAreaPlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "Llusgwch a gollwng ffeil yma neu cliciwch y botwm isod a dewiswch ffeil i'w lanlwytho."
27930
+ // filePlaceholder: "Drag and drop a file here or click the button below and choose a file to upload." => "Llusgwch a gollwng ffeil yma neu cliciwch y botwm isod a dewiswch ffeil i'w lanlwytho."
27817
27931
  // emptyRowsText: "There are no rows." => "Nid oes unrhyw ffraeau."
27818
27932
  // multipletext_itemname: "text" => "Testun"
27819
27933
  // signaturePlaceHolder: "Sign here" => "Arwydd yma"
@@ -27827,8 +27941,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["cy"]
27827
27941
  // tagboxDoneButtonCaption: "OK" => "OCÊ"
27828
27942
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Mae'r holl ddewisiadau yn cael eu rhestru"
27829
27943
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Dewisiadau llusgo a gollwng yma i'w graddio"// takePhotoCaption: "Take Photo" => "Tynnu Llun"
27830
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Cliciwch y botwm isod i dynnu llun gan ddefnyddio'r camera."
27831
- // fileCameraDragAreaPlaceHolder: "Drag and drop or select a file to upload or take a photo using the camera." => "Llusgwch a gollwng neu dewiswch ffeil i lanlwytho neu dynnu llun gan ddefnyddio'r camera."
27944
+ // photoPlaceholder: "Click the button below to take a photo using the camera." => "Cliciwch y botwm isod i dynnu llun gan ddefnyddio'r camera."
27945
+ // fileOrPhotoPlaceholder: "Drag and drop or select a file to upload or take a photo using the camera." => "Llusgwch a gollwng neu dewiswch ffeil i lanlwytho neu dynnu llun gan ddefnyddio'r camera."
27832
27946
  // replaceFileCaption: "Replace file" => "Amnewid ffeil"
27833
27947
 
27834
27948
 
@@ -28531,7 +28645,7 @@ var PageModel = /** @class */ (function (_super) {
28531
28645
  };
28532
28646
  Object.defineProperty(PageModel.prototype, "navigationTitle", {
28533
28647
  /**
28534
- * A caption displayed on a navigation button in the TOC or progress bar. Applies when [`showTOC`](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#showTOC) is `true` or when [`showProgressBar`](https://surveyjs.io/form-library/documentation/surveymodel#showProgressBar) is `true` and [`progressBarType`](https://surveyjs.io/form-library/documentation/surveymodel#progressBarType) is `"buttons"`.
28648
+ * A caption displayed on a navigation button in the TOC or progress bar. Applies when [`showTOC`](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#showTOC) is `true` or when the [progress bar is visible](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#showProgressBar) and [`progressBarType`](https://surveyjs.io/form-library/documentation/surveymodel#progressBarType) is set to `"buttons"`.
28535
28649
  *
28536
28650
  * If navigation titles are unspecified, the navigation buttons display page [titles](https://surveyjs.io/form-library/documentation/api-reference/page-model#title) or [names](https://surveyjs.io/form-library/documentation/pagemodel#name).
28537
28651
  */
@@ -28552,6 +28666,9 @@ var PageModel = /** @class */ (function (_super) {
28552
28666
  configurable: true
28553
28667
  });
28554
28668
  Object.defineProperty(PageModel.prototype, "navigationDescription", {
28669
+ /**
28670
+ * Explanatory text displayed under a navigation button in the progress bar. Applies when the [progress bar is visible](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#showProgressBar) and `SurveyModel`'s [`progressBarType`](https://surveyjs.io/form-library/documentation/surveymodel#progressBarType) property is set to `"buttons"`.
28671
+ */
28555
28672
  get: function () {
28556
28673
  return this.getLocalizableStringText("navigationDescription");
28557
28674
  },
@@ -32553,6 +32670,7 @@ var PopupDropdownViewModel = /** @class */ (function (_super) {
32553
32670
  PopupDropdownViewModel.prototype.getStyleClass = function () {
32554
32671
  return _super.prototype.getStyleClass.call(this)
32555
32672
  .append("sv-popup--dropdown", !this.isOverlay)
32673
+ .append("sv-popup--dropdown-overlay", this.isOverlay && this.model.overlayDisplayMode !== "overlay")
32556
32674
  .append("sv-popup--tablet", this.isTablet && this.isOverlay)
32557
32675
  .append("sv-popup--show-pointer", !this.isOverlay && this.showHeader)
32558
32676
  .append("sv-popup--" + this.popupDirection, !this.isOverlay && this.showHeader);
@@ -33695,6 +33813,9 @@ var PopupModel = /** @class */ (function (_super) {
33695
33813
  __decorate([
33696
33814
  Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])({ defaultValue: "" })
33697
33815
  ], PopupModel.prototype, "title", void 0);
33816
+ __decorate([
33817
+ Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])({ defaultValue: "auto" })
33818
+ ], PopupModel.prototype, "overlayDisplayMode", void 0);
33698
33819
  __decorate([
33699
33820
  Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])({ defaultValue: "popup" })
33700
33821
  ], PopupModel.prototype, "displayMode", void 0);
@@ -33788,6 +33909,7 @@ var TriggerExpressionInfo = /** @class */ (function () {
33788
33909
  this.name = name;
33789
33910
  this.canRun = canRun;
33790
33911
  this.doComplete = doComplete;
33912
+ this.runSecondCheck = function (keys) { return false; };
33791
33913
  }
33792
33914
  return TriggerExpressionInfo;
33793
33915
  }());
@@ -33799,6 +33921,7 @@ var Question = /** @class */ (function (_super) {
33799
33921
  function Question(name) {
33800
33922
  var _this = _super.call(this, name) || this;
33801
33923
  _this.customWidgetData = { isNeedRender: true };
33924
+ _this.hasCssErrorCallback = function () { return false; };
33802
33925
  _this.isReadyValue = true;
33803
33926
  _this.dependedQuestions = [];
33804
33927
  /**
@@ -33836,7 +33959,8 @@ var Question = /** @class */ (function (_super) {
33836
33959
  _this.clearValue();
33837
33960
  _this.updateValueWithDefaults();
33838
33961
  });
33839
- _this.addTriggerInfo("setValueIf", function () { return true; }, function () { return _this.runSetValueExpression(); });
33962
+ var setValueIfInfo = _this.addTriggerInfo("setValueIf", function () { return true; }, function () { return _this.runSetValueExpression(); });
33963
+ setValueIfInfo.runSecondCheck = function (keys) { return _this.checkExpressionIf(keys); };
33840
33964
  _this.registerPropertyChangedHandlers(["width"], function () {
33841
33965
  _this.updateQuestionCss();
33842
33966
  if (!!_this.parent) {
@@ -33856,7 +33980,7 @@ var Question = /** @class */ (function (_super) {
33856
33980
  _this.registerPropertyChangedHandlers(["showCommentArea", "showOtherItem"], function () {
33857
33981
  _this.initCommentFromSurvey();
33858
33982
  });
33859
- _this.registerFunctionOnPropertiesValueChanged(["no", "readOnly"], function () {
33983
+ _this.registerFunctionOnPropertiesValueChanged(["no", "readOnly", "hasVisibleErrors", "containsErrors"], function () {
33860
33984
  _this.updateQuestionCss();
33861
33985
  });
33862
33986
  _this.registerPropertyChangedHandlers(["isMobile"], function () { _this.onMobileChanged(); });
@@ -33877,6 +34001,7 @@ var Question = /** @class */ (function (_super) {
33877
34001
  Question.prototype.setIsMobile = function (val) {
33878
34002
  this.isMobile = val && (this.allowMobileInDesignMode() || !this.isDesignMode);
33879
34003
  };
34004
+ Question.prototype.themeChanged = function (theme) { };
33880
34005
  Question.prototype.createLocTitleProperty = function () {
33881
34006
  var _this = this;
33882
34007
  var locTitleValue = _super.prototype.createLocTitleProperty.call(this);
@@ -34288,33 +34413,50 @@ var Question = /** @class */ (function (_super) {
34288
34413
  requiredAnsweredQuestionCount: !this.isEmpty() && this.isRequired ? 1 : 0,
34289
34414
  };
34290
34415
  };
34291
- Question.prototype.runSetValueExpression = function () {
34416
+ Question.prototype.ensureSetValueExpressionRunner = function () {
34292
34417
  var _this = this;
34418
+ if (!this.setValueExpressionRunner) {
34419
+ this.setValueExpressionRunner = new _conditions__WEBPACK_IMPORTED_MODULE_6__["ExpressionRunner"](this.setValueExpression);
34420
+ this.setValueExpressionRunner.onRunComplete = function (res) {
34421
+ if (!_this.isTwoValueEquals(_this.value, res)) {
34422
+ _this.value = res;
34423
+ }
34424
+ };
34425
+ }
34426
+ else {
34427
+ this.setValueExpressionRunner.expression = this.setValueExpression;
34428
+ }
34429
+ };
34430
+ Question.prototype.runSetValueExpression = function () {
34293
34431
  if (!this.setValueExpression) {
34294
34432
  this.clearValue();
34295
34433
  }
34296
34434
  else {
34297
- if (!this.setValueExpressionRunner) {
34298
- this.setValueExpressionRunner = new _conditions__WEBPACK_IMPORTED_MODULE_6__["ExpressionRunner"](this.setValueExpression);
34299
- this.setValueExpressionRunner.onRunComplete = function (res) {
34300
- if (!_this.isTwoValueEquals(_this.value, res)) {
34301
- _this.value = res;
34302
- }
34303
- };
34304
- }
34305
- else {
34306
- this.setValueExpressionRunner.expression = this.setValueExpression;
34307
- }
34435
+ this.ensureSetValueExpressionRunner();
34308
34436
  this.setValueExpressionRunner.run(this.getDataFilteredValues(), this.getDataFilteredProperties());
34309
34437
  }
34310
34438
  };
34439
+ Question.prototype.checkExpressionIf = function (keys) {
34440
+ this.ensureSetValueExpressionRunner();
34441
+ if (!this.setValueExpressionRunner)
34442
+ return false;
34443
+ return new _conditionProcessValue__WEBPACK_IMPORTED_MODULE_13__["ProcessValue"]().isAnyKeyChanged(keys, this.setValueExpressionRunner.getVariables());
34444
+ };
34311
34445
  Question.prototype.addTriggerInfo = function (name, canRun, doComplete) {
34312
- this.triggersInfo.push(new TriggerExpressionInfo(name, canRun, doComplete));
34446
+ var info = new TriggerExpressionInfo(name, canRun, doComplete);
34447
+ this.triggersInfo.push(info);
34448
+ return info;
34313
34449
  };
34314
34450
  Question.prototype.runTriggerInfo = function (info, name, value) {
34315
34451
  var expression = this[info.name];
34316
- if (!expression || info.isRunning || !info.canRun())
34452
+ var keys = {};
34453
+ keys[name] = value;
34454
+ if (!expression || info.isRunning || !info.canRun()) {
34455
+ if (info.runSecondCheck(keys)) {
34456
+ info.doComplete();
34457
+ }
34317
34458
  return;
34459
+ }
34318
34460
  if (!info.runner) {
34319
34461
  info.runner = new _conditions__WEBPACK_IMPORTED_MODULE_6__["ExpressionRunner"](expression);
34320
34462
  info.runner.onRunComplete = function (res) {
@@ -34327,9 +34469,7 @@ var Question = /** @class */ (function (_super) {
34327
34469
  else {
34328
34470
  info.runner.expression = expression;
34329
34471
  }
34330
- var keys = {};
34331
- keys[name] = value;
34332
- if (!new _conditionProcessValue__WEBPACK_IMPORTED_MODULE_13__["ProcessValue"]().isAnyKeyChanged(keys, info.runner.getVariables()))
34472
+ if (!new _conditionProcessValue__WEBPACK_IMPORTED_MODULE_13__["ProcessValue"]().isAnyKeyChanged(keys, info.runner.getVariables()) && !info.runSecondCheck(keys))
34333
34473
  return;
34334
34474
  info.isRunning = true;
34335
34475
  info.runner.run(this.getDataFilteredValues(), this.getDataFilteredProperties());
@@ -34870,13 +35010,19 @@ var Question = /** @class */ (function (_super) {
34870
35010
  this.setPropertyValue("cssRoot", val);
34871
35011
  };
34872
35012
  Question.prototype.getCssRoot = function (cssClasses) {
35013
+ var hasError = this.hasCssError();
34873
35014
  return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_10__["CssClassBuilder"]()
34874
35015
  .append(_super.prototype.getCssRoot.call(this, cssClasses))
34875
35016
  .append(this.isFlowLayout && !this.isDesignMode
34876
35017
  ? cssClasses.flowRoot
34877
35018
  : cssClasses.mainRoot)
34878
35019
  .append(cssClasses.titleLeftRoot, !this.isFlowLayout && this.hasTitleOnLeft)
34879
- .append(cssClasses.hasError, this.errors.length > 0)
35020
+ .append(cssClasses.titleTopRoot, !this.isFlowLayout && this.hasTitleOnTop)
35021
+ .append(cssClasses.titleBottomRoot, !this.isFlowLayout && this.hasTitleOnBottom)
35022
+ .append(cssClasses.descriptionUnderInputRoot, !this.isFlowLayout && this.hasDescriptionUnderInput)
35023
+ .append(cssClasses.hasError, hasError)
35024
+ .append(cssClasses.hasErrorTop, hasError && this.getErrorLocation() == "top")
35025
+ .append(cssClasses.hasErrorBottom, hasError && this.getErrorLocation() == "bottom")
34880
35026
  .append(cssClasses.small, !this.width)
34881
35027
  .append(cssClasses.answered, this.isAnswered)
34882
35028
  .toString();
@@ -35011,6 +35157,9 @@ var Question = /** @class */ (function (_super) {
35011
35157
  .append(cssClasses.error.locationBottom, this.showErrorOnBottom)
35012
35158
  .toString();
35013
35159
  };
35160
+ Question.prototype.hasCssError = function () {
35161
+ return this.errors.length > 0 || this.hasCssErrorCallback();
35162
+ };
35014
35163
  Question.prototype.getRootCss = function () {
35015
35164
  return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_10__["CssClassBuilder"]()
35016
35165
  .append(this.cssRoot)
@@ -35778,7 +35927,9 @@ var Question = /** @class */ (function (_super) {
35778
35927
  });
35779
35928
  Object.defineProperty(Question.prototype, "setValueExpression", {
35780
35929
  /**
35781
- * An expression used to calculate the question value. Applies only when the [`setValueIf`](#setValueIf) expression evaluates to `true`.
35930
+ * An expression used to calculate the question value.
35931
+ *
35932
+ * You can use `setValueExpression` as a standalone property or in conjunction with the [`setValueIf`](#setValueIf) expression, in which case the calculated question value applies only when `setValueIf` evaluates to `true`.
35782
35933
  *
35783
35934
  * [Expressions](https://surveyjs.io/form-library/documentation/design-survey/conditional-logic#expressions (linkStyle))
35784
35935
  * @see defaultValueExpression
@@ -36173,9 +36324,6 @@ var Question = /** @class */ (function (_super) {
36173
36324
  }
36174
36325
  }
36175
36326
  this.updateContainsErrors();
36176
- if (oldHasErrors != errors.length > 0) {
36177
- this.updateQuestionCss();
36178
- }
36179
36327
  if (this.isCollapsed && rec && fireCallback && errors.length > 0) {
36180
36328
  this.expand();
36181
36329
  }
@@ -36711,7 +36859,7 @@ var Question = /** @class */ (function (_super) {
36711
36859
  get: function () {
36712
36860
  if (this.isNewA11yStructure)
36713
36861
  return null;
36714
- return this.errors.length > 0 ? "true" : "false";
36862
+ return this.hasCssError() ? "true" : "false";
36715
36863
  },
36716
36864
  enumerable: false,
36717
36865
  configurable: true
@@ -36741,7 +36889,7 @@ var Question = /** @class */ (function (_super) {
36741
36889
  get: function () {
36742
36890
  if (this.isNewA11yStructure)
36743
36891
  return null;
36744
- return this.errors.length > 0 ? this.id + "_errors" : null;
36892
+ return this.hasCssError() ? this.id + "_errors" : null;
36745
36893
  },
36746
36894
  enumerable: false,
36747
36895
  configurable: true
@@ -36764,7 +36912,7 @@ var Question = /** @class */ (function (_super) {
36764
36912
  });
36765
36913
  Object.defineProperty(Question.prototype, "a11y_input_ariaInvalid", {
36766
36914
  get: function () {
36767
- return this.errors.length > 0 ? "true" : "false";
36915
+ return this.hasCssError() ? "true" : "false";
36768
36916
  },
36769
36917
  enumerable: false,
36770
36918
  configurable: true
@@ -36795,7 +36943,7 @@ var Question = /** @class */ (function (_super) {
36795
36943
  });
36796
36944
  Object.defineProperty(Question.prototype, "a11y_input_ariaDescribedBy", {
36797
36945
  get: function () {
36798
- return this.errors.length > 0 ? this.id + "_errors" : null;
36946
+ return this.hasCssError() ? this.id + "_errors" : null;
36799
36947
  },
36800
36948
  enumerable: false,
36801
36949
  configurable: true
@@ -37506,8 +37654,6 @@ var QuestionSelectBase = /** @class */ (function (_super) {
37506
37654
  };
37507
37655
  QuestionSelectBase.prototype.runCondition = function (values, properties) {
37508
37656
  _super.prototype.runCondition.call(this, values, properties);
37509
- if (this.isUsingCarryForward)
37510
- return;
37511
37657
  this.runItemsEnableCondition(values, properties);
37512
37658
  this.runItemsCondition(values, properties);
37513
37659
  };
@@ -38167,7 +38313,7 @@ var QuestionSelectBase = /** @class */ (function (_super) {
38167
38313
  configurable: true
38168
38314
  });
38169
38315
  QuestionSelectBase.prototype.updateVisibleChoices = function () {
38170
- if (this.isLoadingFromJson)
38316
+ if (this.isLoadingFromJson || this.isDisposed)
38171
38317
  return;
38172
38318
  var newValue = new Array();
38173
38319
  var calcValue = this.calcVisibleChoices();
@@ -38176,7 +38322,10 @@ var QuestionSelectBase = /** @class */ (function (_super) {
38176
38322
  for (var i = 0; i < calcValue.length; i++) {
38177
38323
  newValue.push(calcValue[i]);
38178
38324
  }
38179
- this.setPropertyValue("visibleChoices", newValue);
38325
+ var oldValue = this.visibleChoices;
38326
+ if (!this.isTwoValueEquals(oldValue, newValue) || this.choicesLazyLoadEnabled) {
38327
+ this.setArrayPropertyDirectly("visibleChoices", newValue);
38328
+ }
38180
38329
  };
38181
38330
  QuestionSelectBase.prototype.calcVisibleChoices = function () {
38182
38331
  if (this.canUseFilteredChoices())
@@ -38843,7 +38992,7 @@ var QuestionSelectBase = /** @class */ (function (_super) {
38843
38992
  .append(this.cssClasses.item)
38844
38993
  .append(this.cssClasses.itemInline, !this.hasColumns && this.colCount === 0)
38845
38994
  .append("sv-q-col-" + this.getCurrentColCount(), !this.hasColumns && this.colCount !== 0)
38846
- .append(this.cssClasses.itemOnError, this.errors.length > 0);
38995
+ .append(this.cssClasses.itemOnError, this.hasCssError());
38847
38996
  var isDisabled = this.isReadOnly || !item.isEnabled;
38848
38997
  var isChecked = this.isItemSelected(item) ||
38849
38998
  (this.isOtherSelected && this.otherItem.value === item.value);
@@ -39237,13 +39386,7 @@ _jsonobject__WEBPACK_IMPORTED_MODULE_0__["Serializer"].addClass("selectbase", [
39237
39386
  },
39238
39387
  },
39239
39388
  "hideIfChoicesEmpty:boolean",
39240
- {
39241
- name: "choicesVisibleIf:condition",
39242
- dependsOn: "choicesFromQuestion",
39243
- visibleIf: function (obj) {
39244
- return !obj.choicesFromQuestion;
39245
- },
39246
- },
39389
+ "choicesVisibleIf:condition",
39247
39390
  {
39248
39391
  name: "choicesEnableIf:condition",
39249
39392
  dependsOn: "choicesFromQuestion",
@@ -39559,7 +39702,7 @@ var QuestionBooleanModel = /** @class */ (function (_super) {
39559
39702
  QuestionBooleanModel.prototype.getItemCssValue = function (css) {
39560
39703
  return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_3__["CssClassBuilder"]()
39561
39704
  .append(css.item)
39562
- .append(css.itemOnError, this.errors.length > 0)
39705
+ .append(css.itemOnError, this.hasCssError())
39563
39706
  .append(css.itemDisabled, this.isReadOnly)
39564
39707
  .append(css.itemHover, !this.isDesignMode)
39565
39708
  .append(css.itemChecked, !!this.booleanValue)
@@ -41386,6 +41529,7 @@ var QuestionCustomModel = /** @class */ (function (_super) {
41386
41529
  res.onUpdateCssClassesCallback = function (css) {
41387
41530
  _this.onUpdateQuestionCssClasses(res, css);
41388
41531
  };
41532
+ res.hasCssErrorCallback = function () { return _this.errors.length > 0; };
41389
41533
  }
41390
41534
  return res;
41391
41535
  };
@@ -41874,6 +42018,13 @@ var QuestionDropdownModel = /** @class */ (function (_super) {
41874
42018
  enumerable: false,
41875
42019
  configurable: true
41876
42020
  });
42021
+ Object.defineProperty(QuestionDropdownModel.prototype, "showClearButton", {
42022
+ get: function () {
42023
+ return this.allowClear && !this.isEmpty() && (!this.isDesignMode || _settings__WEBPACK_IMPORTED_MODULE_5__["settings"].supportCreatorV2);
42024
+ },
42025
+ enumerable: false,
42026
+ configurable: true
42027
+ });
41877
42028
  Object.defineProperty(QuestionDropdownModel.prototype, "optionsCaption", {
41878
42029
  get: function () {
41879
42030
  return this.placeholder;
@@ -42044,7 +42195,7 @@ var QuestionDropdownModel = /** @class */ (function (_super) {
42044
42195
  return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_3__["CssClassBuilder"]()
42045
42196
  .append(this.cssClasses.control)
42046
42197
  .append(this.cssClasses.controlEmpty, this.isEmpty())
42047
- .append(this.cssClasses.onError, this.errors.length > 0)
42198
+ .append(this.cssClasses.onError, this.hasCssError())
42048
42199
  .append(this.cssClasses.controlDisabled, this.isReadOnly)
42049
42200
  .append(this.cssClasses.controlInputFieldComponent, !!this.inputFieldComponentName)
42050
42201
  .toString();
@@ -42852,6 +43003,7 @@ __webpack_require__.r(__webpack_exports__);
42852
43003
  /* harmony import */ var _actions_action__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./actions/action */ "./src/actions/action.ts");
42853
43004
  /* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./helpers */ "./src/helpers.ts");
42854
43005
  /* harmony import */ var _utils_camera__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./utils/camera */ "./src/utils/camera.ts");
43006
+ /* harmony import */ var _settings__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./settings */ "./src/settings.ts");
42855
43007
  var __extends = (undefined && undefined.__extends) || (function () {
42856
43008
  var extendStatics = function (d, b) {
42857
43009
  extendStatics = Object.setPrototypeOf ||
@@ -42884,6 +43036,7 @@ var __decorate = (undefined && undefined.__decorate) || function (decorators, ta
42884
43036
 
42885
43037
 
42886
43038
 
43039
+
42887
43040
  /**
42888
43041
  * A class that describes the File Upload question type.
42889
43042
  *
@@ -43364,37 +43517,31 @@ var QuestionFileModel = /** @class */ (function (_super) {
43364
43517
  QuestionFileModel.prototype.getConfirmRemoveMessage = function (fileName) {
43365
43518
  return this.confirmRemoveMessage.format(fileName);
43366
43519
  };
43367
- Object.defineProperty(QuestionFileModel.prototype, "renderedPlaceholder", {
43520
+ Object.defineProperty(QuestionFileModel.prototype, "locRenderedPlaceholder", {
43368
43521
  get: function () {
43369
43522
  var _this = this;
43370
- if (this.renderedPlaceholderValue === undefined) {
43371
- this.renderedPlaceholderValue = (new _base__WEBPACK_IMPORTED_MODULE_3__["ComputedUpdater"](function () {
43372
- var dragAreaText = _this.dragAreaPlaceholder;
43373
- var fileCameraDragAreaPlaceHolder = _this.fileCameraDragAreaPlaceholder;
43374
- var cameraPlaceHolder = _this.cameraPlaceholder;
43375
- var readOnlyText = _this.noFileChosenCaption;
43523
+ if (this.locRenderedPlaceholderValue === undefined) {
43524
+ this.locRenderedPlaceholderValue = (new _base__WEBPACK_IMPORTED_MODULE_3__["ComputedUpdater"](function () {
43376
43525
  var isReadOnly = _this.isReadOnly;
43377
- var hasFileUI = _this.hasFileUI;
43378
- var hasVideoUI = _this.hasVideoUI;
43379
- var renderedPlaceholder = "";
43526
+ var hasFileUI = (!_this.isDesignMode && _this.hasFileUI) || (_this.isDesignMode && _this.sourceType != "camera");
43527
+ var hasVideoUI = (!_this.isDesignMode && _this.hasVideoUI) || (_this.isDesignMode && _this.sourceType != "file");
43528
+ var renderedPlaceholder;
43380
43529
  if (isReadOnly) {
43381
- renderedPlaceholder = readOnlyText;
43530
+ renderedPlaceholder = _this.locNoFileChosenCaption;
43531
+ }
43532
+ else if (hasFileUI && hasVideoUI) {
43533
+ renderedPlaceholder = _this.locFileOrPhotoPlaceholder;
43382
43534
  }
43383
43535
  else if (hasFileUI) {
43384
- if (hasVideoUI) {
43385
- renderedPlaceholder = fileCameraDragAreaPlaceHolder;
43386
- }
43387
- else {
43388
- renderedPlaceholder = dragAreaText;
43389
- }
43536
+ renderedPlaceholder = _this.locFilePlaceholder;
43390
43537
  }
43391
43538
  else {
43392
- renderedPlaceholder = cameraPlaceHolder;
43539
+ renderedPlaceholder = _this.locPhotoPlaceholder;
43393
43540
  }
43394
43541
  return renderedPlaceholder;
43395
43542
  }));
43396
43543
  }
43397
- return this.renderedPlaceholderValue;
43544
+ return this.locRenderedPlaceholderValue;
43398
43545
  },
43399
43546
  enumerable: false,
43400
43547
  configurable: true
@@ -43807,7 +43954,7 @@ var QuestionFileModel = /** @class */ (function (_super) {
43807
43954
  QuestionFileModel.prototype.getFileDecoratorCss = function () {
43808
43955
  return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_5__["CssClassBuilder"]()
43809
43956
  .append(this.cssClasses.fileDecorator)
43810
- .append(this.cssClasses.onError, this.errors.length > 0)
43957
+ .append(this.cssClasses.onError, this.hasCssError())
43811
43958
  .append(this.cssClasses.fileDecoratorDrag, this.isDragging)
43812
43959
  .toString();
43813
43960
  };
@@ -43991,17 +44138,17 @@ var QuestionFileModel = /** @class */ (function (_super) {
43991
44138
  Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])({ localizable: { defaultStr: "chooseFile" } })
43992
44139
  ], QuestionFileModel.prototype, "chooseFileTitle", void 0);
43993
44140
  __decorate([
43994
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])({ localizable: { defaultStr: "fileCameraDragAreaPlaceHolder" } })
43995
- ], QuestionFileModel.prototype, "fileCameraDragAreaPlaceholder", void 0);
44141
+ Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])({ localizable: { defaultStr: "fileOrPhotoPlaceholder" } })
44142
+ ], QuestionFileModel.prototype, "fileOrPhotoPlaceholder", void 0);
43996
44143
  __decorate([
43997
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])({ localizable: { defaultStr: "cameraPlaceHolder" } })
43998
- ], QuestionFileModel.prototype, "cameraPlaceholder", void 0);
44144
+ Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])({ localizable: { defaultStr: "photoPlaceholder" } })
44145
+ ], QuestionFileModel.prototype, "photoPlaceholder", void 0);
43999
44146
  __decorate([
44000
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])({ localizable: { defaultStr: "fileDragAreaPlaceholder" } })
44001
- ], QuestionFileModel.prototype, "dragAreaPlaceholder", void 0);
44147
+ Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])({ localizable: { defaultStr: "filePlaceholder" } })
44148
+ ], QuestionFileModel.prototype, "filePlaceholder", void 0);
44002
44149
  __decorate([
44003
44150
  Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
44004
- ], QuestionFileModel.prototype, "renderedPlaceholderValue", void 0);
44151
+ ], QuestionFileModel.prototype, "locRenderedPlaceholderValue", void 0);
44005
44152
  return QuestionFileModel;
44006
44153
  }(_question__WEBPACK_IMPORTED_MODULE_0__["Question"]));
44007
44154
 
@@ -44009,7 +44156,14 @@ _jsonobject__WEBPACK_IMPORTED_MODULE_1__["Serializer"].addClass("file", [
44009
44156
  { name: "showCommentArea:switch", layout: "row", visible: true, category: "general" },
44010
44157
  { name: "showPreview:boolean", default: true },
44011
44158
  "allowMultiple:boolean",
44012
- { name: "allowImagesPreview:boolean", default: true },
44159
+ {
44160
+ name: "allowImagesPreview:boolean",
44161
+ default: true,
44162
+ dependsOn: "showPreview",
44163
+ visibleIf: function (obj) {
44164
+ return !!obj.showPreview;
44165
+ },
44166
+ },
44013
44167
  "imageHeight",
44014
44168
  "imageWidth",
44015
44169
  "acceptedTypes",
@@ -44020,8 +44174,11 @@ _jsonobject__WEBPACK_IMPORTED_MODULE_1__["Serializer"].addClass("file", [
44020
44174
  { name: "correctAnswer", visible: false },
44021
44175
  { name: "validators", visible: false },
44022
44176
  { name: "needConfirmRemoveFile:boolean" },
44023
- { name: "allowCameraAccess:switch", category: "general" },
44024
- { name: "sourceType", choices: ["file", "camera", "file-camera"], default: "file", category: "general", visible: true }
44177
+ { name: "sourceType", choices: ["file", "camera", "file-camera"], default: "file", category: "general", visible: true, visibleIf: function () { return _settings__WEBPACK_IMPORTED_MODULE_11__["settings"].supportCreatorV2; } },
44178
+ { name: "fileOrPhotoPlaceholder:text", serializationProperty: "locFileOrPhotoPlaceholder", category: "general", visibleIf: function () { return _settings__WEBPACK_IMPORTED_MODULE_11__["settings"].supportCreatorV2; } },
44179
+ { name: "photoPlaceholder:text", serializationProperty: "locPhotoPlaceholder", category: "general", visibleIf: function () { return _settings__WEBPACK_IMPORTED_MODULE_11__["settings"].supportCreatorV2; } },
44180
+ { name: "filePlaceholder:text", serializationProperty: "locFilePlaceholder", category: "general", visibleIf: function () { return _settings__WEBPACK_IMPORTED_MODULE_11__["settings"].supportCreatorV2; } },
44181
+ { name: "allowCameraAccess:switch", category: "general", visible: false },
44025
44182
  ], function () {
44026
44183
  return new QuestionFileModel("");
44027
44184
  }, "question");
@@ -45525,7 +45682,7 @@ var QuestionMatrixModel = /** @class */ (function (_super) {
45525
45682
  return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_11__["CssClassBuilder"]()
45526
45683
  .append(this.cssClasses.cell, this.hasCellText)
45527
45684
  .append(this.hasCellText ? this.cssClasses.cellText : this.cssClasses.label)
45528
- .append(this.cssClasses.itemOnError, !this.hasCellText && this.errors.length > 0)
45685
+ .append(this.cssClasses.itemOnError, !this.hasCellText && this.hasCssError())
45529
45686
  .append(this.hasCellText ? this.cssClasses.cellTextSelected : this.cssClasses.itemChecked, isChecked)
45530
45687
  .append(this.hasCellText ? this.cssClasses.cellTextDisabled : this.cssClasses.itemDisabled, isDisabled)
45531
45688
  .append(this.cssClasses.itemHover, allowHover && !this.hasCellText)
@@ -45645,7 +45802,7 @@ var QuestionMatrixModel = /** @class */ (function (_super) {
45645
45802
  };
45646
45803
  QuestionMatrixModel.prototype.onCheckForErrors = function (errors, isOnValueChanged) {
45647
45804
  _super.prototype.onCheckForErrors.call(this, errors, isOnValueChanged);
45648
- if ((!isOnValueChanged || this.errors.length > 0) &&
45805
+ if ((!isOnValueChanged || this.hasCssError()) &&
45649
45806
  this.hasErrorInRows()) {
45650
45807
  errors.push(new _error__WEBPACK_IMPORTED_MODULE_6__["RequiredInAllRowsError"](null, this));
45651
45808
  }
@@ -51111,7 +51268,7 @@ var QuestionMatrixDynamicModel = /** @class */ (function (_super) {
51111
51268
  };
51112
51269
  Object.defineProperty(QuestionMatrixDynamicModel.prototype, "allowRowsDragAndDrop", {
51113
51270
  /**
51114
- * Specifies whether users can drag and drop matrix rows to reorder them.
51271
+ * Specifies whether users can drag and drop matrix rows to reorder them. Applies only if [`columnLayout`](#columnLayout) is `"horizontal"`.
51115
51272
  *
51116
51273
  * Default value: `false`
51117
51274
  */
@@ -52215,6 +52372,32 @@ var MultipleTextItemModel = /** @class */ (function (_super) {
52215
52372
  enumerable: false,
52216
52373
  configurable: true
52217
52374
  });
52375
+ Object.defineProperty(MultipleTextItemModel.prototype, "minValueExpression", {
52376
+ /**
52377
+ * The minimum value specified as an expression. For example, `"minValueExpression": "today(-1)"` sets the minimum value to yesterday.
52378
+ */
52379
+ get: function () {
52380
+ return this.editor.minValueExpression;
52381
+ },
52382
+ set: function (val) {
52383
+ this.editor.minValueExpression = val;
52384
+ },
52385
+ enumerable: false,
52386
+ configurable: true
52387
+ });
52388
+ Object.defineProperty(MultipleTextItemModel.prototype, "maxValueExpression", {
52389
+ /**
52390
+ * The maximum value specified as an expression. For example, `"maxValueExpression": "today(1)"` sets the maximum value to tomorrow.
52391
+ */
52392
+ get: function () {
52393
+ return this.editor.maxValueExpression;
52394
+ },
52395
+ set: function (val) {
52396
+ this.editor.maxValueExpression = val;
52397
+ },
52398
+ enumerable: false,
52399
+ configurable: true
52400
+ });
52218
52401
  Object.defineProperty(MultipleTextItemModel.prototype, "validators", {
52219
52402
  /**
52220
52403
  * The list of question validators.
@@ -52640,6 +52823,10 @@ var QuestionMultipleTextModel = /** @class */ (function (_super) {
52640
52823
  this.items[i].onValueChanged(itemValue);
52641
52824
  }
52642
52825
  };
52826
+ QuestionMultipleTextModel.prototype.runCondition = function (values, properties) {
52827
+ _super.prototype.runCondition.call(this, values, properties);
52828
+ this.items.forEach(function (item) { return item.editor.runCondition(values, properties); });
52829
+ };
52643
52830
  QuestionMultipleTextModel.prototype.getIsRunningValidators = function () {
52644
52831
  if (_super.prototype.getIsRunningValidators.call(this))
52645
52832
  return true;
@@ -52903,6 +53090,22 @@ _jsonobject__WEBPACK_IMPORTED_MODULE_4__["Serializer"].addClass("multipletextite
52903
53090
  name: "requiredErrorText:text",
52904
53091
  serializationProperty: "locRequiredErrorText",
52905
53092
  },
53093
+ {
53094
+ name: "minValueExpression:expression",
53095
+ category: "logic",
53096
+ dependsOn: "inputType",
53097
+ visibleIf: function (obj) {
53098
+ return Object(_question_text__WEBPACK_IMPORTED_MODULE_3__["isMinMaxType"])(obj);
53099
+ },
53100
+ },
53101
+ {
53102
+ name: "maxValueExpression:expression",
53103
+ category: "logic",
53104
+ dependsOn: "inputType",
53105
+ visibleIf: function (obj) {
53106
+ return Object(_question_text__WEBPACK_IMPORTED_MODULE_3__["isMinMaxType"])(obj);
53107
+ },
53108
+ },
52906
53109
  {
52907
53110
  name: "validators:validators",
52908
53111
  baseClassName: "surveyvalidator",
@@ -53877,6 +54080,14 @@ var QuestionPanelDynamicModel = /** @class */ (function (_super) {
53877
54080
  question.setIsMobile(val);
53878
54081
  }); });
53879
54082
  };
54083
+ QuestionPanelDynamicModel.prototype.themeChanged = function (theme) {
54084
+ _super.prototype.themeChanged.call(this, theme);
54085
+ (this.panels || []).forEach(function (panel) {
54086
+ return panel.getQuestions(true).forEach(function (question) {
54087
+ question.themeChanged(theme);
54088
+ });
54089
+ });
54090
+ };
53880
54091
  Object.defineProperty(QuestionPanelDynamicModel.prototype, "panelCount", {
53881
54092
  /**
53882
54093
  * The number of panels in Dynamic Panel.
@@ -55880,31 +56091,23 @@ var QuestionRankingModel = /** @class */ (function (_super) {
55880
56091
  return;
55881
56092
  }
55882
56093
  if (key === "ArrowUp" && index) {
55883
- _this.handleArrowUp(index, choice);
56094
+ _this.handleArrowKeys(index, choice, false);
55884
56095
  event.preventDefault();
55885
56096
  }
55886
56097
  if (key === "ArrowDown" && index !== _this.rankingChoices.length - 1) {
55887
- _this.handleArrowDown(index, choice);
56098
+ _this.handleArrowKeys(index, choice, true);
55888
56099
  event.preventDefault();
55889
56100
  }
55890
56101
  }
55891
56102
  };
55892
- _this.handleArrowUp = function (index, choice) {
55893
- var choices = _this.rankingChoices;
55894
- choices.splice(index, 1);
55895
- choices.splice(index - 1, 0, choice);
55896
- _this.setValue();
55897
- setTimeout(function () {
55898
- _this.focusItem(index - 1);
55899
- }, 1);
55900
- };
55901
- _this.handleArrowDown = function (index, choice) {
56103
+ _this.handleArrowKeys = function (index, choice, isDown) {
56104
+ var delta = isDown ? 1 : -1;
55902
56105
  var choices = _this.rankingChoices;
55903
56106
  choices.splice(index, 1);
55904
- choices.splice(index + 1, 0, choice);
56107
+ choices.splice(index + delta, 0, choice);
55905
56108
  _this.setValue();
55906
56109
  setTimeout(function () {
55907
- _this.focusItem(index + 1);
56110
+ _this.focusItem(index + delta);
55908
56111
  }, 1);
55909
56112
  };
55910
56113
  _this.focusItem = function (index, container) {
@@ -55951,7 +56154,7 @@ var QuestionRankingModel = /** @class */ (function (_super) {
55951
56154
  .append(this.cssClasses.rootMobileMod, _utils_devices__WEBPACK_IMPORTED_MODULE_7__["IsMobile"])
55952
56155
  .append(this.cssClasses.rootDisabled, this.isReadOnly)
55953
56156
  .append(this.cssClasses.rootDesignMode, !!this.isDesignMode)
55954
- .append(this.cssClasses.itemOnError, this.errors.length > 0)
56157
+ .append(this.cssClasses.itemOnError, this.hasCssError())
55955
56158
  .append(this.cssClasses.rootDragHandleAreaIcon, _src_settings__WEBPACK_IMPORTED_MODULE_9__["settings"].rankingDragHandleArea === "icon")
55956
56159
  .append(this.cssClasses.rootSelectToRankMod, this.selectToRankEnabled)
55957
56160
  .append(this.cssClasses.rootSelectToRankAlignHorizontal, this.selectToRankEnabled && this.selectToRankAreasLayout === "horizontal")
@@ -56188,46 +56391,39 @@ var QuestionRankingModel = /** @class */ (function (_super) {
56188
56391
  QuestionRankingModel.prototype.handleKeydownSelectToRank = function (event, movedElement) {
56189
56392
  if (this.isDesignMode)
56190
56393
  return;
56191
- var dnd = this.dragDropRankingChoices; //????
56192
56394
  var key = event.key;
56395
+ if (key !== " " && key !== "ArrowUp" && key !== "ArrowDown")
56396
+ return;
56397
+ var dnd = this.dragDropRankingChoices; //????
56193
56398
  var rankingChoices = this.rankingChoices;
56194
- var unRankingChoices = this.unRankingChoices;
56195
56399
  var isMovedElementRanked = rankingChoices.indexOf(movedElement) !== -1;
56196
- var isMovedElementUnRanked = !isMovedElementRanked;
56197
- var fromIndex;
56400
+ var choices = isMovedElementRanked ? rankingChoices : this.unRankingChoices;
56401
+ var fromIndex = choices.indexOf(movedElement);
56402
+ if (fromIndex < 0)
56403
+ return;
56198
56404
  var toIndex;
56199
- if ((key === " " || key === "Enter") && isMovedElementUnRanked) {
56200
- fromIndex = unRankingChoices.indexOf(movedElement);
56405
+ if (key === " " && !isMovedElementRanked) {
56201
56406
  toIndex = 0;
56202
56407
  dnd.selectToRank(this, fromIndex, toIndex);
56203
56408
  this.setValueAfterKeydown(toIndex, "to-container");
56204
56409
  return;
56205
56410
  }
56206
- if ((key === " " || key === "Enter") && isMovedElementRanked) {
56207
- fromIndex = rankingChoices.indexOf(movedElement);
56411
+ if (!isMovedElementRanked)
56412
+ return;
56413
+ if (key === " ") {
56208
56414
  dnd.unselectFromRank(this, fromIndex);
56209
56415
  toIndex = this.unRankingChoices.indexOf(movedElement); //'this.' leads to actual array after the 'unselectFromRank' method
56210
56416
  this.setValueAfterKeydown(toIndex, "from-container");
56211
56417
  return;
56212
56418
  }
56213
- if (key === "ArrowUp" && isMovedElementRanked) {
56214
- fromIndex = rankingChoices.indexOf(movedElement);
56215
- toIndex = fromIndex - 1;
56216
- if (fromIndex < 0)
56217
- return;
56218
- dnd.reorderRankedItem(this, fromIndex, toIndex);
56219
- this.setValueAfterKeydown(toIndex, "to-container");
56419
+ var delta = key === "ArrowUp" ? -1 : (key === "ArrowDown" ? 1 : 0);
56420
+ if (delta === 0)
56220
56421
  return;
56221
- }
56222
- if (key === "ArrowDown" && isMovedElementRanked) {
56223
- fromIndex = rankingChoices.indexOf(movedElement);
56224
- toIndex = fromIndex + 1;
56225
- if (toIndex >= rankingChoices.length)
56226
- return;
56227
- dnd.reorderRankedItem(this, fromIndex, toIndex);
56228
- this.setValueAfterKeydown(toIndex, "to-container");
56422
+ toIndex = fromIndex + delta;
56423
+ if (toIndex < 0 || toIndex >= rankingChoices.length)
56229
56424
  return;
56230
- }
56425
+ dnd.reorderRankedItem(this, fromIndex, toIndex);
56426
+ this.setValueAfterKeydown(toIndex, "to-container");
56231
56427
  };
56232
56428
  QuestionRankingModel.prototype.setValueAfterKeydown = function (index, container) {
56233
56429
  var _this = this;
@@ -56315,6 +56511,27 @@ var QuestionRankingModel = /** @class */ (function (_super) {
56315
56511
  enumerable: false,
56316
56512
  configurable: true
56317
56513
  });
56514
+ Object.defineProperty(QuestionRankingModel.prototype, "dragDropSvgIcon", {
56515
+ get: function () {
56516
+ return this.cssClasses.dragDropSvgIconId || "#icon-drag-n-drop";
56517
+ },
56518
+ enumerable: false,
56519
+ configurable: true
56520
+ });
56521
+ Object.defineProperty(QuestionRankingModel.prototype, "arrowsSvgIcon", {
56522
+ get: function () {
56523
+ return this.cssClasses.arrowsSvgIconId || "#icon-ranking-arrows";
56524
+ },
56525
+ enumerable: false,
56526
+ configurable: true
56527
+ });
56528
+ Object.defineProperty(QuestionRankingModel.prototype, "dashSvgIcon", {
56529
+ get: function () {
56530
+ return this.cssClasses.dashSvgIconId || "#icon-ranking-dash";
56531
+ },
56532
+ enumerable: false,
56533
+ configurable: true
56534
+ });
56318
56535
  Object.defineProperty(QuestionRankingModel.prototype, "isNewA11yStructure", {
56319
56536
  //a11y
56320
56537
  get: function () {
@@ -56935,13 +57152,24 @@ var QuestionRatingModel = /** @class */ (function (_super) {
56935
57152
  enumerable: false,
56936
57153
  configurable: true
56937
57154
  });
56938
- Object.defineProperty(QuestionRatingModel.prototype, "itemComponentName", {
57155
+ QuestionRatingModel.prototype.getDefaultItemComponent = function () {
57156
+ if (this.renderAs == "dropdown")
57157
+ return "";
57158
+ if (this.isStar)
57159
+ return "sv-rating-item-star";
57160
+ if (this.isSmiley)
57161
+ return "sv-rating-item-smiley";
57162
+ return "sv-rating-item";
57163
+ };
57164
+ Object.defineProperty(QuestionRatingModel.prototype, "itemComponent", {
57165
+ /**
57166
+ * The name of a component used to render items.
57167
+ */
56939
57168
  get: function () {
56940
- if (this.isStar)
56941
- return "sv-rating-item-star";
56942
- if (this.isSmiley)
56943
- return "sv-rating-item-smiley";
56944
- return "sv-rating-item";
57169
+ return this.getPropertyValue("itemComponent", this.getDefaultItemComponent());
57170
+ },
57171
+ set: function (value) {
57172
+ this.setPropertyValue("itemComponent", value);
56945
57173
  },
56946
57174
  enumerable: false,
56947
57175
  configurable: true
@@ -57144,7 +57372,7 @@ var QuestionRatingModel = /** @class */ (function (_super) {
57144
57372
  .append(itemScaleColoredClass, this.scaleColorMode == "colored")
57145
57373
  .append(itemRateColoredClass, this.rateColorMode == "scale" && isSelected)
57146
57374
  .append(itemUnhighlightedClass, isUnhighlighted)
57147
- .append(itemitemOnErrorClass, this.errors.length > 0)
57375
+ .append(itemitemOnErrorClass, this.hasCssError())
57148
57376
  .append(itemSmallClass, this.itemSmallMode)
57149
57377
  .append(this.cssClasses.itemFixedSize, hasFixedSize)
57150
57378
  .toString();
@@ -57155,7 +57383,7 @@ var QuestionRatingModel = /** @class */ (function (_super) {
57155
57383
  return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_6__["CssClassBuilder"]()
57156
57384
  .append(this.cssClasses.control)
57157
57385
  .append(this.cssClasses.controlEmpty, this.isEmpty())
57158
- .append(this.cssClasses.onError, this.errors.length > 0)
57386
+ .append(this.cssClasses.onError, this.hasCssError())
57159
57387
  .append(this.cssClasses.controlDisabled, this.isReadOnly)
57160
57388
  .toString();
57161
57389
  };
@@ -57276,17 +57504,16 @@ var QuestionRatingModel = /** @class */ (function (_super) {
57276
57504
  }
57277
57505
  return classes;
57278
57506
  };
57507
+ QuestionRatingModel.prototype.themeChanged = function (theme) {
57508
+ this.colorsCalculated = false;
57509
+ this.updateColors(theme.cssVariables);
57510
+ this.createRenderedRateItems();
57511
+ };
57279
57512
  QuestionRatingModel.prototype.setSurveyImpl = function (value, isLight) {
57280
- var _this = this;
57281
57513
  _super.prototype.setSurveyImpl.call(this, value, isLight);
57282
57514
  if (!this.survey)
57283
57515
  return;
57284
57516
  this.updateColors(this.survey.themeVariables);
57285
- this.survey.onThemeApplied.add(function (survey, options) {
57286
- _this.colorsCalculated = false;
57287
- _this.updateColors(options.theme.cssVariables);
57288
- _this.createRenderedRateItems();
57289
- });
57290
57517
  };
57291
57518
  QuestionRatingModel.prototype.dispose = function () {
57292
57519
  _super.prototype.dispose.call(this);
@@ -57465,7 +57692,14 @@ _jsonobject__WEBPACK_IMPORTED_MODULE_2__["Serializer"].addClass("rating", [
57465
57692
  default: "auto",
57466
57693
  choices: ["auto", "buttons", "dropdown"],
57467
57694
  visibleIndex: 20
57468
- }
57695
+ },
57696
+ { name: "itemComponent", visible: false, defaultFunc: function (obj) {
57697
+ if (!obj)
57698
+ return "sv-rating-item";
57699
+ if (!!obj.getOriginalObj)
57700
+ obj = obj.getOriginalObj();
57701
+ return obj.getDefaultItemComponent();
57702
+ } }
57469
57703
  ], function () {
57470
57704
  return new QuestionRatingModel("");
57471
57705
  }, "question");
@@ -57590,16 +57824,10 @@ var QuestionSignaturePadModel = /** @class */ (function (_super) {
57590
57824
  this.destroySignaturePad(el);
57591
57825
  }
57592
57826
  };
57593
- QuestionSignaturePadModel.prototype.setSurveyImpl = function (value, isLight) {
57594
- var _this = this;
57595
- _super.prototype.setSurveyImpl.call(this, value, isLight);
57596
- if (!this.survey)
57597
- return;
57598
- this.survey.onThemeApplied.add(function (survey, options) {
57599
- if (!!_this.signaturePad) {
57600
- _this.updateColors(_this.signaturePad);
57601
- }
57602
- });
57827
+ QuestionSignaturePadModel.prototype.themeChanged = function (theme) {
57828
+ if (!!this.signaturePad) {
57829
+ this.updateColors(this.signaturePad);
57830
+ }
57603
57831
  };
57604
57832
  QuestionSignaturePadModel.prototype.initSignaturePad = function (el) {
57605
57833
  var _this = this;
@@ -57799,15 +58027,11 @@ var QuestionSignaturePadModel = /** @class */ (function (_super) {
57799
58027
  configurable: true
57800
58028
  });
57801
58029
  QuestionSignaturePadModel.prototype.needShowPlaceholder = function () {
57802
- return !this.isDrawingValue && this.isEmpty();
58030
+ var showPlaceholder = this.showPlaceholder;
58031
+ var isDrawing = this.isDrawingValue;
58032
+ var isEmpty = this.isEmpty();
58033
+ return showPlaceholder && !isDrawing && isEmpty;
57803
58034
  };
57804
- Object.defineProperty(QuestionSignaturePadModel.prototype, "placeHolderText", {
57805
- get: function () {
57806
- return this.getLocalizationString("signaturePlaceHolder");
57807
- },
57808
- enumerable: false,
57809
- configurable: true
57810
- });
57811
58035
  QuestionSignaturePadModel.prototype.endLoadingFromJson = function () {
57812
58036
  _super.prototype.endLoadingFromJson.call(this);
57813
58037
  //todo: need to remove this code
@@ -57825,6 +58049,12 @@ var QuestionSignaturePadModel = /** @class */ (function (_super) {
57825
58049
  __decorate([
57826
58050
  Object(_jsonobject__WEBPACK_IMPORTED_MODULE_0__["property"])({ defaultValue: false })
57827
58051
  ], QuestionSignaturePadModel.prototype, "isDrawingValue", void 0);
58052
+ __decorate([
58053
+ Object(_jsonobject__WEBPACK_IMPORTED_MODULE_0__["property"])({})
58054
+ ], QuestionSignaturePadModel.prototype, "showPlaceholder", void 0);
58055
+ __decorate([
58056
+ Object(_jsonobject__WEBPACK_IMPORTED_MODULE_0__["property"])({ localizable: { defaultStr: "signaturePlaceHolder" } })
58057
+ ], QuestionSignaturePadModel.prototype, "placeholder", void 0);
57828
58058
  return QuestionSignaturePadModel;
57829
58059
  }(_question__WEBPACK_IMPORTED_MODULE_2__["Question"]));
57830
58060
 
@@ -57858,6 +58088,11 @@ _jsonobject__WEBPACK_IMPORTED_MODULE_0__["Serializer"].addClass("signaturepad",
57858
58088
  category: "general",
57859
58089
  default: true,
57860
58090
  },
58091
+ { name: "showPlaceholder:boolean", category: "general", default: true },
58092
+ { name: "placeholder:text",
58093
+ serializationProperty: "locPlaceholder",
58094
+ category: "general",
58095
+ dependsOn: "showPlaceholder", visibleIf: function (obj) { return obj.showPlaceholder; } },
57861
58096
  {
57862
58097
  name: "backgroundImage:file",
57863
58098
  category: "general",
@@ -58042,7 +58277,7 @@ var QuestionTagboxModel = /** @class */ (function (_super) {
58042
58277
  return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_2__["CssClassBuilder"]()
58043
58278
  .append(this.cssClasses.control)
58044
58279
  .append(this.cssClasses.controlEmpty, this.isEmpty())
58045
- .append(this.cssClasses.onError, this.errors.length > 0)
58280
+ .append(this.cssClasses.onError, this.hasCssError())
58046
58281
  .append(this.cssClasses.controlDisabled, this.isReadOnly)
58047
58282
  .toString();
58048
58283
  };
@@ -58121,6 +58356,13 @@ var QuestionTagboxModel = /** @class */ (function (_super) {
58121
58356
  _super.prototype.clearValue.call(this);
58122
58357
  this.dropdownListModel.clear();
58123
58358
  };
58359
+ Object.defineProperty(QuestionTagboxModel.prototype, "showClearButton", {
58360
+ get: function () {
58361
+ return this.allowClear && !this.isEmpty() && (!this.isDesignMode || _settings__WEBPACK_IMPORTED_MODULE_5__["settings"].supportCreatorV2);
58362
+ },
58363
+ enumerable: false,
58364
+ configurable: true
58365
+ });
58124
58366
  Object.defineProperty(QuestionTagboxModel.prototype, "isNewA11yStructure", {
58125
58367
  //a11y
58126
58368
  get: function () {
@@ -58191,12 +58433,13 @@ _questionfactory__WEBPACK_IMPORTED_MODULE_1__["QuestionFactory"].Instance.regist
58191
58433
  /*!******************************!*\
58192
58434
  !*** ./src/question_text.ts ***!
58193
58435
  \******************************/
58194
- /*! exports provided: QuestionTextModel */
58436
+ /*! exports provided: QuestionTextModel, isMinMaxType */
58195
58437
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
58196
58438
 
58197
58439
  "use strict";
58198
58440
  __webpack_require__.r(__webpack_exports__);
58199
58441
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "QuestionTextModel", function() { return QuestionTextModel; });
58442
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "isMinMaxType", function() { return isMinMaxType; });
58200
58443
  /* harmony import */ var _questionfactory__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./questionfactory */ "./src/questionfactory.ts");
58201
58444
  /* harmony import */ var _jsonobject__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./jsonobject */ "./src/jsonobject.ts");
58202
58445
  /* harmony import */ var _localizablestring__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./localizablestring */ "./src/localizablestring.ts");
@@ -59155,7 +59398,7 @@ var QuestionTextBase = /** @class */ (function (_super) {
59155
59398
  QuestionTextBase.prototype.getControlClass = function () {
59156
59399
  return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_3__["CssClassBuilder"]()
59157
59400
  .append(this.cssClasses.root)
59158
- .append(this.cssClasses.onError, this.errors.length > 0)
59401
+ .append(this.cssClasses.onError, this.hasCssError())
59159
59402
  .append(this.cssClasses.controlDisabled, this.isReadOnly)
59160
59403
  .toString();
59161
59404
  };
@@ -60171,106 +60414,6 @@ _element_factory__WEBPACK_IMPORTED_MODULE_1__["ReactElementFactory"].Instance.re
60171
60414
  });
60172
60415
 
60173
60416
 
60174
- /***/ }),
60175
-
60176
- /***/ "./src/react/components/cover.tsx":
60177
- /*!****************************************!*\
60178
- !*** ./src/react/components/cover.tsx ***!
60179
- \****************************************/
60180
- /*! exports provided: CoverCellComponent, CoverComponent */
60181
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
60182
-
60183
- "use strict";
60184
- __webpack_require__.r(__webpack_exports__);
60185
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "CoverCellComponent", function() { return CoverCellComponent; });
60186
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "CoverComponent", function() { return CoverComponent; });
60187
- /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "react");
60188
- /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
60189
- /* harmony import */ var _reactquestion_element__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../reactquestion_element */ "./src/react/reactquestion_element.tsx");
60190
- /* harmony import */ var _element_factory__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../element-factory */ "./src/react/element-factory.tsx");
60191
- /* harmony import */ var _title_title_element__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./title/title-element */ "./src/react/components/title/title-element.tsx");
60192
- var __extends = (undefined && undefined.__extends) || (function () {
60193
- var extendStatics = function (d, b) {
60194
- extendStatics = Object.setPrototypeOf ||
60195
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
60196
- function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
60197
- return extendStatics(d, b);
60198
- };
60199
- return function (d, b) {
60200
- if (typeof b !== "function" && b !== null)
60201
- throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
60202
- extendStatics(d, b);
60203
- function __() { this.constructor = d; }
60204
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
60205
- };
60206
- })();
60207
-
60208
-
60209
-
60210
-
60211
- var CoverCellComponent = /** @class */ (function (_super) {
60212
- __extends(CoverCellComponent, _super);
60213
- function CoverCellComponent() {
60214
- return _super !== null && _super.apply(this, arguments) || this;
60215
- }
60216
- Object.defineProperty(CoverCellComponent.prototype, "model", {
60217
- get: function () {
60218
- return this.props.model;
60219
- },
60220
- enumerable: false,
60221
- configurable: true
60222
- });
60223
- CoverCellComponent.prototype.renderLogoImage = function () {
60224
- var componentName = this.model.survey.getElementWrapperComponentName(this.model.survey, "logo-image");
60225
- var componentData = this.model.survey.getElementWrapperComponentData(this.model.survey, "logo-image");
60226
- return _element_factory__WEBPACK_IMPORTED_MODULE_2__["ReactElementFactory"].Instance.createElement(componentName, {
60227
- data: componentData,
60228
- });
60229
- };
60230
- CoverCellComponent.prototype.render = function () {
60231
- return (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div", { className: this.model.css, style: this.model.style },
60232
- react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div", { className: "sv-cover__cell-content", style: this.model.contentStyle },
60233
- this.model.showLogo ? (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div", { className: "sv-cover__logo" }, this.renderLogoImage())) : null,
60234
- this.model.showTitle ? (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div", { className: "sv-cover__title", style: { maxWidth: this.model.textAreaWidth } },
60235
- react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement(_title_title_element__WEBPACK_IMPORTED_MODULE_3__["TitleElement"], { element: this.model.survey }))) : null,
60236
- this.model.showDescription ? (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div", { className: "sv-cover__description", style: { maxWidth: this.model.textAreaWidth } },
60237
- react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("h5", { className: this.model.survey.css.description }, _reactquestion_element__WEBPACK_IMPORTED_MODULE_1__["SurveyElementBase"].renderLocString(this.model.survey.locDescription)))) : null)));
60238
- };
60239
- return CoverCellComponent;
60240
- }(react__WEBPACK_IMPORTED_MODULE_0___default.a.Component));
60241
-
60242
- var CoverComponent = /** @class */ (function (_super) {
60243
- __extends(CoverComponent, _super);
60244
- function CoverComponent() {
60245
- return _super !== null && _super.apply(this, arguments) || this;
60246
- }
60247
- Object.defineProperty(CoverComponent.prototype, "model", {
60248
- get: function () {
60249
- return this.props.model;
60250
- },
60251
- enumerable: false,
60252
- configurable: true
60253
- });
60254
- CoverComponent.prototype.getStateElement = function () {
60255
- return this.model;
60256
- };
60257
- CoverComponent.prototype.renderElement = function () {
60258
- this.model.survey = this.props.survey;
60259
- if (!(this.props.survey.headerView === "advanced" && this.props.survey.renderedHasHeader)) {
60260
- return null;
60261
- }
60262
- return (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div", { className: this.model.coverClasses, style: { height: this.model.renderedHeight } },
60263
- this.model.backgroundImage ? react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div", { style: this.model.backgroundImageStyle, className: this.model.backgroundImageClasses }) : null,
60264
- react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div", { className: this.model.contentClasses }, this.model.cells.map(function (cell, index) { return react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement(CoverCellComponent, { key: index, model: cell }); }))));
60265
- };
60266
- return CoverComponent;
60267
- }(_reactquestion_element__WEBPACK_IMPORTED_MODULE_1__["SurveyElementBase"]));
60268
-
60269
- _element_factory__WEBPACK_IMPORTED_MODULE_2__["ReactElementFactory"].Instance.registerElement("sv-cover", function (props) {
60270
- return react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement(CoverComponent, props);
60271
- });
60272
-
60273
-
60274
60417
  /***/ }),
60275
60418
 
60276
60419
  /***/ "./src/react/components/file/file-choose-button.tsx":
@@ -60419,6 +60562,144 @@ _element_factory__WEBPACK_IMPORTED_MODULE_3__["ReactElementFactory"].Instance.re
60419
60562
  });
60420
60563
 
60421
60564
 
60565
+ /***/ }),
60566
+
60567
+ /***/ "./src/react/components/header.tsx":
60568
+ /*!*****************************************!*\
60569
+ !*** ./src/react/components/header.tsx ***!
60570
+ \*****************************************/
60571
+ /*! exports provided: HeaderMobile, HeaderCell, Header */
60572
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
60573
+
60574
+ "use strict";
60575
+ __webpack_require__.r(__webpack_exports__);
60576
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "HeaderMobile", function() { return HeaderMobile; });
60577
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "HeaderCell", function() { return HeaderCell; });
60578
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Header", function() { return Header; });
60579
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "react");
60580
+ /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
60581
+ /* harmony import */ var _reactquestion_element__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../reactquestion_element */ "./src/react/reactquestion_element.tsx");
60582
+ /* harmony import */ var _element_factory__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../element-factory */ "./src/react/element-factory.tsx");
60583
+ /* harmony import */ var _title_title_element__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./title/title-element */ "./src/react/components/title/title-element.tsx");
60584
+ var __extends = (undefined && undefined.__extends) || (function () {
60585
+ var extendStatics = function (d, b) {
60586
+ extendStatics = Object.setPrototypeOf ||
60587
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
60588
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
60589
+ return extendStatics(d, b);
60590
+ };
60591
+ return function (d, b) {
60592
+ if (typeof b !== "function" && b !== null)
60593
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
60594
+ extendStatics(d, b);
60595
+ function __() { this.constructor = d; }
60596
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
60597
+ };
60598
+ })();
60599
+
60600
+
60601
+
60602
+
60603
+ var HeaderMobile = /** @class */ (function (_super) {
60604
+ __extends(HeaderMobile, _super);
60605
+ function HeaderMobile() {
60606
+ return _super !== null && _super.apply(this, arguments) || this;
60607
+ }
60608
+ Object.defineProperty(HeaderMobile.prototype, "model", {
60609
+ get: function () {
60610
+ return this.props.model;
60611
+ },
60612
+ enumerable: false,
60613
+ configurable: true
60614
+ });
60615
+ HeaderMobile.prototype.renderLogoImage = function () {
60616
+ var componentName = this.model.survey.getElementWrapperComponentName(this.model.survey, "logo-image");
60617
+ var componentData = this.model.survey.getElementWrapperComponentData(this.model.survey, "logo-image");
60618
+ return _element_factory__WEBPACK_IMPORTED_MODULE_2__["ReactElementFactory"].Instance.createElement(componentName, {
60619
+ data: componentData,
60620
+ });
60621
+ };
60622
+ HeaderMobile.prototype.render = function () {
60623
+ return (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div", { className: "sv-header--mobile" },
60624
+ this.model.survey.hasLogo ? (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div", { className: "sv-header__logo" }, this.renderLogoImage())) : null,
60625
+ this.model.survey.hasTitle ? (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div", { className: "sv-header__title", style: { maxWidth: this.model.textAreaWidth } },
60626
+ react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement(_title_title_element__WEBPACK_IMPORTED_MODULE_3__["TitleElement"], { element: this.model.survey }))) : null,
60627
+ this.model.survey.renderedHasDescription ? (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div", { className: "sv-header__description", style: { maxWidth: this.model.textAreaWidth } },
60628
+ react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("h5", { className: this.model.survey.css.description }, _reactquestion_element__WEBPACK_IMPORTED_MODULE_1__["SurveyElementBase"].renderLocString(this.model.survey.locDescription)))) : null));
60629
+ };
60630
+ return HeaderMobile;
60631
+ }(react__WEBPACK_IMPORTED_MODULE_0___default.a.Component));
60632
+
60633
+ var HeaderCell = /** @class */ (function (_super) {
60634
+ __extends(HeaderCell, _super);
60635
+ function HeaderCell() {
60636
+ return _super !== null && _super.apply(this, arguments) || this;
60637
+ }
60638
+ Object.defineProperty(HeaderCell.prototype, "model", {
60639
+ get: function () {
60640
+ return this.props.model;
60641
+ },
60642
+ enumerable: false,
60643
+ configurable: true
60644
+ });
60645
+ HeaderCell.prototype.renderLogoImage = function () {
60646
+ var componentName = this.model.survey.getElementWrapperComponentName(this.model.survey, "logo-image");
60647
+ var componentData = this.model.survey.getElementWrapperComponentData(this.model.survey, "logo-image");
60648
+ return _element_factory__WEBPACK_IMPORTED_MODULE_2__["ReactElementFactory"].Instance.createElement(componentName, {
60649
+ data: componentData,
60650
+ });
60651
+ };
60652
+ HeaderCell.prototype.render = function () {
60653
+ return (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div", { className: this.model.css, style: this.model.style },
60654
+ react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div", { className: "sv-header__cell-content", style: this.model.contentStyle },
60655
+ this.model.showLogo ? (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div", { className: "sv-header__logo" }, this.renderLogoImage())) : null,
60656
+ this.model.showTitle ? (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div", { className: "sv-header__title", style: { maxWidth: this.model.textAreaWidth } },
60657
+ react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement(_title_title_element__WEBPACK_IMPORTED_MODULE_3__["TitleElement"], { element: this.model.survey }))) : null,
60658
+ this.model.showDescription ? (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div", { className: "sv-header__description", style: { maxWidth: this.model.textAreaWidth } },
60659
+ react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("h5", { className: this.model.survey.css.description }, _reactquestion_element__WEBPACK_IMPORTED_MODULE_1__["SurveyElementBase"].renderLocString(this.model.survey.locDescription)))) : null)));
60660
+ };
60661
+ return HeaderCell;
60662
+ }(react__WEBPACK_IMPORTED_MODULE_0___default.a.Component));
60663
+
60664
+ var Header = /** @class */ (function (_super) {
60665
+ __extends(Header, _super);
60666
+ function Header() {
60667
+ return _super !== null && _super.apply(this, arguments) || this;
60668
+ }
60669
+ Object.defineProperty(Header.prototype, "model", {
60670
+ get: function () {
60671
+ return this.props.model;
60672
+ },
60673
+ enumerable: false,
60674
+ configurable: true
60675
+ });
60676
+ Header.prototype.getStateElement = function () {
60677
+ return this.model;
60678
+ };
60679
+ Header.prototype.renderElement = function () {
60680
+ this.model.survey = this.props.survey;
60681
+ if (!(this.props.survey.headerView === "advanced" && this.props.survey.renderedHasHeader)) {
60682
+ return null;
60683
+ }
60684
+ var headerContent = null;
60685
+ if (this.props.survey.isMobile) {
60686
+ headerContent = react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement(HeaderMobile, { model: this.model });
60687
+ }
60688
+ else {
60689
+ headerContent = (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div", { className: this.model.contentClasses, style: { maxWidth: this.model.maxWidth } }, this.model.cells.map(function (cell, index) { return react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement(HeaderCell, { key: index, model: cell }); })));
60690
+ }
60691
+ return (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div", { className: this.model.headerClasses, style: { height: this.model.renderedHeight } },
60692
+ this.model.backgroundImage ? react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div", { style: this.model.backgroundImageStyle, className: this.model.backgroundImageClasses }) : null,
60693
+ headerContent));
60694
+ };
60695
+ return Header;
60696
+ }(_reactquestion_element__WEBPACK_IMPORTED_MODULE_1__["SurveyElementBase"]));
60697
+
60698
+ _element_factory__WEBPACK_IMPORTED_MODULE_2__["ReactElementFactory"].Instance.registerElement("sv-header", function (props) {
60699
+ return react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement(Header, props);
60700
+ });
60701
+
60702
+
60422
60703
  /***/ }),
60423
60704
 
60424
60705
  /***/ "./src/react/components/list/list-item.tsx":
@@ -62626,7 +62907,7 @@ var SurveyQuestionDropdownBase = /** @class */ (function (_super) {
62626
62907
  SurveyQuestionDropdownBase.prototype.createClearButton = function () {
62627
62908
  if (!this.question.allowClear || !this.question.cssClasses.cleanButtonIconId)
62628
62909
  return null;
62629
- var style = { display: this.question.isEmpty() ? "none" : "" };
62910
+ var style = { display: !this.question.showClearButton ? "none" : "" };
62630
62911
  return (react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { className: this.question.cssClasses.cleanButton, style: style, onClick: this.clear },
62631
62912
  react__WEBPACK_IMPORTED_MODULE_0__["createElement"](_components_svg_icon_svg_icon__WEBPACK_IMPORTED_MODULE_3__["SvgIcon"], { className: this.question.cssClasses.cleanButtonSvg, iconName: this.question.cssClasses.cleanButtonIconId, title: this.question.clearCaption, size: "auto" })));
62632
62913
  };
@@ -66415,7 +66696,7 @@ var SurveyQuestionFile = /** @class */ (function (_super) {
66415
66696
  var actionsContainer = this.question.actionsContainerVisible ? react__WEBPACK_IMPORTED_MODULE_0__["createElement"](_components_action_bar_action_bar__WEBPACK_IMPORTED_MODULE_1__["SurveyActionBar"], { model: this.question.actionsContainer }) : null;
66416
66697
  var noFileChosen = this.question.isEmpty() ? (react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("span", { className: this.question.cssClasses.noFileChosen }, this.question.noFileChosenCaption)) : null;
66417
66698
  return (react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { className: this.question.getFileDecoratorCss() },
66418
- react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("span", { className: this.question.cssClasses.dragAreaPlaceholder }, this.question.renderedPlaceholder),
66699
+ react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("span", { className: this.question.cssClasses.dragAreaPlaceholder }, this.renderLocString(this.question.locRenderedPlaceholder)),
66419
66700
  react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { className: this.question.cssClasses.wrapper },
66420
66701
  chooseButton,
66421
66702
  actionsContainer,
@@ -68094,18 +68375,21 @@ var SurveyQuestionRankingItem = /** @class */ (function (_super) {
68094
68375
  enumerable: false,
68095
68376
  configurable: true
68096
68377
  });
68378
+ SurveyQuestionRankingItem.prototype.renderEmptyIcon = function () {
68379
+ return (react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("svg", null,
68380
+ react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("use", { xlinkHref: this.question.dashSvgIcon })));
68381
+ };
68097
68382
  SurveyQuestionRankingItem.prototype.renderElement = function () {
68098
68383
  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 },
68099
68384
  react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { tabIndex: -1, style: { outline: "none" } },
68100
68385
  react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { className: this.cssClasses.itemGhostNode }),
68101
68386
  react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { className: this.cssClasses.itemContent },
68102
68387
  react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { className: this.cssClasses.itemIconContainer },
68103
- react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("svg", { width: "10", height: "16", viewBox: "0 0 10 16", className: this.question.getIconHoverCss(), xmlns: "http://www.w3.org/2000/svg" },
68104
- react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("path", { d: "M6 2C6 0.9 6.9 0 8 0C9.1 0 10 0.9 10 2C10 3.1 9.1 4 8 4C6.9 4 6 3.1 6 2ZM2 0C0.9 0 0 0.9 0 2C0 3.1 0.9 4 2 4C3.1 4 4 3.1 4 2C4 0.9 3.1 0 2 0ZM8 6C6.9 6 6 6.9 6 8C6 9.1 6.9 10 8 10C9.1 10 10 9.1 10 8C10 6.9 9.1 6 8 6ZM2 6C0.9 6 0 6.9 0 8C0 9.1 0.9 10 2 10C3.1 10 4 9.1 4 8C4 6.9 3.1 6 2 6ZM8 12C6.9 12 6 12.9 6 14C6 15.1 6.9 16 8 16C9.1 16 10 15.1 10 14C10 12.9 9.1 12 8 12ZM2 12C0.9 12 0 12.9 0 14C0 15.1 0.9 16 2 16C3.1 16 4 15.1 4 14C4 12.9 3.1 12 2 12Z" })),
68105
- react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("svg", { width: "10", height: "24", viewBox: "0 0 10 24", className: this.question.getIconFocusCss(), xmlns: "http://www.w3.org/2000/svg" },
68106
- react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("path", { d: "M10 5L5 0L0 5H4V9H6V5H10Z" }),
68107
- react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("path", { d: "M6 19V15H4V19H0L5 24L10 19H6Z" }))),
68108
- react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { className: this.question.getItemIndexClasses(this.item) }, this.unrankedItem ? "" : this.indexText),
68388
+ react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("svg", { className: this.question.getIconHoverCss() },
68389
+ react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("use", { xlinkHref: this.question.dragDropSvgIcon })),
68390
+ react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("svg", { className: this.question.getIconFocusCss() },
68391
+ react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("use", { xlinkHref: this.question.arrowsSvgIcon }))),
68392
+ react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { className: this.question.getItemIndexClasses(this.item) }, (!this.unrankedItem && this.indexText) ? this.indexText : this.renderEmptyIcon()),
68109
68393
  react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { className: this.cssClasses.controlLabel }, this.text)))));
68110
68394
  };
68111
68395
  return SurveyQuestionRankingItem;
@@ -68171,7 +68455,7 @@ var SurveyQuestionRating = /** @class */ (function (_super) {
68171
68455
  this.setState({ value: this.question.value });
68172
68456
  };
68173
68457
  SurveyQuestionRating.prototype.renderItem = function (item, index) {
68174
- var renderedItem = _element_factory__WEBPACK_IMPORTED_MODULE_3__["ReactElementFactory"].Instance.createElement(this.question.itemComponentName, {
68458
+ var renderedItem = _element_factory__WEBPACK_IMPORTED_MODULE_3__["ReactElementFactory"].Instance.createElement(this.question.itemComponent, {
68175
68459
  question: this.question,
68176
68460
  item: item,
68177
68461
  index: index,
@@ -68724,7 +69008,7 @@ var SurveyQuestionSignaturePad = /** @class */ (function (_super) {
68724
69008
  var cssClasses = this.question.cssClasses;
68725
69009
  var clearButton = this.renderCleanButton();
68726
69010
  return (react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { className: cssClasses.root, ref: function (root) { return (_this.setControl(root)); }, style: { height: this.question.signatureHeight, width: this.question.signatureWidth } },
68727
- react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { className: cssClasses.placeholder, style: { display: this.question.needShowPlaceholder() ? "" : "none" } }, this.question.placeHolderText),
69011
+ react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { className: cssClasses.placeholder, style: { display: this.question.needShowPlaceholder() ? "" : "none" } }, this.renderLocString(this.question.locPlaceholder)),
68728
69012
  react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", null,
68729
69013
  this.renderBackgroundImage(),
68730
69014
  react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("canvas", { tabIndex: 0, className: this.question.cssClasses.canvas })),
@@ -69684,8 +69968,8 @@ var settings = {
69684
69968
  * @param message A message to be displayed in the confirm dialog window.
69685
69969
  * @param callback A callback function that should be called with `true` if a user confirms an action or `false` otherwise.
69686
69970
  */
69687
- confirmActionAsync: function (message, callback) {
69688
- return Object(_utils_utils__WEBPACK_IMPORTED_MODULE_0__["showConfirmDialog"])(message, callback);
69971
+ confirmActionAsync: function (message, callback, applyTitle) {
69972
+ return Object(_utils_utils__WEBPACK_IMPORTED_MODULE_0__["showConfirmDialog"])(message, callback, applyTitle);
69689
69973
  },
69690
69974
  /**
69691
69975
  * A minimum width value for all survey elements.
@@ -69720,6 +70004,12 @@ var settings = {
69720
70004
  notifications: {
69721
70005
  lifetime: 2000
69722
70006
  },
70007
+ /**
70008
+ * Specifies how many milliseconds a survey should wait before it automatically switches to the next page. Applies only when [auto-advance](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#goNextPageAutomatic) is enabled.
70009
+ *
70010
+ * Default value: 300
70011
+ */
70012
+ autoAdvanceDelay: 300,
69723
70013
  /**
69724
70014
  * Specifies the direction in which to lay out Checkbox and Radiogroup items. This setting affects the resulting UI when items are arranged in [more than one column](https://surveyjs.io/form-library/documentation/api-reference/checkbox-question-model#colCount).
69725
70015
  *
@@ -71677,7 +71967,8 @@ __webpack_require__.r(__webpack_exports__);
71677
71967
  /* harmony import */ var _actions_container__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./actions/container */ "./src/actions/container.ts");
71678
71968
  /* harmony import */ var _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./utils/cssClassBuilder */ "./src/utils/cssClassBuilder.ts");
71679
71969
  /* harmony import */ var _notifier__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./notifier */ "./src/notifier.ts");
71680
- /* harmony import */ var _cover__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./cover */ "./src/cover.ts");
71970
+ /* harmony import */ var _header__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./header */ "./src/header.ts");
71971
+ /* harmony import */ var _surveytimer__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./surveytimer */ "./src/surveytimer.ts");
71681
71972
  var __extends = (undefined && undefined.__extends) || (function () {
71682
71973
  var extendStatics = function (d, b) {
71683
71974
  extendStatics = Object.setPrototypeOf ||
@@ -71718,6 +72009,7 @@ var __decorate = (undefined && undefined.__decorate) || function (decorators, ta
71718
72009
 
71719
72010
 
71720
72011
 
72012
+
71721
72013
 
71722
72014
 
71723
72015
  /**
@@ -71734,12 +72026,6 @@ var SurveyModel = /** @class */ (function (_super) {
71734
72026
  var _this = _super.call(this) || this;
71735
72027
  _this.valuesHash = {};
71736
72028
  _this.variablesHash = {};
71737
- _this.onThemeApplying = new _base__WEBPACK_IMPORTED_MODULE_2__["EventBase"]();
71738
- /**
71739
- * An event that is raised after a [theme](/form-library/documentation/manage-default-themes-and-styles) is [applied](#applyTheme) to the survey.
71740
- * @see applyTheme
71741
- */
71742
- _this.onThemeApplied = new _base__WEBPACK_IMPORTED_MODULE_2__["EventBase"]();
71743
72029
  //#region Event declarations
71744
72030
  /**
71745
72031
  * An event that is raised after a [trigger](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#triggers) is executed.
@@ -73011,7 +73297,7 @@ var SurveyModel = /** @class */ (function (_super) {
73011
73297
  /**
73012
73298
  * Specifies whether to focus the first question on the page on survey startup or when users switch between pages.
73013
73299
  *
73014
- * Default value: `true`
73300
+ * Default value: `false` in v1.9.114 and later, `true` in earlier versions
73015
73301
  * @see focusOnFirstError
73016
73302
  * @see focusFirstQuestion
73017
73303
  * @see focusQuestion
@@ -73330,6 +73616,7 @@ var SurveyModel = /** @class */ (function (_super) {
73330
73616
  * > If any of the following questions is answered last, the survey does not switch to the next page: Checkboxes, Yes/No (Boolean) (rendered as Checkbox), Long Text, Signature, Image Picker (with Multi Select), File Upload, Single-Select Matrix (not all rows are answered), Dynamic Matrix, Dynamic Panel.
73331
73617
  *
73332
73618
  * [View Demo](https://surveyjs.io/form-library/examples/automatically-move-to-next-page-if-answer-selected/ (linkStyle))
73619
+ * @see [`settings.autoAdvanceDelay`](https://surveyjs.io/form-library/documentation/api-reference/settings#autoAdvanceDelay)
73333
73620
  */
73334
73621
  get: function () {
73335
73622
  return this.getPropertyValue("goNextPageAutomatic");
@@ -73345,6 +73632,7 @@ var SurveyModel = /** @class */ (function (_super) {
73345
73632
  * Specifies whether to complete the survey automatically after a user answers all questions on the last page. Applies only if the [`goNextPageAutomatic`](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#goNextPageAutomatic) property is `true`.
73346
73633
  *
73347
73634
  * Default value: `true`
73635
+ * @see [`settings.autoAdvanceDelay`](https://surveyjs.io/form-library/documentation/api-reference/settings#autoAdvanceDelay)
73348
73636
  */
73349
73637
  get: function () {
73350
73638
  return this.getPropertyValue("allowCompleteSurveyAutomatic", true);
@@ -73907,7 +74195,7 @@ var SurveyModel = /** @class */ (function (_super) {
73907
74195
  if (this._isMobile !== newVal) {
73908
74196
  this._isMobile = newVal;
73909
74197
  this.updateCss();
73910
- this.getAllQuestions().map(function (q) { return q.setIsMobile(newVal); });
74198
+ this.getAllQuestions().forEach(function (q) { return q.setIsMobile(newVal); });
73911
74199
  }
73912
74200
  };
73913
74201
  Object.defineProperty(SurveyModel.prototype, "isMobile", {
@@ -76863,6 +77151,7 @@ var SurveyModel = /** @class */ (function (_super) {
76863
77151
  };
76864
77152
  SurveyModel.prototype.processResponsiveness = function (width, mobileWidth) {
76865
77153
  var isMobile = width < mobileWidth;
77154
+ this.layoutElements.forEach(function (layoutElement) { return layoutElement.processResponsiveness && layoutElement.processResponsiveness(width); });
76866
77155
  if (this.isMobile === isMobile) {
76867
77156
  return false;
76868
77157
  }
@@ -78505,6 +78794,7 @@ var SurveyModel = /** @class */ (function (_super) {
78505
78794
  return baseName + index;
78506
78795
  };
78507
78796
  SurveyModel.prototype.tryGoNextPageAutomatic = function (name) {
78797
+ var _this = this;
78508
78798
  if (!!this.isEndLoadingFromJson ||
78509
78799
  !this.goNextPageAutomatic ||
78510
78800
  !this.currentPage)
@@ -78523,22 +78813,24 @@ var SurveyModel = /** @class */ (function (_super) {
78523
78813
  if (questions[i].hasInput && questions[i].isEmpty())
78524
78814
  return;
78525
78815
  }
78526
- if (!this.checkIsCurrentPageHasErrors(false)) {
78527
- if (!this.isLastPage) {
78528
- this.nextPage();
78816
+ if (this.isLastPage && (this.goNextPageAutomatic !== true || !this.allowCompleteSurveyAutomatic))
78817
+ return;
78818
+ if (this.checkIsCurrentPageHasErrors(false))
78819
+ return;
78820
+ var goNextPage = function () {
78821
+ if (!_this.isLastPage) {
78822
+ _this.nextPage();
78529
78823
  }
78530
78824
  else {
78531
- if (this.goNextPageAutomatic === true &&
78532
- this.allowCompleteSurveyAutomatic) {
78533
- if (this.isShowPreviewBeforeComplete) {
78534
- this.showPreview();
78535
- }
78536
- else {
78537
- this.completeLastPage();
78538
- }
78825
+ if (_this.isShowPreviewBeforeComplete) {
78826
+ _this.showPreview();
78827
+ }
78828
+ else {
78829
+ _this.completeLastPage();
78539
78830
  }
78540
78831
  }
78541
- }
78832
+ };
78833
+ _surveytimer__WEBPACK_IMPORTED_MODULE_21__["surveyTimerFunctions"].safeTimeOut(goNextPage, _settings__WEBPACK_IMPORTED_MODULE_14__["settings"].autoAdvanceDelay);
78542
78834
  };
78543
78835
  /**
78544
78836
  * Returns a comment value from a question with a specified `name`.
@@ -79544,7 +79836,6 @@ var SurveyModel = /** @class */ (function (_super) {
79544
79836
  *
79545
79837
  * [Themes & Styles](/form-library/documentation/manage-default-themes-and-styles (linkStyle))
79546
79838
  * @param theme An [`ITheme`](/form-library/documentation/api-reference/itheme) object with theme settings.
79547
- * @see onThemeApplied
79548
79839
  */
79549
79840
  SurveyModel.prototype.applyTheme = function (theme) {
79550
79841
  var _this = this;
@@ -79553,13 +79844,14 @@ var SurveyModel = /** @class */ (function (_super) {
79553
79844
  Object.keys(theme).forEach(function (key) {
79554
79845
  if (key === "header") {
79555
79846
  _this.removeLayoutElement("cover");
79556
- var newCoverModel = new _cover__WEBPACK_IMPORTED_MODULE_20__["Cover"]();
79557
- newCoverModel.fromTheme(theme);
79847
+ var newCoverModel_1 = new _header__WEBPACK_IMPORTED_MODULE_20__["Cover"]();
79848
+ newCoverModel_1.fromTheme(theme);
79558
79849
  _this.layoutElements.push({
79559
79850
  id: "cover",
79560
79851
  container: "header",
79561
- component: "sv-cover",
79562
- data: newCoverModel
79852
+ component: "sv-header",
79853
+ data: newCoverModel_1,
79854
+ processResponsiveness: function (width) { return newCoverModel_1.processResponsiveness(width); }
79563
79855
  });
79564
79856
  }
79565
79857
  if (key === "isPanelless") {
@@ -79569,7 +79861,10 @@ var SurveyModel = /** @class */ (function (_super) {
79569
79861
  _this[key] = theme[key];
79570
79862
  }
79571
79863
  });
79572
- this.onThemeApplied.fire(this, { theme: theme });
79864
+ this.themeChanged(theme);
79865
+ };
79866
+ SurveyModel.prototype.themeChanged = function (theme) {
79867
+ this.getAllQuestions().forEach(function (q) { return q.themeChanged(theme); });
79573
79868
  };
79574
79869
  /**
79575
79870
  * Disposes of the survey model.
@@ -79647,7 +79942,7 @@ var SurveyModel = /** @class */ (function (_super) {
79647
79942
  if (newValue === "advanced") {
79648
79943
  var layoutElement = target.layoutElements.filter(function (a) { return a.id === "cover"; })[0];
79649
79944
  if (!layoutElement) {
79650
- var cover = new _cover__WEBPACK_IMPORTED_MODULE_20__["Cover"]();
79945
+ var cover = new _header__WEBPACK_IMPORTED_MODULE_20__["Cover"]();
79651
79946
  cover.logoPositionX = target.logoPosition === "right" ? "right" : "left";
79652
79947
  cover.logoPositionY = "middle";
79653
79948
  cover.titlePositionX = target.logoPosition === "right" ? "left" : "right";
@@ -79658,8 +79953,9 @@ var SurveyModel = /** @class */ (function (_super) {
79658
79953
  target.layoutElements.unshift({
79659
79954
  id: "cover",
79660
79955
  container: "header",
79661
- component: "sv-cover",
79662
- data: cover
79956
+ component: "sv-header",
79957
+ data: cover,
79958
+ processResponsiveness: function (width) { return cover.processResponsiveness(width); }
79663
79959
  });
79664
79960
  }
79665
79961
  }
@@ -79754,7 +80050,7 @@ _jsonobject__WEBPACK_IMPORTED_MODULE_1__["Serializer"].addClass("survey", [
79754
80050
  default: "left",
79755
80051
  choices: ["none", "left", "right", "top", "bottom"],
79756
80052
  },
79757
- { name: "focusFirstQuestionAutomatic:boolean", default: true },
80053
+ { name: "focusFirstQuestionAutomatic:boolean" },
79758
80054
  { name: "focusOnFirstError:boolean", default: true },
79759
80055
  { name: "completedHtml:html", serializationProperty: "locCompletedHtml" },
79760
80056
  {
@@ -80467,6 +80763,7 @@ var TOCModel = /** @class */ (function () {
80467
80763
  };
80468
80764
  this.listModel = createTOCListModel(survey, function () { _this.popupModel.isVisible = false; });
80469
80765
  this.popupModel = new _popup__WEBPACK_IMPORTED_MODULE_4__["PopupModel"]("sv-list", { model: this.listModel });
80766
+ this.popupModel.overlayDisplayMode = "overlay";
80470
80767
  this.popupModel.displayMode = new _base__WEBPACK_IMPORTED_MODULE_1__["ComputedUpdater"](function () { return _this.isMobile ? "overlay" : "popup"; });
80471
80768
  }
80472
80769
  Object.defineProperty(TOCModel.prototype, "isMobile", {
@@ -80509,15 +80806,22 @@ __webpack_require__.r(__webpack_exports__);
80509
80806
 
80510
80807
  var surveyTimerFunctions = {
80511
80808
  setTimeout: function (func) {
80512
- if (typeof window === "undefined")
80513
- return 0;
80514
- return window.setTimeout(func, 1000);
80809
+ return surveyTimerFunctions.safeTimeOut(func, 1000);
80515
80810
  },
80516
80811
  clearTimeout: function (timerId) {
80517
80812
  if (typeof window === "undefined")
80518
80813
  return;
80519
80814
  window.clearTimeout(timerId);
80520
80815
  },
80816
+ safeTimeOut: function (func, delay) {
80817
+ if (typeof window === "undefined" || delay <= 0) {
80818
+ func();
80819
+ return 0;
80820
+ }
80821
+ else {
80822
+ return window.setTimeout(func, delay);
80823
+ }
80824
+ }
80521
80825
  };
80522
80826
  var SurveyTimer = /** @class */ (function () {
80523
80827
  function SurveyTimer() {
@@ -82681,7 +82985,7 @@ var Logger = /** @class */ (function () {
82681
82985
  return Logger;
82682
82986
  }());
82683
82987
 
82684
- function showConfirmDialog(message, callback) {
82988
+ function showConfirmDialog(message, callback, applyTitle) {
82685
82989
  var locStr = new _localizablestring__WEBPACK_IMPORTED_MODULE_0__["LocalizableString"](undefined);
82686
82990
  var popupViewModel = _settings__WEBPACK_IMPORTED_MODULE_1__["settings"].showDialog({
82687
82991
  componentName: "sv-string-viewer",
@@ -82704,7 +83008,7 @@ function showConfirmDialog(message, callback) {
82704
83008
  var cancelBtn = toolbar.getActionById("cancel");
82705
83009
  cancelBtn.title = _surveyStrings__WEBPACK_IMPORTED_MODULE_2__["surveyLocalization"].getString("cancel");
82706
83010
  cancelBtn.innerCss = "sv-popup__body-footer-item sv-popup__button sd-btn sd-btn--small";
82707
- applyBtn.title = _surveyStrings__WEBPACK_IMPORTED_MODULE_2__["surveyLocalization"].getString("ok");
83011
+ applyBtn.title = applyTitle || _surveyStrings__WEBPACK_IMPORTED_MODULE_2__["surveyLocalization"].getString("ok");
82708
83012
  applyBtn.innerCss = "sv-popup__body-footer-item sv-popup__button sv-popup__button--danger sd-btn sd-btn--small sd-btn--danger";
82709
83013
  popupViewModel.width = "452px";
82710
83014
  return true;