survey-react 1.9.113 → 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.113
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,351 +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
- var surveyWidthMode = !!this.survey && this.survey.calculateWidthMode();
4552
- this.maxWidth = this.inheritWidthFrom === "survey" && !!surveyWidthMode && surveyWidthMode === "static" && this.survey.renderedWidth;
4553
- this.contentClasses = new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_2__["CssClassBuilder"]()
4554
- .append("sv-conver__content")
4555
- .append("sv-conver__content--static", this.inheritWidthFrom === "survey" && !!surveyWidthMode && surveyWidthMode === "static")
4556
- .append("sv-conver__content--responsive", this.inheritWidthFrom === "container" || (!!surveyWidthMode && surveyWidthMode === "responsive"))
4557
- .toString();
4558
- };
4559
- Cover.prototype.updateBackgroundImageClasses = function () {
4560
- this.backgroundImageClasses = new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_2__["CssClassBuilder"]()
4561
- .append("sv-cover__background-image")
4562
- .append("sv-cover__background-image--contain", this.backgroundImageFit === "contain")
4563
- .append("sv-cover__background-image--tile", this.backgroundImageFit === "tile")
4564
- .toString();
4565
- };
4566
- Cover.prototype.fromTheme = function (theme) {
4567
- _super.prototype.fromJSON.call(this, theme.header);
4568
- if (!!theme.cssVariables) {
4569
- this.backgroundColor = theme.cssVariables["--sjs-cover-backcolor"];
4570
- }
4571
- };
4572
- Cover.prototype.getType = function () {
4573
- return "cover";
4574
- };
4575
- Object.defineProperty(Cover.prototype, "renderedHeight", {
4576
- get: function () {
4577
- return this.height ? this.height + "px" : undefined;
4578
- },
4579
- enumerable: false,
4580
- configurable: true
4581
- });
4582
- Object.defineProperty(Cover.prototype, "renderedtextAreaWidth", {
4583
- get: function () {
4584
- return this.textAreaWidth ? this.textAreaWidth + "px" : undefined;
4585
- },
4586
- enumerable: false,
4587
- configurable: true
4588
- });
4589
- Object.defineProperty(Cover.prototype, "survey", {
4590
- get: function () {
4591
- return this._survey;
4592
- },
4593
- set: function (newValue) {
4594
- var _this = this;
4595
- if (this._survey === newValue)
4596
- return;
4597
- this._survey = newValue;
4598
- if (!!newValue) {
4599
- this.updateContentClasses();
4600
- this._survey.onPropertyChanged.add(function (sender, options) {
4601
- if (options.name == "widthMode" || options.name == "width") {
4602
- _this.updateContentClasses();
4603
- }
4604
- });
4605
- }
4606
- },
4607
- enumerable: false,
4608
- configurable: true
4609
- });
4610
- Object.defineProperty(Cover.prototype, "backgroundImageStyle", {
4611
- get: function () {
4612
- if (!this.backgroundImage)
4613
- return null;
4614
- return {
4615
- opacity: this.backgroundImageOpacity,
4616
- backgroundImage: this.renderBackgroundImage,
4617
- backgroundSize: this.calcBackgroundSize(this.backgroundImageFit),
4618
- };
4619
- },
4620
- enumerable: false,
4621
- configurable: true
4622
- });
4623
- Cover.prototype.propertyValueChanged = function (name, oldValue, newValue) {
4624
- _super.prototype.propertyValueChanged.call(this, name, oldValue, newValue);
4625
- if (name === "backgroundColor" || name === "backgroundImage" || name === "overlapEnabled") {
4626
- this.updateCoverClasses();
4627
- }
4628
- if (name === "inheritWidthFrom") {
4629
- this.updateContentClasses();
4630
- }
4631
- if (name === "backgroundImageFit") {
4632
- this.updateBackgroundImageClasses();
4633
- }
4634
- };
4635
- __decorate([
4636
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
4637
- ], Cover.prototype, "height", void 0);
4638
- __decorate([
4639
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
4640
- ], Cover.prototype, "inheritWidthFrom", void 0);
4641
- __decorate([
4642
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
4643
- ], Cover.prototype, "textAreaWidth", void 0);
4644
- __decorate([
4645
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
4646
- ], Cover.prototype, "textGlowEnabled", void 0);
4647
- __decorate([
4648
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
4649
- ], Cover.prototype, "overlapEnabled", void 0);
4650
- __decorate([
4651
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
4652
- ], Cover.prototype, "backgroundColor", void 0);
4653
- __decorate([
4654
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])({
4655
- onSet: function (newVal, target) {
4656
- target.renderBackgroundImage = Object(_utils_utils__WEBPACK_IMPORTED_MODULE_3__["wrapUrlForBackgroundImage"])(newVal);
4657
- }
4658
- })
4659
- ], Cover.prototype, "backgroundImage", void 0);
4660
- __decorate([
4661
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
4662
- ], Cover.prototype, "renderBackgroundImage", void 0);
4663
- __decorate([
4664
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
4665
- ], Cover.prototype, "backgroundImageFit", void 0);
4666
- __decorate([
4667
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
4668
- ], Cover.prototype, "backgroundImageOpacity", void 0);
4669
- __decorate([
4670
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
4671
- ], Cover.prototype, "logoPositionX", void 0);
4672
- __decorate([
4673
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
4674
- ], Cover.prototype, "logoPositionY", void 0);
4675
- __decorate([
4676
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
4677
- ], Cover.prototype, "titlePositionX", void 0);
4678
- __decorate([
4679
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
4680
- ], Cover.prototype, "titlePositionY", void 0);
4681
- __decorate([
4682
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
4683
- ], Cover.prototype, "descriptionPositionX", void 0);
4684
- __decorate([
4685
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
4686
- ], Cover.prototype, "descriptionPositionY", void 0);
4687
- __decorate([
4688
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
4689
- ], Cover.prototype, "logoStyle", void 0);
4690
- __decorate([
4691
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
4692
- ], Cover.prototype, "titleStyle", void 0);
4693
- __decorate([
4694
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
4695
- ], Cover.prototype, "descriptionStyle", void 0);
4696
- __decorate([
4697
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
4698
- ], Cover.prototype, "coverClasses", void 0);
4699
- __decorate([
4700
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
4701
- ], Cover.prototype, "contentClasses", void 0);
4702
- __decorate([
4703
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
4704
- ], Cover.prototype, "maxWidth", void 0);
4705
- __decorate([
4706
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
4707
- ], Cover.prototype, "backgroundImageClasses", void 0);
4708
- return Cover;
4709
- }(_base__WEBPACK_IMPORTED_MODULE_0__["Base"]));
4710
-
4711
- _jsonobject__WEBPACK_IMPORTED_MODULE_1__["Serializer"].addClass("cover", [
4712
- { name: "height:number", minValue: 0, default: 256 },
4713
- { name: "inheritWidthFrom", default: "survey" },
4714
- { name: "textAreaWidth:number", minValue: 0, default: 512 },
4715
- { name: "textGlowEnabled:boolean" },
4716
- { name: "overlapEnabled:boolean" },
4717
- { name: "backgroundImage:file" },
4718
- { name: "backgroundImageOpacity:number", minValue: 0, maxValue: 1, default: 1 },
4719
- { name: "backgroundImageFit", default: "cover", choices: ["cover", "fill", "contain"] },
4720
- { name: "logoPositionX", default: "right" },
4721
- { name: "logoPositionY", default: "top" },
4722
- { name: "titlePositionX", default: "left" },
4723
- { name: "titlePositionY", default: "bottom" },
4724
- { name: "descriptionPositionX", default: "left" },
4725
- { name: "descriptionPositionY", default: "bottom" }
4726
- ], function () {
4727
- return new Cover();
4728
- });
4729
-
4730
-
4731
4386
  /***/ }),
4732
4387
 
4733
4388
  /***/ "./src/defaultCss/cssmodern.ts":
@@ -6886,7 +6541,7 @@ var DragDropChoices = /** @class */ (function (_super) {
6886
6541
  }
6887
6542
  var draggedElementShortcut = document.createElement("div");
6888
6543
  // draggedElementShortcut.innerText = text;
6889
- 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 ";
6890
6545
  var isDeepClone = true;
6891
6546
  var clone = (draggedElementNode
6892
6547
  .closest("[data-sv-drop-target-item-value]")
@@ -7555,7 +7210,7 @@ var DragDropMatrixRows = /** @class */ (function (_super) {
7555
7210
  var _this = this;
7556
7211
  var draggedElementShortcut = document.createElement("div");
7557
7212
  // draggedElementShortcut.innerText = text;
7558
- 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 ";
7559
7214
  var isDeepClone = true;
7560
7215
  if (!!draggedElementNode) {
7561
7216
  var row = (draggedElementNode
@@ -7731,7 +7386,7 @@ var DragDropRankingChoices = /** @class */ (function (_super) {
7731
7386
  DragDropRankingChoices.prototype.createDraggedElementShortcut = function (text, draggedElementNode, event) {
7732
7387
  var draggedElementShortcut = document.createElement("div");
7733
7388
  draggedElementShortcut.className = this.shortcutClass + " sv-ranking-shortcut";
7734
- 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 ";
7735
7390
  var isDeepClone = true;
7736
7391
  var clone = draggedElementNode.cloneNode(isDeepClone);
7737
7392
  draggedElementShortcut.appendChild(clone);
@@ -7865,13 +7520,6 @@ var DragDropRankingSelectToRank = /** @class */ (function (_super) {
7865
7520
  function DragDropRankingSelectToRank() {
7866
7521
  return _super !== null && _super.apply(this, arguments) || this;
7867
7522
  }
7868
- DragDropRankingSelectToRank.prototype.onStartDrag = function (event) {
7869
- var target = event.target;
7870
- var fromContainerNode = target.closest(".sv-ranking__container--from");
7871
- if (!!fromContainerNode) {
7872
- fromContainerNode.style.minHeight = fromContainerNode.offsetHeight + "px";
7873
- }
7874
- };
7875
7523
  DragDropRankingSelectToRank.prototype.findDropTargetNodeByDragOverNode = function (dragOverNode) {
7876
7524
  if (dragOverNode.dataset.ranking === "from-container" || dragOverNode.dataset.ranking === "to-container") {
7877
7525
  return dragOverNode;
@@ -9569,10 +9217,10 @@ __webpack_require__.r(__webpack_exports__);
9569
9217
  /* harmony import */ var _notifier__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ../../notifier */ "./src/notifier.ts");
9570
9218
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Notifier", function() { return _notifier__WEBPACK_IMPORTED_MODULE_64__["Notifier"]; });
9571
9219
 
9572
- /* harmony import */ var _cover__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ../../cover */ "./src/cover.ts");
9573
- /* 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"]; });
9574
9222
 
9575
- /* 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"]; });
9576
9224
 
9577
9225
  /* harmony import */ var _dxSurveyService__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ../../dxSurveyService */ "./src/dxSurveyService.ts");
9578
9226
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "dxSurveyService", function() { return _dxSurveyService__WEBPACK_IMPORTED_MODULE_66__["dxSurveyService"]; });
@@ -9692,8 +9340,8 @@ __webpack_require__.r(__webpack_exports__);
9692
9340
  //import "../../modern.scss";
9693
9341
  var Version;
9694
9342
  var ReleaseDate;
9695
- Version = "" + "1.9.113";
9696
- ReleaseDate = "" + "2023-10-17";
9343
+ Version = "" + "1.9.114";
9344
+ ReleaseDate = "" + "2023-10-25";
9697
9345
  function checkLibraryVersion(ver, libraryName) {
9698
9346
  if (Version != ver) {
9699
9347
  var str = "survey-core has version '" + Version + "' and " + libraryName
@@ -10793,7 +10441,7 @@ var defaultBootstrapMaterialCss = _plugins_themes_bootstrapmaterial_cssbootstrap
10793
10441
  /*!***************************************!*\
10794
10442
  !*** ./src/entries/react-ui-model.ts ***!
10795
10443
  \***************************************/
10796
- /*! 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 */
10797
10445
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
10798
10446
 
10799
10447
  "use strict";
@@ -11051,10 +10699,12 @@ __webpack_require__.r(__webpack_exports__);
11051
10699
  /* harmony import */ var _react_components_character_counter__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ../react/components/character-counter */ "./src/react/components/character-counter.tsx");
11052
10700
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "CharacterCounterComponent", function() { return _react_components_character_counter__WEBPACK_IMPORTED_MODULE_74__["CharacterCounterComponent"]; });
11053
10701
 
11054
- /* harmony import */ var _react_components_cover__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ../react/components/cover */ "./src/react/components/cover.tsx");
11055
- /* 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"]; });
11056
10704
 
11057
- /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "CoverComponent", function() { return _react_components_cover__WEBPACK_IMPORTED_MODULE_75__["CoverComponent"]; });
10705
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "HeaderCell", function() { return _react_components_header__WEBPACK_IMPORTED_MODULE_75__["HeaderCell"]; });
10706
+
10707
+ /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Header", function() { return _react_components_header__WEBPACK_IMPORTED_MODULE_75__["Header"]; });
11058
10708
 
11059
10709
  /* harmony import */ var _react_string_viewer__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ../react/string-viewer */ "./src/react/string-viewer.tsx");
11060
10710
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyLocStringViewer", function() { return _react_string_viewer__WEBPACK_IMPORTED_MODULE_76__["SurveyLocStringViewer"]; });
@@ -11155,7 +10805,7 @@ __webpack_require__.r(__webpack_exports__);
11155
10805
  /*!******************************!*\
11156
10806
  !*** ./src/entries/react.ts ***!
11157
10807
  \******************************/
11158
- /*! 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, 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 */
11159
10809
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
11160
10810
 
11161
10811
  "use strict";
@@ -11786,9 +11436,11 @@ __webpack_require__.r(__webpack_exports__);
11786
11436
 
11787
11437
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "CharacterCounterComponent", function() { return _react_ui_model__WEBPACK_IMPORTED_MODULE_3__["CharacterCounterComponent"]; });
11788
11438
 
11789
- /* 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"]; });
11790
11442
 
11791
- /* 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"]; });
11792
11444
 
11793
11445
  /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SurveyLocStringViewer", function() { return _react_ui_model__WEBPACK_IMPORTED_MODULE_3__["SurveyLocStringViewer"]; });
11794
11446
 
@@ -16612,6 +16264,384 @@ function propertyValue(params) {
16612
16264
  FunctionFactory.Instance.register("propertyValue", propertyValue);
16613
16265
 
16614
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
+
16615
16645
  /***/ }),
16616
16646
 
16617
16647
  /***/ "./src/helpers.ts":
@@ -17114,9 +17144,12 @@ var map = {
17114
17144
  "./chevron.svg": "./src/images/chevron.svg",
17115
17145
  "./clear_16x16.svg": "./src/images/clear_16x16.svg",
17116
17146
  "./collapseDetail.svg": "./src/images/collapseDetail.svg",
17147
+ "./drag-n-drop.svg": "./src/images/drag-n-drop.svg",
17117
17148
  "./expandDetail.svg": "./src/images/expandDetail.svg",
17118
17149
  "./loading.svg": "./src/images/loading.svg",
17119
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",
17120
17153
  "./rating-star-2.svg": "./src/images/rating-star-2.svg",
17121
17154
  "./rating-star-small-2.svg": "./src/images/rating-star-small-2.svg",
17122
17155
  "./rating-star-small.svg": "./src/images/rating-star-small.svg",
@@ -17520,6 +17553,17 @@ module.exports = "<svg viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\
17520
17553
 
17521
17554
  /***/ }),
17522
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
+
17523
17567
  /***/ "./src/images/expandDetail.svg":
17524
17568
  /*!*************************************!*\
17525
17569
  !*** ./src/images/expandDetail.svg ***!
@@ -17553,6 +17597,28 @@ module.exports = "<svg viewBox=\"0 0 48 48\"><g opacity=\"0.5\"><path d=\"M14 17
17553
17597
 
17554
17598
  /***/ }),
17555
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
+
17556
17622
  /***/ "./src/images/rating-star-2.svg":
17557
17623
  /*!**************************************!*\
17558
17624
  !*** ./src/images/rating-star-2.svg ***!
@@ -18365,7 +18431,11 @@ var __spreadArray = (undefined && undefined.__spreadArray) || function (to, from
18365
18431
  function ensureLocString(target, options, key) {
18366
18432
  var locString = target.getLocalizableString(key);
18367
18433
  if (!locString) {
18368
- 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);
18369
18439
  if (typeof options.localizable === "object" &&
18370
18440
  typeof options.localizable.onGetTextCallback === "function") {
18371
18441
  locString.onGetTextCallback = options.localizable.onGetTextCallback;
@@ -19694,7 +19764,7 @@ var JsonMetadata = /** @class */ (function () {
19694
19764
  if (prop.hasChoices) {
19695
19765
  var enumRes = prop.getChoices(null);
19696
19766
  if (Array.isArray(enumRes) && enumRes.length > 0) {
19697
- res.enum = enumRes;
19767
+ res.enum = this.getChoicesValues(enumRes);
19698
19768
  }
19699
19769
  }
19700
19770
  if (!!refType) {
@@ -19757,6 +19827,18 @@ var JsonMetadata = /** @class */ (function () {
19757
19827
  res.required = chemaProps.required;
19758
19828
  }
19759
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
+ };
19760
19842
  return JsonMetadata;
19761
19843
  }());
19762
19844
 
@@ -21228,7 +21310,7 @@ var arabicSurveyStrings = {
21228
21310
  loadingFile: "جار التحميل...",
21229
21311
  chooseFile: "اختر الملفات...",
21230
21312
  noFileChosen: "لم تقم باختيار ملف",
21231
- fileDragAreaPlaceholder: "اسحب ملفا وأفلته هنا أو انقر فوق الزر أدناه واختر ملفا لتحميله.",
21313
+ filePlaceholder: "اسحب ملفا وأفلته هنا أو انقر فوق الزر أدناه واختر ملفا لتحميله.",
21232
21314
  confirmDelete: "هل تريد حذف السجل؟",
21233
21315
  keyDuplicationError: "يجب أن تكون هذه القيمة فريدة.",
21234
21316
  addColumn: "أضف العمود",
@@ -21257,8 +21339,8 @@ var arabicSurveyStrings = {
21257
21339
  signaturePlaceHolder: "وقع هنا",
21258
21340
  chooseFileCaption: "اختر ملف",
21259
21341
  takePhotoCaption: "التقاط صورة",
21260
- cameraPlaceHolder: "انقر فوق الزر أدناه لالتقاط صورة باستخدام الكاميرا.",
21261
- fileCameraDragAreaPlaceHolder: "قم بسحب ملف وإفلاته أو تحديده لتحميله أو التقاط صورة باستخدام الكاميرا.",
21342
+ photoPlaceholder: "انقر فوق الزر أدناه لالتقاط صورة باستخدام الكاميرا.",
21343
+ fileOrPhotoPlaceholder: "قم بسحب ملف وإفلاته أو تحديده لتحميله أو التقاط صورة باستخدام الكاميرا.",
21262
21344
  replaceFileCaption: "استبدال الملف",
21263
21345
  removeFileCaption: "قم بإزالة هذا الملف",
21264
21346
  booleanCheckedLabel: "نعم",
@@ -21286,7 +21368,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ar"]
21286
21368
  // ratingOptionsCaption: "Select..." => "اختار..."
21287
21369
  // minError: "The value should not be less than {0}" => "يجب ألا تقل القيمة عن {0}"
21288
21370
  // maxError: "The value should not be greater than {0}" => "يجب ألا تزيد القيمة عن {0}"
21289
- // 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." => "اسحب ملفا وأفلته هنا أو انقر فوق الزر أدناه واختر ملفا لتحميله."
21290
21372
  // emptyRowsText: "There are no rows." => "لا توجد صفوف."
21291
21373
  // multipletext_itemname: "text" => "نص"
21292
21374
  // signaturePlaceHolder: "Sign here" => "وقع هنا"
@@ -21300,8 +21382,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ar"]
21300
21382
  // tagboxDoneButtonCaption: "OK" => "موافق"
21301
21383
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "يتم ترتيب جميع الخيارات"
21302
21384
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "قم بسحب وإسقاط الخيارات هنا لترتيبها"// takePhotoCaption: "Take Photo" => "التقاط صورة"
21303
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "انقر فوق الزر أدناه لالتقاط صورة باستخدام الكاميرا."
21304
- // 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." => "قم بسحب ملف وإفلاته أو تحديده لتحميله أو التقاط صورة باستخدام الكاميرا."
21305
21387
  // replaceFileCaption: "Replace file" => "استبدال الملف"
21306
21388
 
21307
21389
 
@@ -21366,7 +21448,7 @@ var basqueSurveyStrings = {
21366
21448
  loadingFile: "Kargatzen...",
21367
21449
  chooseFile: "Fitxategia(k) hautatu...",
21368
21450
  noFileChosen: "Ez da inolako fitxategirik hautatu",
21369
- 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.",
21370
21452
  confirmDelete: "¿Erregistroa borratu nahi al duzu?",
21371
21453
  keyDuplicationError: "Balio hau bakarra izan behar du.",
21372
21454
  addColumn: "Zutabe bat gehitu",
@@ -21395,8 +21477,8 @@ var basqueSurveyStrings = {
21395
21477
  signaturePlaceHolder: "Sinatu hemen",
21396
21478
  chooseFileCaption: "Fitxategia hautatu",
21397
21479
  takePhotoCaption: "Argazkia hartu",
21398
- cameraPlaceHolder: "Egin klik beheko botoian, kamerarekin argazki bat hartzeko.",
21399
- 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.",
21400
21482
  replaceFileCaption: "Artxiboa ordeztu",
21401
21483
  removeFileCaption: "Fitxategi hau ezabatu",
21402
21484
  booleanCheckedLabel: "Bai",
@@ -21422,7 +21504,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["eu"]
21422
21504
  // indexText: "{0} of {1}" => "{1} {0}"
21423
21505
  // panelDynamicTabTextFormat: "Panel {panelIndex}" => "Panel {panelIndex}"
21424
21506
  // ratingOptionsCaption: "Select..." => "Aukeratu..."
21425
- // 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."
21426
21508
  // filterStringPlaceholder: "Type to search..." => "Idatzi bila..."
21427
21509
  // emptyMessage: "No data to display" => "Ez daturik erakusteko"
21428
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."
@@ -21431,8 +21513,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["eu"]
21431
21513
  // tagboxDoneButtonCaption: "OK" => "Ados"
21432
21514
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Aukera guztiak sailkatuta daude"
21433
21515
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Arrastaka eta askatzen ditu hemen sailkatzeko"// takePhotoCaption: "Take Photo" => "Argazkia hartu"
21434
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Egin klik beheko botoian, kamerarekin argazki bat hartzeko."
21435
- // 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."
21436
21518
  // replaceFileCaption: "Replace file" => "Artxiboa ordeztu"
21437
21519
 
21438
21520
 
@@ -21497,7 +21579,7 @@ var bulgarianStrings = {
21497
21579
  loadingFile: "Зареждане...",
21498
21580
  chooseFile: "Изберете файл(ове)...",
21499
21581
  noFileChosen: "Няма избран файл",
21500
- fileDragAreaPlaceholder: "Плъзнете и пуснете файл тук или щракнете върху бутона по-долу и изберете файл за качване.",
21582
+ filePlaceholder: "Плъзнете и пуснете файл тук или щракнете върху бутона по-долу и изберете файл за качване.",
21501
21583
  confirmDelete: "Желаете ли да изтриете записа?",
21502
21584
  keyDuplicationError: "Стойността следва да бъде уникална.",
21503
21585
  addColumn: "Добавяне на колона",
@@ -21526,8 +21608,8 @@ var bulgarianStrings = {
21526
21608
  signaturePlaceHolder: "Подпишете тук",
21527
21609
  chooseFileCaption: "Изберете файл",
21528
21610
  takePhotoCaption: "Направете снимка",
21529
- cameraPlaceHolder: "Кликнете върху бутона по-долу, за да направите снимка с помощта на камерата.",
21530
- fileCameraDragAreaPlaceHolder: "Плъзнете и пуснете или изберете файл за качване или правене на снимка с помощта на камерата.",
21611
+ photoPlaceholder: "Кликнете върху бутона по-долу, за да направите снимка с помощта на камерата.",
21612
+ fileOrPhotoPlaceholder: "Плъзнете и пуснете или изберете файл за качване или правене на снимка с помощта на камерата.",
21531
21613
  replaceFileCaption: "Заместване на файл",
21532
21614
  removeFileCaption: "Премахване на файла",
21533
21615
  booleanCheckedLabel: "Да",
@@ -21555,7 +21637,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["bg"]
21555
21637
  // ratingOptionsCaption: "Select..." => "Отбран..."
21556
21638
  // minError: "The value should not be less than {0}" => "Стойността не трябва да бъде по-малка от {0}"
21557
21639
  // maxError: "The value should not be greater than {0}" => "Стойността не трябва да бъде по-голяма от {0}"
21558
- // 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." => "Плъзнете и пуснете файл тук или щракнете върху бутона по-долу и изберете файл за качване."
21559
21641
  // emptyRowsText: "There are no rows." => "Няма редове."
21560
21642
  // multipletext_itemname: "text" => "Текст"
21561
21643
  // signaturePlaceHolder: "Sign here" => "Подпишете тук"
@@ -21569,8 +21651,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["bg"]
21569
21651
  // tagboxDoneButtonCaption: "OK" => "Добре"
21570
21652
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Всички възможности за избор са класирани"
21571
21653
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Плъзнете и пуснете опции тук, за да ги класирате"// takePhotoCaption: "Take Photo" => "Направете снимка"
21572
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Кликнете върху бутона по-долу, за да направите снимка с помощта на камерата."
21573
- // 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." => "Плъзнете и пуснете или изберете файл за качване или правене на снимка с помощта на камерата."
21574
21656
  // replaceFileCaption: "Replace file" => "Заместване на файл"
21575
21657
 
21576
21658
 
@@ -21635,7 +21717,7 @@ var catalanSurveyStrings = {
21635
21717
  loadingFile: "Càrrega...",
21636
21718
  chooseFile: "Trieu fitxer(s)...",
21637
21719
  noFileChosen: "No s'ha triat cap fitxer",
21638
- 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.",
21639
21721
  confirmDelete: "Vols eliminar el registre?",
21640
21722
  keyDuplicationError: "Aquest valor ha de ser únic.",
21641
21723
  addColumn: "Afegeix una columna",
@@ -21664,8 +21746,8 @@ var catalanSurveyStrings = {
21664
21746
  signaturePlaceHolder: "Inscriu-te aquí",
21665
21747
  chooseFileCaption: "Tria un fitxer",
21666
21748
  takePhotoCaption: "Fer foto",
21667
- cameraPlaceHolder: "Feu clic al botó següent per fer una foto amb la càmera.",
21668
- 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.",
21669
21751
  replaceFileCaption: "Substitueix el fitxer",
21670
21752
  removeFileCaption: "Suprimeix aquest fitxer",
21671
21753
  booleanCheckedLabel: "Sí",
@@ -21707,7 +21789,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ca"]
21707
21789
  // loadingFile: "Loading..." => "Càrrega..."
21708
21790
  // chooseFile: "Choose file(s)..." => "Trieu fitxer(s)..."
21709
21791
  // noFileChosen: "No file chosen" => "No s'ha triat cap fitxer"
21710
- // 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."
21711
21793
  // confirmDelete: "Do you want to delete the record?" => "Vols eliminar el registre?"
21712
21794
  // keyDuplicationError: "This value should be unique." => "Aquest valor ha de ser únic."
21713
21795
  // addColumn: "Add Column" => "Afegeix una columna"
@@ -21747,8 +21829,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ca"]
21747
21829
  // tagboxDoneButtonCaption: "OK" => "D'ACORD"
21748
21830
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Totes les opcions estan classificades"
21749
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"
21750
- // 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."
21751
- // 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."
21752
21834
  // replaceFileCaption: "Replace file" => "Substitueix el fitxer"
21753
21835
 
21754
21836
 
@@ -21813,7 +21895,7 @@ var croatianStrings = {
21813
21895
  loadingFile: "Učitavanje...",
21814
21896
  chooseFile: "Odaberite datoteku...",
21815
21897
  noFileChosen: "Nije odabrana datoteka",
21816
- 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.",
21817
21899
  confirmDelete: "Želite li izbrisati zapis?",
21818
21900
  keyDuplicationError: "Ta bi vrijednost trebala biti jedinstvena.",
21819
21901
  addColumn: "Dodavanje stupca",
@@ -21842,8 +21924,8 @@ var croatianStrings = {
21842
21924
  signaturePlaceHolder: "Potpiši ovdje",
21843
21925
  chooseFileCaption: "Odaberite datoteku",
21844
21926
  takePhotoCaption: "Snimi fotografiju",
21845
- cameraPlaceHolder: "Kliknite donji gumb da biste snimili fotografiju pomoću kamere.",
21846
- 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.",
21847
21929
  replaceFileCaption: "Zamijeni datoteku",
21848
21930
  removeFileCaption: "Uklonite ovu datoteku",
21849
21931
  booleanCheckedLabel: "Da",
@@ -21871,7 +21953,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["hr"]
21871
21953
  // ratingOptionsCaption: "Select..." => "Odabirati..."
21872
21954
  // minError: "The value should not be less than {0}" => "Vrijednost ne smije biti manja od {0}"
21873
21955
  // maxError: "The value should not be greater than {0}" => "Vrijednost ne smije biti veća od {0}"
21874
- // 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."
21875
21957
  // emptyRowsText: "There are no rows." => "Nema redova."
21876
21958
  // multipletext_itemname: "text" => "Tekstualna poruka"
21877
21959
  // signaturePlaceHolder: "Sign here" => "Potpiši ovdje"
@@ -21883,8 +21965,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["hr"]
21883
21965
  // tagboxDoneButtonCaption: "OK" => "OK"
21884
21966
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Svi izbori su rangirani"
21885
21967
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Ovdje povucite i ispustite odabire da biste ih rangirali"// takePhotoCaption: "Take Photo" => "Snimi fotografiju"
21886
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Kliknite donji gumb da biste snimili fotografiju pomoću kamere."
21887
- // 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."
21888
21970
  // replaceFileCaption: "Replace file" => "Zamijeni datoteku"
21889
21971
 
21890
21972
 
@@ -21949,7 +22031,7 @@ var czechSurveyStrings = {
21949
22031
  loadingFile: "Načítání...",
21950
22032
  chooseFile: "Vyberte soubory...",
21951
22033
  noFileChosen: "Není zvolený žádný soubor",
21952
- 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.",
21953
22035
  confirmDelete: "Chcete záznam smazat?",
21954
22036
  keyDuplicationError: "Tato hodnota by měla být unikátní.",
21955
22037
  addColumn: "Přidat sloupec",
@@ -21978,8 +22060,8 @@ var czechSurveyStrings = {
21978
22060
  signaturePlaceHolder: "Podepište se zde",
21979
22061
  chooseFileCaption: "Vyberte soubor",
21980
22062
  takePhotoCaption: "Pořídit fotografii",
21981
- cameraPlaceHolder: "Kliknutím na tlačítko níže pořídíte fotografii pomocí fotoaparátu.",
21982
- 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.",
21983
22065
  replaceFileCaption: "Nahradit soubor",
21984
22066
  removeFileCaption: "Odeberte tento soubor",
21985
22067
  booleanCheckedLabel: "Ano",
@@ -22007,7 +22089,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["cs"]
22007
22089
  // ratingOptionsCaption: "Select..." => "Vybrat..."
22008
22090
  // minError: "The value should not be less than {0}" => "Hodnota by neměla být menší než {0}"
22009
22091
  // maxError: "The value should not be greater than {0}" => "Hodnota by neměla být větší než {0}"
22010
- // 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."
22011
22093
  // emptyRowsText: "There are no rows." => "Neexistují žádné řádky."
22012
22094
  // multipletext_itemname: "text" => "Text"
22013
22095
  // signaturePlaceHolder: "Sign here" => "Podepište se zde"
@@ -22021,8 +22103,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["cs"]
22021
22103
  // tagboxDoneButtonCaption: "OK" => "OK"
22022
22104
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Všechny možnosti jsou seřazeny"
22023
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"
22024
- // 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."
22025
- // 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."
22026
22108
  // replaceFileCaption: "Replace file" => "Nahradit soubor"
22027
22109
 
22028
22110
 
@@ -22087,7 +22169,7 @@ var danishSurveyStrings = {
22087
22169
  loadingFile: "Indlæser...",
22088
22170
  chooseFile: "Vælg fil(er)...",
22089
22171
  noFileChosen: "Ingen fil er valgt",
22090
- 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.",
22091
22173
  confirmDelete: "Vil du fjerne den?",
22092
22174
  keyDuplicationError: "Denne værdi skal være unik.",
22093
22175
  addColumn: "Tilføj kolonne",
@@ -22116,8 +22198,8 @@ var danishSurveyStrings = {
22116
22198
  signaturePlaceHolder: "Tilmeld dig her",
22117
22199
  chooseFileCaption: "Vælg fil",
22118
22200
  takePhotoCaption: "Tag billede",
22119
- cameraPlaceHolder: "Klik på knappen nedenfor for at tage et billede med kameraet.",
22120
- 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.",
22121
22203
  replaceFileCaption: "Erstat fil",
22122
22204
  removeFileCaption: "Fjern denne fil",
22123
22205
  booleanCheckedLabel: "Ja",
@@ -22145,7 +22227,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["da"]
22145
22227
  // ratingOptionsCaption: "Select..." => "Markere..."
22146
22228
  // minError: "The value should not be less than {0}" => "Værdien bør ikke være mindre end {0}"
22147
22229
  // maxError: "The value should not be greater than {0}" => "Værdien bør ikke være større end {0}"
22148
- // 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."
22149
22231
  // emptyRowsText: "There are no rows." => "Der er ingen rækker."
22150
22232
  // multipletext_itemname: "text" => "Tekst"
22151
22233
  // signaturePlaceHolder: "Sign here" => "Tilmeld dig her"
@@ -22159,8 +22241,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["da"]
22159
22241
  // tagboxDoneButtonCaption: "OK" => "OK"
22160
22242
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Alle valg er rangeret"
22161
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"
22162
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Klik på knappen nedenfor for at tage et billede med kameraet."
22163
- // 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."
22164
22246
  // replaceFileCaption: "Replace file" => "Erstat fil"
22165
22247
 
22166
22248
 
@@ -22225,7 +22307,7 @@ var dutchSurveyStrings = {
22225
22307
  loadingFile: "Laden...",
22226
22308
  chooseFile: "Kies uw bestand(en)...",
22227
22309
  noFileChosen: "Geen bestand gekozen",
22228
- fileDragAreaPlaceholder: "Sleep het bestand naar hier",
22310
+ filePlaceholder: "Sleep het bestand naar hier",
22229
22311
  confirmDelete: "Wilt u deze gegevens verwijderen?",
22230
22312
  keyDuplicationError: "Deze waarde moet uniek zijn.",
22231
22313
  addColumn: "Voeg kolom toe",
@@ -22254,8 +22336,8 @@ var dutchSurveyStrings = {
22254
22336
  signaturePlaceHolder: "Hier tekenen",
22255
22337
  chooseFileCaption: "Gekozen bestand",
22256
22338
  takePhotoCaption: "Foto maken",
22257
- cameraPlaceHolder: "Klik op de onderstaande knop om een foto te maken met de camera.",
22258
- 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.",
22259
22341
  replaceFileCaption: "Bestand vervangen",
22260
22342
  removeFileCaption: "Verwijder dit bestand",
22261
22343
  booleanCheckedLabel: "Ja",
@@ -22295,8 +22377,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["nl"]
22295
22377
  // tagboxDoneButtonCaption: "OK" => "OK"
22296
22378
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Alle keuzes zijn gerangschikt"
22297
22379
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Drag en drop keuzes hier om ze te rangschikken"// takePhotoCaption: "Take Photo" => "Foto maken"
22298
- // 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."
22299
- // 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."
22300
22382
  // replaceFileCaption: "Replace file" => "Bestand vervangen"
22301
22383
 
22302
22384
 
@@ -22361,7 +22443,7 @@ var englishStrings = {
22361
22443
  loadingFile: "Loading...",
22362
22444
  chooseFile: "Choose file(s)...",
22363
22445
  noFileChosen: "No file chosen",
22364
- 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.",
22365
22447
  confirmDelete: "Do you want to delete the record?",
22366
22448
  keyDuplicationError: "This value should be unique.",
22367
22449
  addColumn: "Add Column",
@@ -22390,8 +22472,8 @@ var englishStrings = {
22390
22472
  signaturePlaceHolder: "Sign here",
22391
22473
  chooseFileCaption: "Select File",
22392
22474
  takePhotoCaption: "Take Photo",
22393
- cameraPlaceHolder: "Click the button below to take a photo using the camera.",
22394
- 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.",
22395
22477
  replaceFileCaption: "Replace file",
22396
22478
  removeFileCaption: "Remove this file",
22397
22479
  booleanCheckedLabel: "Yes",
@@ -22480,7 +22562,7 @@ var estonianSurveyStrings = {
22480
22562
  loadingFile: "Laen...",
22481
22563
  chooseFile: "Vali fail(id)...",
22482
22564
  noFileChosen: "Faili pole valitud",
22483
- 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.",
22484
22566
  confirmDelete: "Kas tahad kirje kustutada?",
22485
22567
  keyDuplicationError: "See väärtus peab olema unikaalne.",
22486
22568
  addColumn: "Lisa veerg",
@@ -22509,8 +22591,8 @@ var estonianSurveyStrings = {
22509
22591
  signaturePlaceHolder: "Allkirjasta siin",
22510
22592
  chooseFileCaption: "Vali fail",
22511
22593
  takePhotoCaption: "Pildistamine",
22512
- cameraPlaceHolder: "Kaamera abil pildistamiseks klõpsake allolevat nuppu.",
22513
- 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.",
22514
22596
  replaceFileCaption: "Asenda fail",
22515
22597
  removeFileCaption: "Eemalda see fail",
22516
22598
  booleanCheckedLabel: "Jah",
@@ -22538,7 +22620,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["et"]
22538
22620
  // ratingOptionsCaption: "Select..." => "Valima..."
22539
22621
  // minError: "The value should not be less than {0}" => "Väärtus ei tohiks olla väiksem kui {0}"
22540
22622
  // maxError: "The value should not be greater than {0}" => "Väärtus ei tohiks olla suurem kui {0}"
22541
- // 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."
22542
22624
  // emptyRowsText: "There are no rows." => "Ridu pole."
22543
22625
  // multipletext_itemname: "text" => "Tekst"
22544
22626
  // signaturePlaceHolder: "Sign here" => "Allkirjasta siin"
@@ -22552,8 +22634,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["et"]
22552
22634
  // tagboxDoneButtonCaption: "OK" => "OK"
22553
22635
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Kõik valikud on järjestatud"
22554
22636
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Lohistage valikuid siia, et neid järjestada"// takePhotoCaption: "Take Photo" => "Pildistamine"
22555
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Kaamera abil pildistamiseks klõpsake allolevat nuppu."
22556
- // 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."
22557
22639
  // replaceFileCaption: "Replace file" => "Asenda fail"
22558
22640
 
22559
22641
 
@@ -22618,7 +22700,7 @@ var finnishSurveyStrings = {
22618
22700
  loadingFile: "Ladataan...",
22619
22701
  chooseFile: "Valitse tiedosto(t)...",
22620
22702
  noFileChosen: "Ei tiedostoa valittuna",
22621
- 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.",
22622
22704
  confirmDelete: "Haluatko poistaa osion?",
22623
22705
  keyDuplicationError: "Tämä arvo on jo käytössä. Syötä toinen arvo.",
22624
22706
  addColumn: "Lisää sarake",
@@ -22647,8 +22729,8 @@ var finnishSurveyStrings = {
22647
22729
  signaturePlaceHolder: "Allekirjoita tähän",
22648
22730
  chooseFileCaption: "Valitse tiedosto",
22649
22731
  takePhotoCaption: "Ota valokuva",
22650
- cameraPlaceHolder: "Napsauta alla olevaa painiketta ottaaksesi valokuvan kameralla.",
22651
- 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.",
22652
22734
  replaceFileCaption: "Korvaa tiedosto",
22653
22735
  removeFileCaption: "Poista tämä tiedosto",
22654
22736
  booleanCheckedLabel: "Kyllä",
@@ -22678,8 +22760,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["fi"]
22678
22760
  // tagboxDoneButtonCaption: "OK" => "OKEI"
22679
22761
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Kaikki valinnat asetetaan paremmuusjärjestykseen"
22680
22762
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Vedä ja pudota vaihtoehdot tähän luokitellaksesi ne"// takePhotoCaption: "Take Photo" => "Ota valokuva"
22681
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Napsauta alla olevaa painiketta ottaaksesi valokuvan kameralla."
22682
- // 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."
22683
22765
  // replaceFileCaption: "Replace file" => "Korvaa tiedosto"
22684
22766
 
22685
22767
 
@@ -22744,7 +22826,7 @@ var frenchSurveyStrings = {
22744
22826
  loadingFile: "Chargement...",
22745
22827
  chooseFile: "Ajouter des fichiers...",
22746
22828
  noFileChosen: "Aucun fichier ajouté",
22747
- 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.",
22748
22830
  confirmDelete: "Voulez-vous supprimer cet enregistrement ?",
22749
22831
  keyDuplicationError: "Cette valeur doit être unique.",
22750
22832
  addColumn: "Ajouter une colonne",
@@ -22773,8 +22855,8 @@ var frenchSurveyStrings = {
22773
22855
  signaturePlaceHolder: "Signez ici",
22774
22856
  chooseFileCaption: "Ajouter un fichier",
22775
22857
  takePhotoCaption: "Prendre une photo",
22776
- cameraPlaceHolder: "Cliquez sur le bouton ci-dessous pour prendre une photo à l’aide de l’appareil photo.",
22777
- 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.",
22778
22860
  replaceFileCaption: "Remplacer le fichier",
22779
22861
  removeFileCaption: "Enlever ce fichier",
22780
22862
  booleanCheckedLabel: "Oui",
@@ -22804,8 +22886,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["fr"]
22804
22886
  // tagboxDoneButtonCaption: "OK" => "D’ACCORD"
22805
22887
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Tous les choix sont classés"
22806
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"
22807
- // 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."
22808
- // 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."
22809
22891
  // replaceFileCaption: "Replace file" => "Remplacer le fichier"
22810
22892
 
22811
22893
 
@@ -22870,7 +22952,7 @@ var georgianSurveyStrings = {
22870
22952
  loadingFile: "იტვირთება...",
22871
22953
  chooseFile: "აირჩიეთ ფაილი...",
22872
22954
  noFileChosen: "ფაილის არჩევა არ არის",
22873
- fileDragAreaPlaceholder: "გადაიტანეთ და ჩამოაგდეთ ფაილი აქ ან დააჭირეთ ქვემოთ მოცემულ ღილაკს და აირჩიეთ ფაილი ასატვირთად.",
22955
+ filePlaceholder: "გადაიტანეთ და ჩამოაგდეთ ფაილი აქ ან დააჭირეთ ქვემოთ მოცემულ ღილაკს და აირჩიეთ ფაილი ასატვირთად.",
22874
22956
  confirmDelete: "გსურთ ჩანაწერის წაშლა?",
22875
22957
  keyDuplicationError: "ეს მნიშვნელობა უნდა იყოს უნიკალური.",
22876
22958
  addColumn: "სვეტის დამატება",
@@ -22899,8 +22981,8 @@ var georgianSurveyStrings = {
22899
22981
  signaturePlaceHolder: "შესვლა აქ",
22900
22982
  chooseFileCaption: "ვაუჩერის ნახვა",
22901
22983
  takePhotoCaption: "გადაიღეთ ფოტო",
22902
- cameraPlaceHolder: "დააჭირეთ ქვემოთ მოცემულ ღილაკს, რომ გადაიღოთ ფოტო კამერის გამოყენებით.",
22903
- fileCameraDragAreaPlaceHolder: "გადაიტანეთ და ჩამოაგდეთ ან შეარჩიეთ ფაილი კამერის გამოყენებით ფოტოს ასატვირთად ან გადასაღებად.",
22984
+ photoPlaceholder: "დააჭირეთ ქვემოთ მოცემულ ღილაკს, რომ გადაიღოთ ფოტო კამერის გამოყენებით.",
22985
+ fileOrPhotoPlaceholder: "გადაიტანეთ და ჩამოაგდეთ ან შეარჩიეთ ფაილი კამერის გამოყენებით ფოტოს ასატვირთად ან გადასაღებად.",
22904
22986
  replaceFileCaption: "ფაილის შეცვლა",
22905
22987
  removeFileCaption: "ამ ფაილის წაშლა",
22906
22988
  booleanCheckedLabel: "დიახ",
@@ -22951,7 +23033,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ka"]
22951
23033
  // loadingFile: "Loading..." => "იტვირთება..."
22952
23034
  // chooseFile: "Choose file(s)..." => "აირჩიეთ ფაილი..."
22953
23035
  // noFileChosen: "No file chosen" => "ფაილის არჩევა არ არის"
22954
- // 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." => "გადაიტანეთ და ჩამოაგდეთ ფაილი აქ ან დააჭირეთ ქვემოთ მოცემულ ღილაკს და აირჩიეთ ფაილი ასატვირთად."
22955
23037
  // confirmDelete: "Do you want to delete the record?" => "გსურთ ჩანაწერის წაშლა?"
22956
23038
  // keyDuplicationError: "This value should be unique." => "ეს მნიშვნელობა უნდა იყოს უნიკალური."
22957
23039
  // addColumn: "Add Column" => "სვეტის დამატება"
@@ -22995,8 +23077,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ka"]
22995
23077
  // tagboxDoneButtonCaption: "OK" => "კარგი"
22996
23078
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "ყველა არჩევანი რანჟირებულია"
22997
23079
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "გადაიტანეთ და ჩამოაგდეთ არჩევანი აქ, რომ დაასახელოთ ისინი"// takePhotoCaption: "Take Photo" => "გადაიღეთ ფოტო"
22998
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "დააჭირეთ ქვემოთ მოცემულ ღილაკს, რომ გადაიღოთ ფოტო კამერის გამოყენებით."
22999
- // 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." => "გადაიტანეთ და ჩამოაგდეთ ან შეარჩიეთ ფაილი კამერის გამოყენებით ფოტოს ასატვირთად ან გადასაღებად."
23000
23082
  // replaceFileCaption: "Replace file" => "ფაილის შეცვლა"
23001
23083
 
23002
23084
 
@@ -23061,7 +23143,7 @@ var germanSurveyStrings = {
23061
23143
  loadingFile: "Wird hochgeladen...",
23062
23144
  chooseFile: "Datei(en) auswählen...",
23063
23145
  noFileChosen: "Keine Datei ausgewählt",
23064
- 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.",
23065
23147
  confirmDelete: "Wollen Sie den Eintrag löschen?",
23066
23148
  keyDuplicationError: "Dieser Wert muss einmalig sein.",
23067
23149
  addColumn: "Spalte hinzufügen",
@@ -23090,8 +23172,8 @@ var germanSurveyStrings = {
23090
23172
  signaturePlaceHolder: "Hier unterschreiben",
23091
23173
  chooseFileCaption: "Datei auswählen",
23092
23174
  takePhotoCaption: "Foto machen",
23093
- cameraPlaceHolder: "Klicken Sie auf die Schaltfläche unten, um ein Foto mit der Kamera aufzunehmen.",
23094
- 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.",
23095
23177
  replaceFileCaption: "Datei ersetzen",
23096
23178
  removeFileCaption: "Datei löschen",
23097
23179
  booleanCheckedLabel: "Ja",
@@ -23119,8 +23201,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["de"]
23119
23201
  // tagboxDoneButtonCaption: "OK" => "OKAY"
23120
23202
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Alle Auswahlmöglichkeiten sind in einer Rangfolge angeordnet"
23121
23203
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Ziehen Sie die Auswahl hierher, um sie zu ordnen"// takePhotoCaption: "Take Photo" => "Foto machen"
23122
- // 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."
23123
- // 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."
23124
23206
  // replaceFileCaption: "Replace file" => "Datei ersetzen"
23125
23207
 
23126
23208
 
@@ -23185,7 +23267,7 @@ var greekSurveyStrings = {
23185
23267
  loadingFile: "Φόρτωση...",
23186
23268
  chooseFile: "Επιλογή αρχείων ...",
23187
23269
  noFileChosen: "Δεν έχει επιλεγεί αρχείο",
23188
- fileDragAreaPlaceholder: "Αποθέστε το αρχείο σας εδώ ή κάντε κλικ στο κουμπί παρακάτω για να φορτώσετε το αρχείο.",
23270
+ filePlaceholder: "Αποθέστε το αρχείο σας εδώ ή κάντε κλικ στο κουμπί παρακάτω για να φορτώσετε το αρχείο.",
23189
23271
  confirmDelete: "Θέλετε να διαγράψετε την εγγραφή;",
23190
23272
  keyDuplicationError: "Αυτή η τιμή πρέπει να είναι μοναδική.",
23191
23273
  addColumn: "Προσθήκη στήλης",
@@ -23214,8 +23296,8 @@ var greekSurveyStrings = {
23214
23296
  signaturePlaceHolder: "Υπογράψτε εδώ",
23215
23297
  chooseFileCaption: "Επιλέξτε αρχείο",
23216
23298
  takePhotoCaption: "Λήψη φωτογραφίας",
23217
- cameraPlaceHolder: "Κάντε κλικ στο παρακάτω κουμπί για να τραβήξετε μια φωτογραφία χρησιμοποιώντας την κάμερα.",
23218
- fileCameraDragAreaPlaceHolder: "Σύρετε και αποθέστε ή επιλέξτε ένα αρχείο για αποστολή ή λήψη φωτογραφίας χρησιμοποιώντας την κάμερα.",
23299
+ photoPlaceholder: "Κάντε κλικ στο παρακάτω κουμπί για να τραβήξετε μια φωτογραφία χρησιμοποιώντας την κάμερα.",
23300
+ fileOrPhotoPlaceholder: "Σύρετε και αποθέστε ή επιλέξτε ένα αρχείο για αποστολή ή λήψη φωτογραφίας χρησιμοποιώντας την κάμερα.",
23219
23301
  replaceFileCaption: "Αντικατάσταση αρχείου",
23220
23302
  removeFileCaption: "Διαγράψτε αυτό το αρχείο",
23221
23303
  booleanCheckedLabel: "Ναι",
@@ -23242,8 +23324,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["gr"]
23242
23324
  // noEntriesReadonlyText: "There are no entries." => "Δεν υπάρχουν καταχωρήσεις."
23243
23325
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Όλες οι επιλογές κατατάσσονται"
23244
23326
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Σύρετε και αποθέστε επιλογές εδώ για να τις κατατάξετε"// takePhotoCaption: "Take Photo" => "Λήψη φωτογραφίας"
23245
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Κάντε κλικ στο παρακάτω κουμπί για να τραβήξετε μια φωτογραφία χρησιμοποιώντας την κάμερα."
23246
- // 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." => "Σύρετε και αποθέστε ή επιλέξτε ένα αρχείο για αποστολή ή λήψη φωτογραφίας χρησιμοποιώντας την κάμερα."
23247
23329
  // replaceFileCaption: "Replace file" => "Αντικατάσταση αρχείου"
23248
23330
 
23249
23331
 
@@ -23308,7 +23390,7 @@ var hebrewSurveyStrings = {
23308
23390
  loadingFile: "טוען...",
23309
23391
  chooseFile: "לבחור קבצים...",
23310
23392
  noFileChosen: "לא נבחר קובץ",
23311
- fileDragAreaPlaceholder: "גרור ושחרר קובץ לכאן או לחץ על הלחצן למטה ובחר קובץ להעלאה.",
23393
+ filePlaceholder: "גרור ושחרר קובץ לכאן או לחץ על הלחצן למטה ובחר קובץ להעלאה.",
23312
23394
  confirmDelete: "האם אתה רוצה למחוק את הרשומה?",
23313
23395
  keyDuplicationError: "ערך זה צריך להיות ייחודי.",
23314
23396
  addColumn: "הוסף עמודה",
@@ -23337,8 +23419,8 @@ var hebrewSurveyStrings = {
23337
23419
  signaturePlaceHolder: "חתום כאן",
23338
23420
  chooseFileCaption: "בחר קובץ",
23339
23421
  takePhotoCaption: "צלם תמונה",
23340
- cameraPlaceHolder: "לחץ על הלחצן למטה כדי לצלם תמונה באמצעות המצלמה.",
23341
- fileCameraDragAreaPlaceHolder: "גרור ושחרר או בחר קובץ כדי להעלות או לצלם תמונה באמצעות המצלמה.",
23422
+ photoPlaceholder: "לחץ על הלחצן למטה כדי לצלם תמונה באמצעות המצלמה.",
23423
+ fileOrPhotoPlaceholder: "גרור ושחרר או בחר קובץ כדי להעלות או לצלם תמונה באמצעות המצלמה.",
23342
23424
  replaceFileCaption: "החלפת קובץ",
23343
23425
  removeFileCaption: "הסר קובץ זה",
23344
23426
  booleanCheckedLabel: "כן",
@@ -23366,7 +23448,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["he"]
23366
23448
  // ratingOptionsCaption: "Select..." => "בחר..."
23367
23449
  // minError: "The value should not be less than {0}" => "הערך לא צריך להיות קטן מ {0}"
23368
23450
  // maxError: "The value should not be greater than {0}" => "הערך לא צריך להיות גדול מ- {0}"
23369
- // 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." => "גרור ושחרר קובץ לכאן או לחץ על הלחצן למטה ובחר קובץ להעלאה."
23370
23452
  // emptyRowsText: "There are no rows." => "אין שורות."
23371
23453
  // multipletext_itemname: "text" => "טקסט"
23372
23454
  // signaturePlaceHolder: "Sign here" => "חתום כאן"
@@ -23380,8 +23462,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["he"]
23380
23462
  // tagboxDoneButtonCaption: "OK" => "אוקיי"
23381
23463
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "כל האפשרויות מדורגות"
23382
23464
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "גרור ושחרר אפשרויות לכאן כדי לדרג אותן"// takePhotoCaption: "Take Photo" => "צלם תמונה"
23383
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "לחץ על הלחצן למטה כדי לצלם תמונה באמצעות המצלמה."
23384
- // 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." => "גרור ושחרר או בחר קובץ כדי להעלות או לצלם תמונה באמצעות המצלמה."
23385
23467
  // replaceFileCaption: "Replace file" => "החלפת קובץ"
23386
23468
 
23387
23469
 
@@ -23446,7 +23528,7 @@ var hindiStrings = {
23446
23528
  loadingFile: "लोडिंग",
23447
23529
  chooseFile: "फ़ाइल चुनें",
23448
23530
  noFileChosen: "कोई फाइल नहीं चुनी गई",
23449
- fileDragAreaPlaceholder: "यहां एक फ़ाइल खींचें और छोड़ें या नीचे दिए गए बटन पर क्लिक करें और अपलोड करने के लिए एक फ़ाइल चुनें।",
23531
+ filePlaceholder: "यहां एक फ़ाइल खींचें और छोड़ें या नीचे दिए गए बटन पर क्लिक करें और अपलोड करने के लिए एक फ़ाइल चुनें।",
23450
23532
  confirmDelete: "क्या आप रिकॉर्ड हटाना चाहते हैं",
23451
23533
  keyDuplicationError: "यह मान अनोखा होना चाहिए",
23452
23534
  addColumn: "कॉलम जोड़ें",
@@ -23475,8 +23557,8 @@ var hindiStrings = {
23475
23557
  signaturePlaceHolder: "यहां साइन करें",
23476
23558
  chooseFileCaption: "फ़ाइल चुनें",
23477
23559
  takePhotoCaption: "फोटो ले लो",
23478
- cameraPlaceHolder: "कैमरे का उपयोग करके फोटो लेने के लिए नीचे दिए गए बटन पर क्लिक करें।",
23479
- fileCameraDragAreaPlaceHolder: "कैमरे का उपयोग करके फ़ोटो अपलोड करने या फ़ोटो लेने के लिए किसी फ़ाइल को खींचें और छोड़ें या चुनें.",
23560
+ photoPlaceholder: "कैमरे का उपयोग करके फोटो लेने के लिए नीचे दिए गए बटन पर क्लिक करें।",
23561
+ fileOrPhotoPlaceholder: "कैमरे का उपयोग करके फ़ोटो अपलोड करने या फ़ोटो लेने के लिए किसी फ़ाइल को खींचें और छोड़ें या चुनें.",
23480
23562
  replaceFileCaption: "फ़ाइल बदलें",
23481
23563
  removeFileCaption: "इस फाइल को निकालें",
23482
23564
  booleanCheckedLabel: "हाँ",
@@ -23505,7 +23587,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["hi"]
23505
23587
  // ratingOptionsCaption: "Select..." => "चुनना।।।"
23506
23588
  // minError: "The value should not be less than {0}" => "मान {0} से कम नहीं होना चाहिए"
23507
23589
  // maxError: "The value should not be greater than {0}" => "मान {0} से अधिक नहीं होना चाहिए"
23508
- // 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." => "यहां एक फ़ाइल खींचें और छोड़ें या नीचे दिए गए बटन पर क्लिक करें और अपलोड करने के लिए एक फ़ाइल चुनें।"
23509
23591
  // emptyRowsText: "There are no rows." => "कोई पंक्तियाँ नहीं हैं."
23510
23592
  // multipletext_itemname: "text" => "टेक्स्ट"
23511
23593
  // signaturePlaceHolder: "Sign here" => "यहां साइन करें"
@@ -23519,8 +23601,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["hi"]
23519
23601
  // tagboxDoneButtonCaption: "OK" => "ठीक है"
23520
23602
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "सभी विकल्पों को रैंक किया गया है"
23521
23603
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "विकल्पों को रैंक करने के लिए उन्हें यहां खींचें और छोड़ दें"// takePhotoCaption: "Take Photo" => "फोटो ले लो"
23522
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "कैमरे का उपयोग करके फोटो लेने के लिए नीचे दिए गए बटन पर क्लिक करें।"
23523
- // 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." => "कैमरे का उपयोग करके फ़ोटो अपलोड करने या फ़ोटो लेने के लिए किसी फ़ाइल को खींचें और छोड़ें या चुनें."
23524
23606
  // replaceFileCaption: "Replace file" => "फ़ाइल बदलें"
23525
23607
 
23526
23608
 
@@ -23585,7 +23667,7 @@ var hungarianSurveyStrings = {
23585
23667
  loadingFile: "Betöltés...",
23586
23668
  chooseFile: "Fájlok kiválasztása ...",
23587
23669
  noFileChosen: "Nincs kiválasztva fájl",
23588
- 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.",
23589
23671
  confirmDelete: "Törli ezt a rekordot?",
23590
23672
  keyDuplicationError: "Az értéknek egyedinek kell lennie.",
23591
23673
  addColumn: "Oszlop hozzáadása",
@@ -23614,8 +23696,8 @@ var hungarianSurveyStrings = {
23614
23696
  signaturePlaceHolder: "Írja alá itt",
23615
23697
  chooseFileCaption: "Válassz fájlt",
23616
23698
  takePhotoCaption: "Fotó készítése",
23617
- cameraPlaceHolder: "Kattintson az alábbi gombra, hogy fényképet készítsen a fényképezőgéppel.",
23618
- 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.",
23619
23701
  replaceFileCaption: "Fájl cseréje",
23620
23702
  removeFileCaption: "Távolítsa el ezt a fájlt",
23621
23703
  booleanCheckedLabel: "Igen",
@@ -23656,8 +23738,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["hu"]
23656
23738
  // tagboxDoneButtonCaption: "OK" => "OKÉ"
23657
23739
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Minden választási lehetőség rangsorolva van"
23658
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"
23659
- // 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."
23660
- // 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."
23661
23743
  // replaceFileCaption: "Replace file" => "Fájl cseréje"
23662
23744
 
23663
23745
 
@@ -23722,7 +23804,7 @@ var icelandicSurveyStrings = {
23722
23804
  loadingFile: "Hleður ...",
23723
23805
  chooseFile: "Veldu skrár ...",
23724
23806
  noFileChosen: "Engin skrá valin",
23725
- 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.",
23726
23808
  confirmDelete: "Viltu eyða skránni?",
23727
23809
  keyDuplicationError: "Þetta gildi ætti að vera einstakt.",
23728
23810
  addColumn: "Bæta við dálki",
@@ -23751,8 +23833,8 @@ var icelandicSurveyStrings = {
23751
23833
  signaturePlaceHolder: "Kvittađu hér",
23752
23834
  chooseFileCaption: "Veldu skrá",
23753
23835
  takePhotoCaption: "Taka mynd",
23754
- cameraPlaceHolder: "Smelltu á hnappinn hér að neðan til að taka mynd með myndavélinni.",
23755
- 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.",
23756
23838
  replaceFileCaption: "Skipta út skrá",
23757
23839
  removeFileCaption: "Fjarlægðu þessa skrá",
23758
23840
  booleanCheckedLabel: "Já",
@@ -23780,7 +23862,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["is"]
23780
23862
  // ratingOptionsCaption: "Select..." => "Velja..."
23781
23863
  // minError: "The value should not be less than {0}" => "Gildið má ekki vera lægra en {0}"
23782
23864
  // maxError: "The value should not be greater than {0}" => "Gildið má ekki vera hærra en {0}"
23783
- // 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."
23784
23866
  // emptyRowsText: "There are no rows." => "Það eru engar raðir."
23785
23867
  // multipletext_itemname: "text" => "Texti"
23786
23868
  // signaturePlaceHolder: "Sign here" => "Kvittađu hér"
@@ -23794,8 +23876,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["is"]
23794
23876
  // tagboxDoneButtonCaption: "OK" => "ÓKEI"
23795
23877
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Öllum valkostum er raðað"
23796
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"
23797
- // 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."
23798
- // 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."
23799
23881
  // replaceFileCaption: "Replace file" => "Skipta út skrá"
23800
23882
 
23801
23883
 
@@ -23860,7 +23942,7 @@ var indonesianStrings = {
23860
23942
  loadingFile: "Memuat...",
23861
23943
  chooseFile: "Pilih berkas...",
23862
23944
  noFileChosen: "Tidak ada file yang dipilih",
23863
- 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.",
23864
23946
  confirmDelete: "Apakah Anda ingin menghapus catatan?",
23865
23947
  keyDuplicationError: "Nilai harus unik.",
23866
23948
  addColumn: "Tambah kolom",
@@ -23889,8 +23971,8 @@ var indonesianStrings = {
23889
23971
  signaturePlaceHolder: "Tanda tangan di sini",
23890
23972
  chooseFileCaption: "Pilih File",
23891
23973
  takePhotoCaption: "Ambil Foto",
23892
- cameraPlaceHolder: "Klik tombol di bawah ini untuk mengambil foto menggunakan kamera.",
23893
- 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.",
23894
23976
  replaceFileCaption: "Ganti file",
23895
23977
  removeFileCaption: "Hapus berkas ini",
23896
23978
  booleanCheckedLabel: "Iya",
@@ -23918,7 +24000,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["id"]
23918
24000
  // ratingOptionsCaption: "Select..." => "Pilih..."
23919
24001
  // minError: "The value should not be less than {0}" => "Nilainya tidak boleh kurang dari {0}"
23920
24002
  // maxError: "The value should not be greater than {0}" => "Nilai tidak boleh lebih besar dari {0}"
23921
- // 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."
23922
24004
  // emptyRowsText: "There are no rows." => "Tidak ada baris."
23923
24005
  // multipletext_itemname: "text" => "Teks"
23924
24006
  // signaturePlaceHolder: "Sign here" => "Tanda tangan di sini"
@@ -23932,8 +24014,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["id"]
23932
24014
  // tagboxDoneButtonCaption: "OK" => "OKE"
23933
24015
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Semua pilihan diberi peringkat"
23934
24016
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Seret dan lepas pilihan di sini untuk memberi peringkat"// takePhotoCaption: "Take Photo" => "Ambil Foto"
23935
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Klik tombol di bawah ini untuk mengambil foto menggunakan kamera."
23936
- // 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."
23937
24019
  // replaceFileCaption: "Replace file" => "Ganti file"
23938
24020
 
23939
24021
 
@@ -23998,7 +24080,7 @@ var italianSurveyStrings = {
23998
24080
  loadingFile: "Caricamento...",
23999
24081
  chooseFile: "Selezionare file(s)...",
24000
24082
  noFileChosen: "Nessun file selezionato",
24001
- 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.",
24002
24084
  confirmDelete: "Sei sicuro di voler elminare il record?",
24003
24085
  keyDuplicationError: "Questo valore deve essere univoco.",
24004
24086
  addColumn: "Aggiungi colonna",
@@ -24027,8 +24109,8 @@ var italianSurveyStrings = {
24027
24109
  signaturePlaceHolder: "Firmare qui",
24028
24110
  chooseFileCaption: "Scegliere il file",
24029
24111
  takePhotoCaption: "Scatta foto",
24030
- cameraPlaceHolder: "Fai clic sul pulsante qui sotto per scattare una foto utilizzando la fotocamera.",
24031
- 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.",
24032
24114
  replaceFileCaption: "Sostituisci file",
24033
24115
  removeFileCaption: "Rimuovere questo file",
24034
24116
  booleanCheckedLabel: "Sì",
@@ -24058,8 +24140,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["it"]
24058
24140
  // tagboxDoneButtonCaption: "OK" => "OK"
24059
24141
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Tutte le scelte sono classificate"
24060
24142
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Trascina e rilascia le scelte qui per classificarle"// takePhotoCaption: "Take Photo" => "Scatta foto"
24061
- // 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."
24062
- // 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."
24063
24145
  // replaceFileCaption: "Replace file" => "Sostituisci file"
24064
24146
 
24065
24147
 
@@ -24124,7 +24206,7 @@ var japaneseSurveyStrings = {
24124
24206
  loadingFile: "読み込み中",
24125
24207
  chooseFile: "ファイルを選択",
24126
24208
  noFileChosen: "選択されたファイルはありません",
24127
- fileDragAreaPlaceholder: "ここにファイルをドラッグ&ドロップするか、下のボタンをクリックしてアップロードするファイルを選択してください。",
24209
+ filePlaceholder: "ここにファイルをドラッグ&ドロップするか、下のボタンをクリックしてアップロードするファイルを選択してください。",
24128
24210
  confirmDelete: "レコードを削除しますか?",
24129
24211
  keyDuplicationError: "この値は一意でなければなりません。",
24130
24212
  addColumn: "列の追加",
@@ -24153,8 +24235,8 @@ var japaneseSurveyStrings = {
24153
24235
  signaturePlaceHolder: "ここに署名",
24154
24236
  chooseFileCaption: "ファイルを選択",
24155
24237
  takePhotoCaption: "写真を撮る",
24156
- cameraPlaceHolder: "下のボタンをクリックして、カメラを使用して写真を撮ります。",
24157
- fileCameraDragAreaPlaceHolder: "アップロードするファイルをドラッグアンドドロップまたは選択するか、カメラを使用して写真を撮ります。",
24238
+ photoPlaceholder: "下のボタンをクリックして、カメラを使用して写真を撮ります。",
24239
+ fileOrPhotoPlaceholder: "アップロードするファイルをドラッグアンドドロップまたは選択するか、カメラを使用して写真を撮ります。",
24158
24240
  replaceFileCaption: "ファイルの置換",
24159
24241
  removeFileCaption: "このファイルを削除",
24160
24242
  booleanCheckedLabel: "噫",
@@ -24182,7 +24264,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ja"]
24182
24264
  // ratingOptionsCaption: "Select..." => "選ぶ。。。"
24183
24265
  // minError: "The value should not be less than {0}" => "値は {0} 値より小さくすることはできません"
24184
24266
  // maxError: "The value should not be greater than {0}" => "値は {0} を超えてはなりません。"
24185
- // 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." => "ここにファイルをドラッグ&ドロップするか、下のボタンをクリックしてアップロードするファイルを選択してください。"
24186
24268
  // emptyRowsText: "There are no rows." => "行はありません。"
24187
24269
  // multipletext_itemname: "text" => "テキスト"
24188
24270
  // signaturePlaceHolder: "Sign here" => "ここに署名"
@@ -24196,8 +24278,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ja"]
24196
24278
  // tagboxDoneButtonCaption: "OK" => "わかりました"
24197
24279
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "すべての選択肢がランク付けされます"
24198
24280
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "ここに選択肢をドラッグアンドドロップしてランク付けします"// takePhotoCaption: "Take Photo" => "写真を撮る"
24199
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "下のボタンをクリックして、カメラを使用して写真を撮ります。"
24200
- // 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." => "アップロードするファイルをドラッグアンドドロップまたは選択するか、カメラを使用して写真を撮ります。"
24201
24283
  // replaceFileCaption: "Replace file" => "ファイルの置換"
24202
24284
 
24203
24285
 
@@ -24262,7 +24344,7 @@ var kazakhStrings = {
24262
24344
  loadingFile: "Жүктеу...",
24263
24345
  chooseFile: "Файлдарды таңдаңыз...",
24264
24346
  noFileChosen: "Файл таңдалынбады",
24265
- fileDragAreaPlaceholder: "Файлды осы жерге апарып тастаңыз немесе төмендегі түймені басыңыз және кері жүктеу үшін файлды таңдаңыз.",
24347
+ filePlaceholder: "Файлды осы жерге апарып тастаңыз немесе төмендегі түймені басыңыз және кері жүктеу үшін файлды таңдаңыз.",
24266
24348
  confirmDelete: "Сіз жазбаны жоятыныңызға сенімдісіз бе?",
24267
24349
  keyDuplicationError: "Бұл мән бірегей болу керек.",
24268
24350
  addColumn: "Бағана қосу",
@@ -24291,8 +24373,8 @@ var kazakhStrings = {
24291
24373
  signaturePlaceHolder: "Осында кіру",
24292
24374
  chooseFileCaption: "Файл таңдаңыз",
24293
24375
  takePhotoCaption: "Фотосуретке түсу",
24294
- cameraPlaceHolder: "Камераны пайдаланып суретке түсу үшін төмендегі түймені басыңыз.",
24295
- fileCameraDragAreaPlaceHolder: "Фотоаппаратты пайдаланып кері жүктеу немесе суретке түсіру үшін файлды апарып тастаыңыз немесе таңдаңыз.",
24376
+ photoPlaceholder: "Камераны пайдаланып суретке түсу үшін төмендегі түймені басыңыз.",
24377
+ fileOrPhotoPlaceholder: "Фотоаппаратты пайдаланып кері жүктеу немесе суретке түсіру үшін файлды апарып тастаыңыз немесе таңдаңыз.",
24296
24378
  replaceFileCaption: "Файлды ауыстыру",
24297
24379
  removeFileCaption: "Файлды жойыңыз",
24298
24380
  booleanCheckedLabel: "Иә",
@@ -24320,7 +24402,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["kk"]
24320
24402
  // ratingOptionsCaption: "Select..." => "Таңдау..."
24321
24403
  // minError: "The value should not be less than {0}" => "Мәні {0} кем болмауы тиіс"
24322
24404
  // maxError: "The value should not be greater than {0}" => "Мән {0} артық болмауы тиіс"
24323
- // 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." => "Файлды осы жерге апарып тастаңыз немесе төмендегі түймені басыңыз және кері жүктеу үшін файлды таңдаңыз."
24324
24406
  // emptyRowsText: "There are no rows." => "Қатарлар жоқ."
24325
24407
  // multipletext_itemname: "text" => "мәтін"
24326
24408
  // signaturePlaceHolder: "Sign here" => "Осында кіру"
@@ -24334,8 +24416,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["kk"]
24334
24416
  // tagboxDoneButtonCaption: "OK" => "ЖАҚСЫ"
24335
24417
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Барлық таңдаулар ранжирленген"
24336
24418
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Таңдауды рангтеу үшін осында апарып тастау"// takePhotoCaption: "Take Photo" => "Фотосуретке түсу"
24337
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Камераны пайдаланып суретке түсу үшін төмендегі түймені басыңыз."
24338
- // 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." => "Фотоаппаратты пайдаланып кері жүктеу немесе суретке түсіру үшін файлды апарып тастаыңыз немесе таңдаңыз."
24339
24421
  // replaceFileCaption: "Replace file" => "Файлды ауыстыру"
24340
24422
 
24341
24423
 
@@ -24400,7 +24482,7 @@ var koreanStrings = {
24400
24482
  loadingFile: "로드 중...",
24401
24483
  chooseFile: "파일 선택...",
24402
24484
  noFileChosen: "선택된 파일이 없습니다.",
24403
- fileDragAreaPlaceholder: "파일을 여기에 놓거나 아래 버튼을 클릭하여 파일을 불러오세요.",
24485
+ filePlaceholder: "파일을 여기에 놓거나 아래 버튼을 클릭하여 파일을 불러오세요.",
24404
24486
  confirmDelete: "기록을 삭제하시겠습니까?",
24405
24487
  keyDuplicationError: " 이 값은 고유해야합니다.",
24406
24488
  addColumn: "열 추가",
@@ -24429,8 +24511,8 @@ var koreanStrings = {
24429
24511
  signaturePlaceHolder: "서명하세요.",
24430
24512
  chooseFileCaption: "파일 선택",
24431
24513
  takePhotoCaption: "사진 찍기",
24432
- cameraPlaceHolder: "아래 버튼을 클릭하여 카메라로 사진을 찍습니다.",
24433
- fileCameraDragAreaPlaceHolder: "업로드할 파일을 드래그 앤 드롭하거나 선택하거나 카메라를 사용하여 사진을 찍습니다.",
24514
+ photoPlaceholder: "아래 버튼을 클릭하여 카메라로 사진을 찍습니다.",
24515
+ fileOrPhotoPlaceholder: "업로드할 파일을 드래그 앤 드롭하거나 선택하거나 카메라를 사용하여 사진을 찍습니다.",
24434
24516
  replaceFileCaption: "파일 바꾸기",
24435
24517
  removeFileCaption: "파일 제거",
24436
24518
  booleanCheckedLabel: "예",
@@ -24459,8 +24541,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ko"]
24459
24541
  // tagboxDoneButtonCaption: "OK" => "그래"
24460
24542
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "모든 선택 항목이 순위가 매겨집니다."
24461
24543
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "여기에 선택 항목을 끌어다 놓아 순위를 매깁니다."// takePhotoCaption: "Take Photo" => "사진 찍기"
24462
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "아래 버튼을 클릭하여 카메라로 사진을 찍습니다."
24463
- // 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." => "업로드할 파일을 드래그 앤 드롭하거나 선택하거나 카메라를 사용하여 사진을 찍습니다."
24464
24546
  // replaceFileCaption: "Replace file" => "파일 바꾸기"
24465
24547
 
24466
24548
 
@@ -24525,7 +24607,7 @@ var latvianSurveyStrings = {
24525
24607
  loadingFile: "Notiek ielāde ...",
24526
24608
  chooseFile: "Izvēlieties failus ...",
24527
24609
  noFileChosen: "Nav izvēlēts neviens fails",
24528
- 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",
24529
24611
  confirmDelete: "Vai vēlaties izdzēst ierakstu?",
24530
24612
  keyDuplicationError: "Šai vērtībai jābūt unikālai.",
24531
24613
  addColumn: "Pievienot kolonnu",
@@ -24554,8 +24636,8 @@ var latvianSurveyStrings = {
24554
24636
  signaturePlaceHolder: "Parakstieties šeit",
24555
24637
  chooseFileCaption: "Izvēlēties failu",
24556
24638
  takePhotoCaption: "Uzņemt fotoattēlu",
24557
- cameraPlaceHolder: "Noklikšķiniet uz pogas zemāk, lai uzņemtu fotoattēlu, izmantojot kameru.",
24558
- 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.",
24559
24641
  replaceFileCaption: "Aizstāt failu",
24560
24642
  removeFileCaption: "Noņemiet šo failu",
24561
24643
  booleanCheckedLabel: "Jā",
@@ -24585,8 +24667,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["lv"]
24585
24667
  // tagboxDoneButtonCaption: "OK" => "LABI"
24586
24668
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Visas izvēles ir sarindotas"
24587
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"
24588
- // 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."
24589
- // 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."
24590
24672
  // replaceFileCaption: "Replace file" => "Aizstāt failu"
24591
24673
 
24592
24674
 
@@ -24651,7 +24733,7 @@ var lithuaniaSurveyStrings = {
24651
24733
  loadingFile: "Prašome palaukti...",
24652
24734
  chooseFile: "Pasirinkti failą(us)...",
24653
24735
  noFileChosen: "Nepasirinktas joks failas",
24654
- 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.",
24655
24737
  confirmDelete: "Ar norite ištrinti įrašą?",
24656
24738
  keyDuplicationError: "Ši reikšmė turėtų būti unikali.",
24657
24739
  addColumn: "Pridėti stulpelį",
@@ -24680,8 +24762,8 @@ var lithuaniaSurveyStrings = {
24680
24762
  signaturePlaceHolder: "Pasirašykite čia",
24681
24763
  chooseFileCaption: "Pasirinkti failą",
24682
24764
  takePhotoCaption: "Fotografuoti",
24683
- cameraPlaceHolder: "Spustelėkite žemiau esantį mygtuką, kad nufotografuotumėte fotoaparatu.",
24684
- 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ą.",
24685
24767
  replaceFileCaption: "Pakeiskite failą",
24686
24768
  removeFileCaption: "Ištrinti šį failą",
24687
24769
  booleanCheckedLabel: "Taip",
@@ -24709,7 +24791,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["lt"]
24709
24791
  // ratingOptionsCaption: "Select..." => "Žymėti..."
24710
24792
  // minError: "The value should not be less than {0}" => "Vertė neturėtų būti mažesnė nei {0}"
24711
24793
  // maxError: "The value should not be greater than {0}" => "Vertė neturėtų būti didesnė nei {0}"
24712
- // 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."
24713
24795
  // emptyRowsText: "There are no rows." => "Eilių nėra."
24714
24796
  // multipletext_itemname: "text" => "SMS žinutė"
24715
24797
  // signaturePlaceHolder: "Sign here" => "Pasirašykite čia"
@@ -24723,8 +24805,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["lt"]
24723
24805
  // tagboxDoneButtonCaption: "OK" => "GERAI"
24724
24806
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Visi pasirinkimai yra reitinguojami"
24725
24807
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Nuvilkite pasirinkimus čia, kad juos reitinguotumėte"// takePhotoCaption: "Take Photo" => "Fotografuoti"
24726
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Spustelėkite žemiau esantį mygtuką, kad nufotografuotumėte fotoaparatu."
24727
- // 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ą."
24728
24810
  // replaceFileCaption: "Replace file" => "Pakeiskite failą"
24729
24811
 
24730
24812
 
@@ -24789,7 +24871,7 @@ var macedonianSurveyStrings = {
24789
24871
  loadingFile: "Се вчитува ...",
24790
24872
  chooseFile: "Изберете датотека (и) ...",
24791
24873
  noFileChosen: "Не се избрани датотеки",
24792
- fileDragAreaPlaceholder: "Пуштете датотека овде или кликнете на копчето подолу за да ја вчитате датотеката.",
24874
+ filePlaceholder: "Пуштете датотека овде или кликнете на копчето подолу за да ја вчитате датотеката.",
24793
24875
  confirmDelete: "Дали сакате да го избришете записот?",
24794
24876
  keyDuplicationError: "Оваа вредност треба да биде единствена.",
24795
24877
  addColumn: "Додај колона",
@@ -24818,8 +24900,8 @@ var macedonianSurveyStrings = {
24818
24900
  signaturePlaceHolder: "Потпиши се овде.",
24819
24901
  chooseFileCaption: "Изберете датотека",
24820
24902
  takePhotoCaption: "Фотографирајте",
24821
- cameraPlaceHolder: "Кликнете на копчето подолу за да фотографирате користејќи ја камерата.",
24822
- fileCameraDragAreaPlaceHolder: "Влечете и фрлајте или изберете датотека за качување или фотографирање користејќи ја камерата.",
24903
+ photoPlaceholder: "Кликнете на копчето подолу за да фотографирате користејќи ја камерата.",
24904
+ fileOrPhotoPlaceholder: "Влечете и фрлајте или изберете датотека за качување или фотографирање користејќи ја камерата.",
24823
24905
  replaceFileCaption: "Заменете го фајлот.",
24824
24906
  removeFileCaption: "Отстранете ја оваа датотека",
24825
24907
  booleanCheckedLabel: "Да",
@@ -24855,8 +24937,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["mk"]
24855
24937
  // tagboxDoneButtonCaption: "OK" => "ДОБРО"
24856
24938
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Сите избори се рангирани"
24857
24939
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Влечете и фрлете го изборот овде за да ги рангирате"// takePhotoCaption: "Take Photo" => "Фотографирајте"
24858
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Кликнете на копчето подолу за да фотографирате користејќи ја камерата."
24859
- // 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." => "Влечете и фрлајте или изберете датотека за качување или фотографирање користејќи ја камерата."
24860
24942
  // replaceFileCaption: "Replace file" => "Заменете го фајлот."
24861
24943
 
24862
24944
 
@@ -24921,7 +25003,7 @@ var malaySurveyStrings = {
24921
25003
  loadingFile: "Memuat...",
24922
25004
  chooseFile: "Pilih fail...",
24923
25005
  noFileChosen: "Tiada fail dipilih",
24924
- 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.",
24925
25007
  confirmDelete: "Adakah anda ingin memadamkan rekod?",
24926
25008
  keyDuplicationError: "Nilai ini hendaklah unik.",
24927
25009
  addColumn: "Tambahkan lajur",
@@ -24950,8 +25032,8 @@ var malaySurveyStrings = {
24950
25032
  signaturePlaceHolder: "Tandatangan di sini",
24951
25033
  chooseFileCaption: "Pilih fail",
24952
25034
  takePhotoCaption: "Ambil gambar",
24953
- cameraPlaceHolder: "Klik butang di bawah untuk mengambil gambar menggunakan kamera.",
24954
- 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.",
24955
25037
  replaceFileCaption: "Gantikan fail",
24956
25038
  removeFileCaption: "Alih keluar fail ini",
24957
25039
  booleanCheckedLabel: "Ya",
@@ -24983,8 +25065,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ms"]
24983
25065
  // tagboxDoneButtonCaption: "OK" => "OK"
24984
25066
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Semua pilihan disenaraikan"
24985
25067
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Seret dan lepaskan pilihan di sini untuk meletakkannya"// takePhotoCaption: "Take Photo" => "Ambil gambar"
24986
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Klik butang di bawah untuk mengambil gambar menggunakan kamera."
24987
- // 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."
24988
25070
  // replaceFileCaption: "Replace file" => "Gantikan fail"
24989
25071
 
24990
25072
 
@@ -25073,7 +25155,7 @@ var norwegianSurveyStrings = {
25073
25155
  loadingFile: "Laster inn ...",
25074
25156
  chooseFile: "Velg fil (er) ...",
25075
25157
  noFileChosen: "Ingen fil valgt",
25076
- 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.",
25077
25159
  confirmDelete: "Ønsker du å slette posten?",
25078
25160
  keyDuplicationError: "Denne verdien skal være unik.",
25079
25161
  addColumn: "Legg til kolonne",
@@ -25102,8 +25184,8 @@ var norwegianSurveyStrings = {
25102
25184
  signaturePlaceHolder: "Logg inn her",
25103
25185
  chooseFileCaption: "Velg Fil",
25104
25186
  takePhotoCaption: "Ta bilde",
25105
- cameraPlaceHolder: "Klikk på knappen nedenfor for å ta et bilde med kameraet.",
25106
- 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.",
25107
25189
  replaceFileCaption: "Erstatt fil",
25108
25190
  removeFileCaption: "Fjern denne filen",
25109
25191
  booleanCheckedLabel: "Ja",
@@ -25131,7 +25213,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["no"]
25131
25213
  // ratingOptionsCaption: "Select..." => "Velge..."
25132
25214
  // minError: "The value should not be less than {0}" => "Verdien bør ikke være mindre enn {0}"
25133
25215
  // maxError: "The value should not be greater than {0}" => "Verdien bør ikke være større enn {0}"
25134
- // 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."
25135
25217
  // emptyRowsText: "There are no rows." => "Det er ingen rader."
25136
25218
  // multipletext_itemname: "text" => "Tekst"
25137
25219
  // signaturePlaceHolder: "Sign here" => "Logg inn her"
@@ -25145,8 +25227,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["no"]
25145
25227
  // tagboxDoneButtonCaption: "OK" => "OK"
25146
25228
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Alle valg er rangert"
25147
25229
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Dra og slipp valg her for å rangere dem"// takePhotoCaption: "Take Photo" => "Ta bilde"
25148
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Klikk på knappen nedenfor for å ta et bilde med kameraet."
25149
- // 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."
25150
25232
  // replaceFileCaption: "Replace file" => "Erstatt fil"
25151
25233
 
25152
25234
 
@@ -25211,7 +25293,7 @@ var persianSurveyStrings = {
25211
25293
  loadingFile: "بارگیری...",
25212
25294
  chooseFile: "انتخاب فایل(ها)...",
25213
25295
  noFileChosen: "هیچ فایلی انتخاب نشده",
25214
- fileDragAreaPlaceholder: "کشیدن و رها کردن یک فایل در اینجا و یا کلیک بر روی دکمه زیر و یک فایل برای اپلود را انتخاب کنید.",
25296
+ filePlaceholder: "کشیدن و رها کردن یک فایل در اینجا و یا کلیک بر روی دکمه زیر و یک فایل برای اپلود را انتخاب کنید.",
25215
25297
  confirmDelete: "آیا مایل به حذف این ردیف هستید؟",
25216
25298
  keyDuplicationError: "این مقدار باید غیر تکراری باشد",
25217
25299
  addColumn: "ستون جدید",
@@ -25240,8 +25322,8 @@ var persianSurveyStrings = {
25240
25322
  signaturePlaceHolder: "اینجا را امضا کنید",
25241
25323
  chooseFileCaption: "انتخاب فایل",
25242
25324
  takePhotoCaption: "گرفتن عکس",
25243
- cameraPlaceHolder: "روی دکمه زیر کلیک کنید تا با استفاده از دوربین عکس بگیرید.",
25244
- fileCameraDragAreaPlaceHolder: "کشیدن و رها کردن یا انتخاب یک فایل برای اپلود یا گرفتن عکس با استفاده از دوربین.",
25325
+ photoPlaceholder: "روی دکمه زیر کلیک کنید تا با استفاده از دوربین عکس بگیرید.",
25326
+ fileOrPhotoPlaceholder: "کشیدن و رها کردن یا انتخاب یک فایل برای اپلود یا گرفتن عکس با استفاده از دوربین.",
25245
25327
  replaceFileCaption: "جایگزینی پرونده",
25246
25328
  removeFileCaption: "حذف این فایل",
25247
25329
  booleanCheckedLabel: "بله",
@@ -25269,7 +25351,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["fa"]
25269
25351
  // ratingOptionsCaption: "Select..." => "انتخاب..."
25270
25352
  // minError: "The value should not be less than {0}" => "ارزش نباید کمتر از {0}"
25271
25353
  // maxError: "The value should not be greater than {0}" => "ارزش نباید بیشتر از {0}"
25272
- // 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." => "کشیدن و رها کردن یک فایل در اینجا و یا کلیک بر روی دکمه زیر و یک فایل برای اپلود را انتخاب کنید."
25273
25355
  // emptyRowsText: "There are no rows." => "هیچ ردیفی وجود ندارد."
25274
25356
  // multipletext_itemname: "text" => "پیامک"
25275
25357
  // signaturePlaceHolder: "Sign here" => "اینجا را امضا کنید"
@@ -25283,8 +25365,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["fa"]
25283
25365
  // tagboxDoneButtonCaption: "OK" => "باشه"
25284
25366
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "همه انتخاب ها رتبه بندی می شوند"
25285
25367
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "انتخاب های کشیدن و رها کردن در اینجا برای رتبه بندی انها"// takePhotoCaption: "Take Photo" => "گرفتن عکس"
25286
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "روی دکمه زیر کلیک کنید تا با استفاده از دوربین عکس بگیرید."
25287
- // 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." => "کشیدن و رها کردن یا انتخاب یک فایل برای اپلود یا گرفتن عکس با استفاده از دوربین."
25288
25370
  // replaceFileCaption: "Replace file" => "جایگزینی پرونده"
25289
25371
 
25290
25372
 
@@ -25349,7 +25431,7 @@ var polishSurveyStrings = {
25349
25431
  loadingFile: "Ładowanie...",
25350
25432
  chooseFile: "Wybierz plik(i)...",
25351
25433
  noFileChosen: "Nie wybrano żadnego pliku",
25352
- 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.",
25353
25435
  confirmDelete: "Chcesz skasować nagranie?",
25354
25436
  keyDuplicationError: "Ta wartość powinna być wyjątkowa.",
25355
25437
  addColumn: "Dodaj kolumnę",
@@ -25378,8 +25460,8 @@ var polishSurveyStrings = {
25378
25460
  signaturePlaceHolder: "Podpisz tutaj",
25379
25461
  chooseFileCaption: "Wybierz plik",
25380
25462
  takePhotoCaption: "Zrób zdjęcie",
25381
- cameraPlaceHolder: "Kliknij przycisk poniżej, aby zrobić zdjęcie aparatem.",
25382
- 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.",
25383
25465
  replaceFileCaption: "Zastąp plik",
25384
25466
  removeFileCaption: "Usuń ten plik",
25385
25467
  booleanCheckedLabel: "Tak",
@@ -25409,8 +25491,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["pl"]
25409
25491
  // tagboxDoneButtonCaption: "OK" => "OK"
25410
25492
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Wszystkie wybory są uszeregowane"
25411
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"
25412
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Kliknij przycisk poniżej, aby zrobić zdjęcie aparatem."
25413
- // 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."
25414
25496
  // replaceFileCaption: "Replace file" => "Zastąp plik"
25415
25497
 
25416
25498
 
@@ -25478,7 +25560,7 @@ var portugueseBrSurveyStrings = {
25478
25560
  loadingFile: "Carregando...",
25479
25561
  chooseFile: "Escolha o(s) arquivo(s)...",
25480
25562
  noFileChosen: "Nenhum arquivo escolhido",
25481
- 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.",
25482
25564
  confirmDelete: "Tem certeza que deseja deletar?",
25483
25565
  keyDuplicationError: "Esse valor deve ser único.",
25484
25566
  addColumn: "Adicionar coluna",
@@ -25507,8 +25589,8 @@ var portugueseBrSurveyStrings = {
25507
25589
  signaturePlaceHolder: "Assine aqui",
25508
25590
  chooseFileCaption: "Escolher arquivo",
25509
25591
  takePhotoCaption: "Tirar foto",
25510
- cameraPlaceHolder: "Clique no botão abaixo para tirar uma foto usando a câmera.",
25511
- 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.",
25512
25594
  replaceFileCaption: "Substituir arquivo",
25513
25595
  removeFileCaption: "Remover este arquivo",
25514
25596
  booleanCheckedLabel: "Sim",
@@ -25562,7 +25644,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["pt-b
25562
25644
  // invalidExpression: "The expression: {0} should return 'true'." => "A expressão: {0} deve retornar 'verdadeiro'."
25563
25645
  // exceedMaxSize: "The file size should not exceed {0}." => "O tamanho do arquivo não deve exceder {0}."
25564
25646
  // chooseFile: "Choose file(s)..." => "Escolha o(s) arquivo(s)..."
25565
- // 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."
25566
25648
  // addColumn: "Add Column" => "Adicionar coluna"
25567
25649
  // addRow: "Add Row" => "Adicionar linha"
25568
25650
  // removeRow: "Remove" => "Retirar"
@@ -25597,8 +25679,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["pt-b
25597
25679
  // tagboxDoneButtonCaption: "OK" => "OKEY"
25598
25680
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Todas as opções são classificadas"
25599
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"
25600
- // 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."
25601
- // 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."
25602
25684
  // replaceFileCaption: "Replace file" => "Substituir arquivo"
25603
25685
 
25604
25686
 
@@ -25663,7 +25745,7 @@ var portugueseSurveyStrings = {
25663
25745
  loadingFile: "A carregar...",
25664
25746
  chooseFile: "Selecione o(s) arquivo(s)...",
25665
25747
  noFileChosen: "Nenhum ficheiro escolhido",
25666
- 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.",
25667
25749
  confirmDelete: "Tem a certeza que deseja apagar?",
25668
25750
  keyDuplicationError: "Este valor deve ser único.",
25669
25751
  addColumn: "Adicionar coluna",
@@ -25692,8 +25774,8 @@ var portugueseSurveyStrings = {
25692
25774
  signaturePlaceHolder: "Assine aqui",
25693
25775
  chooseFileCaption: "Escolher ficheiro",
25694
25776
  takePhotoCaption: "Tirar foto",
25695
- cameraPlaceHolder: "Clique no botão abaixo para tirar uma foto usando a câmera.",
25696
- 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.",
25697
25779
  replaceFileCaption: "Substituir arquivo",
25698
25780
  removeFileCaption: "Remover este ficheiro",
25699
25781
  booleanCheckedLabel: "Sim",
@@ -25720,8 +25802,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["pt"]
25720
25802
  // noEntriesReadonlyText: "There are no entries." => "Não há entradas."
25721
25803
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Todas as opções são classificadas"
25722
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"
25723
- // 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."
25724
- // 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."
25725
25807
  // replaceFileCaption: "Replace file" => "Substituir arquivo"
25726
25808
 
25727
25809
 
@@ -25786,7 +25868,7 @@ var romanianSurveyStrings = {
25786
25868
  loadingFile: "Se încarcă...",
25787
25869
  chooseFile: "Alege fisierele...",
25788
25870
  noFileChosen: "Niciun fișier ales",
25789
- 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.",
25790
25872
  confirmDelete: "Sunteți sigur că doriți să ștergeți înregistrarea?",
25791
25873
  keyDuplicationError: "Valoarea trebuie să fie unică.",
25792
25874
  addColumn: "Adăugați coloană",
@@ -25815,8 +25897,8 @@ var romanianSurveyStrings = {
25815
25897
  signaturePlaceHolder: "Semnează aici",
25816
25898
  chooseFileCaption: "Alege fișierul",
25817
25899
  takePhotoCaption: "Faceți o fotografie",
25818
- cameraPlaceHolder: "Faceți clic pe butonul de mai jos pentru a face o fotografie folosind camera.",
25819
- 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.",
25820
25902
  replaceFileCaption: "Înlocuire fișier",
25821
25903
  removeFileCaption: "Eliminați acest fișier",
25822
25904
  booleanCheckedLabel: "da",
@@ -25844,7 +25926,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ro"]
25844
25926
  // ratingOptionsCaption: "Select..." => "Alege..."
25845
25927
  // minError: "The value should not be less than {0}" => "Valoarea nu trebuie să fie mai mică de {0}"
25846
25928
  // maxError: "The value should not be greater than {0}" => "Valoarea nu trebuie să fie mai mare de {0}"
25847
- // 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."
25848
25930
  // emptyRowsText: "There are no rows." => "Nu există rânduri."
25849
25931
  // multipletext_itemname: "text" => "Text"
25850
25932
  // signaturePlaceHolder: "Sign here" => "Semnează aici"
@@ -25858,8 +25940,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ro"]
25858
25940
  // tagboxDoneButtonCaption: "OK" => "OK"
25859
25941
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Toate opțiunile sunt clasificate"
25860
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"
25861
- // 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."
25862
- // 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."
25863
25945
  // replaceFileCaption: "Replace file" => "Înlocuire fișier"
25864
25946
 
25865
25947
 
@@ -25924,7 +26006,7 @@ var russianSurveyStrings = {
25924
26006
  loadingFile: "Загрузка...",
25925
26007
  chooseFile: "Выберите файл(ы)...",
25926
26008
  noFileChosen: "Файл не выбран",
25927
- fileDragAreaPlaceholder: "Перетащите файл сюда или нажмите кнопку ниже, чтобы загрузить файл.",
26009
+ filePlaceholder: "Перетащите файл сюда или нажмите кнопку ниже, чтобы загрузить файл.",
25928
26010
  confirmDelete: "Вы точно хотите удалить запись?",
25929
26011
  keyDuplicationError: "Это значение должно быть уникальным.",
25930
26012
  addColumn: "Добавить колонку",
@@ -25953,8 +26035,8 @@ var russianSurveyStrings = {
25953
26035
  signaturePlaceHolder: "Подпишите здесь",
25954
26036
  chooseFileCaption: "Выберите файл",
25955
26037
  takePhotoCaption: "Сделать фото",
25956
- cameraPlaceHolder: "Нажмите кнопку ниже, чтобы сделать снимок с помощью камеры.",
25957
- fileCameraDragAreaPlaceHolder: "Перетащите или выберите файл для загрузки или съемки с помощью камеры.",
26038
+ photoPlaceholder: "Нажмите кнопку ниже, чтобы сделать снимок с помощью камеры.",
26039
+ fileOrPhotoPlaceholder: "Перетащите или выберите файл для загрузки или съемки с помощью камеры.",
25958
26040
  replaceFileCaption: "Заменить файл",
25959
26041
  removeFileCaption: "Удалить файл",
25960
26042
  booleanCheckedLabel: "Да",
@@ -25984,8 +26066,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ru"]
25984
26066
  // tagboxDoneButtonCaption: "OK" => "ХОРОШО"
25985
26067
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Все варианты ранжируются"
25986
26068
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Перетащите сюда варианты, чтобы ранжировать их"// takePhotoCaption: "Take Photo" => "Сделать фото"
25987
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Нажмите кнопку ниже, чтобы сделать снимок с помощью камеры."
25988
- // 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." => "Перетащите или выберите файл для загрузки или съемки с помощью камеры."
25989
26071
  // replaceFileCaption: "Replace file" => "Заменить файл"
25990
26072
 
25991
26073
 
@@ -26050,7 +26132,7 @@ var serbianStrings = {
26050
26132
  loadingFile: "Učitavanje...",
26051
26133
  chooseFile: "Izaberite fajlove...",
26052
26134
  noFileChosen: "Nije izabran nijedan fajl",
26053
- 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.",
26054
26136
  confirmDelete: "Da li želite da izbrišete unos?",
26055
26137
  keyDuplicationError: "Ova vrednost treba da bude jedinstvena.",
26056
26138
  addColumn: "Dodaj kolonu",
@@ -26079,8 +26161,8 @@ var serbianStrings = {
26079
26161
  signaturePlaceHolder: "Potpišite ovde",
26080
26162
  chooseFileCaption: "Izaberi fajl",
26081
26163
  takePhotoCaption: "Fotografisanje",
26082
- cameraPlaceHolder: "Kliknite na dugme ispod da biste snimili fotografiju pomoću fotoaparata.",
26083
- 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.",
26084
26166
  replaceFileCaption: "Zameni datoteku",
26085
26167
  removeFileCaption: "Ukloni ovaj fajl",
26086
26168
  booleanCheckedLabel: "Da",
@@ -26107,7 +26189,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["rs"]
26107
26189
  // indexText: "{0} of {1}" => "{0} {1}"
26108
26190
  // panelDynamicTabTextFormat: "Panel {panelIndex}" => "Panel {panelIndex}"
26109
26191
  // ratingOptionsCaption: "Select..." => "Izaberite..."
26110
- // 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."
26111
26193
  // signaturePlaceHolder: "Sign here" => "Potpišite ovde"
26112
26194
  // filterStringPlaceholder: "Type to search..." => "Otkucajte da biste pretražili..."
26113
26195
  // emptyMessage: "No data to display" => "Nema podataka za prikazivanje"
@@ -26117,8 +26199,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["rs"]
26117
26199
  // tagboxDoneButtonCaption: "OK" => "U redu"
26118
26200
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Svi izbori su rangirani"
26119
26201
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Prevucite i otpustite izbor ovde da biste ih rangirali"// takePhotoCaption: "Take Photo" => "Fotografisanje"
26120
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Kliknite na dugme ispod da biste snimili fotografiju pomoću fotoaparata."
26121
- // 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."
26122
26204
  // replaceFileCaption: "Replace file" => "Zameni datoteku"
26123
26205
 
26124
26206
 
@@ -26183,7 +26265,7 @@ var simplifiedChineseSurveyStrings = {
26183
26265
  loadingFile: "加载...",
26184
26266
  chooseFile: "选择文件...",
26185
26267
  noFileChosen: "未选择文件",
26186
- fileDragAreaPlaceholder: "将文件拖放到此处或单击下面的按钮并选择要上传的文件。",
26268
+ filePlaceholder: "将文件拖放到此处或单击下面的按钮并选择要上传的文件。",
26187
26269
  confirmDelete: "删除记录?",
26188
26270
  keyDuplicationError: "主键不能重复",
26189
26271
  addColumn: "添加列",
@@ -26212,8 +26294,8 @@ var simplifiedChineseSurveyStrings = {
26212
26294
  signaturePlaceHolder: "在此签名",
26213
26295
  chooseFileCaption: "选择文件",
26214
26296
  takePhotoCaption: "拍照",
26215
- cameraPlaceHolder: "单击下面的按钮使用相机拍照。",
26216
- fileCameraDragAreaPlaceHolder: "拖放或选择要上传的文件或使用相机拍摄照片。",
26297
+ photoPlaceholder: "单击下面的按钮使用相机拍照。",
26298
+ fileOrPhotoPlaceholder: "拖放或选择要上传的文件或使用相机拍摄照片。",
26217
26299
  replaceFileCaption: "替换文件",
26218
26300
  removeFileCaption: "移除文件",
26219
26301
  booleanCheckedLabel: "是",
@@ -26239,7 +26321,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["zh-c
26239
26321
  // indexText: "{0} of {1}" => "{1}{0}"
26240
26322
  // panelDynamicTabTextFormat: "Panel {panelIndex}" => "面板 {面板索引}"
26241
26323
  // ratingOptionsCaption: "Select..." => "选择。。。"
26242
- // 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." => "将文件拖放到此处或单击下面的按钮并选择要上传的文件。"
26243
26325
  // signaturePlaceHolder: "Sign here" => "在此签名"
26244
26326
  // filterStringPlaceholder: "Type to search..." => "键入以搜索..."
26245
26327
  // emptyMessage: "No data to display" => "没有要显示的数据"
@@ -26249,8 +26331,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["zh-c
26249
26331
  // tagboxDoneButtonCaption: "OK" => "还行"
26250
26332
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "所有选择均已排名"
26251
26333
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "将选项拖放到此处进行排名"// takePhotoCaption: "Take Photo" => "拍照"
26252
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "单击下面的按钮使用相机拍照。"
26253
- // 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." => "拖放或选择要上传的文件或使用相机拍摄照片。"
26254
26336
  // replaceFileCaption: "Replace file" => "替换文件"
26255
26337
 
26256
26338
 
@@ -26315,7 +26397,7 @@ var slovakSurveyStrings = {
26315
26397
  loadingFile: "Načítanie...",
26316
26398
  chooseFile: "Vyberte súbor(-y)...",
26317
26399
  noFileChosen: "Žiadny vybratý súbor",
26318
- 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.",
26319
26401
  confirmDelete: "Chcete záznam odstrániť?",
26320
26402
  keyDuplicationError: "Táto hodnota má byť jedinečná.",
26321
26403
  addColumn: "Pridať stĺpec",
@@ -26344,8 +26426,8 @@ var slovakSurveyStrings = {
26344
26426
  signaturePlaceHolder: "Podpísať tu",
26345
26427
  chooseFileCaption: "Vybrať súbor",
26346
26428
  takePhotoCaption: "Odfotiť",
26347
- cameraPlaceHolder: "Kliknutím na tlačidlo nižšie nasnímate fotografiu pomocou fotoaparátu.",
26348
- 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.",
26349
26431
  replaceFileCaption: "Nahradenie súboru",
26350
26432
  removeFileCaption: "Odstrániť tento súbor",
26351
26433
  booleanCheckedLabel: "Áno",
@@ -26377,8 +26459,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["sk"]
26377
26459
  // tagboxDoneButtonCaption: "OK" => "OK"
26378
26460
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Všetky možnosti sú zoradené"
26379
26461
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Presuňte sem voľby, aby ste ich zoradili"// takePhotoCaption: "Take Photo" => "Odfotiť"
26380
- // 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."
26381
- // 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."
26382
26464
  // replaceFileCaption: "Replace file" => "Nahradenie súboru"
26383
26465
 
26384
26466
 
@@ -26443,7 +26525,7 @@ var spanishSurveyStrings = {
26443
26525
  loadingFile: "Cargando...",
26444
26526
  chooseFile: "Elija archivo(s)...",
26445
26527
  noFileChosen: "No se ha elegido ningún archivo",
26446
- 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",
26447
26529
  confirmDelete: "¿Quieres borrar el registro?",
26448
26530
  keyDuplicationError: "Este valor debe ser único.",
26449
26531
  addColumn: "Añadir columna",
@@ -26472,8 +26554,8 @@ var spanishSurveyStrings = {
26472
26554
  signaturePlaceHolder: "Firma aqui",
26473
26555
  chooseFileCaption: "Elija el archivo",
26474
26556
  takePhotoCaption: "Tomar foto",
26475
- cameraPlaceHolder: "Haga clic en el botón de abajo para tomar una foto con la cámara.",
26476
- 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.",
26477
26559
  replaceFileCaption: "Reemplazar archivo",
26478
26560
  removeFileCaption: "Elimina este archivo",
26479
26561
  booleanCheckedLabel: "Sí",
@@ -26503,8 +26585,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["es"]
26503
26585
  // tagboxDoneButtonCaption: "OK" => "De acuerdo"
26504
26586
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Todas las opciones están clasificadas"
26505
26587
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Arrastra y suelta opciones aquí para clasificarlas"// takePhotoCaption: "Take Photo" => "Tomar foto"
26506
- // 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."
26507
- // 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."
26508
26590
  // replaceFileCaption: "Replace file" => "Reemplazar archivo"
26509
26591
 
26510
26592
 
@@ -26569,7 +26651,7 @@ var swahiliStrings = {
26569
26651
  loadingFile: "Inapakia...",
26570
26652
  chooseFile: "Chagua faili...",
26571
26653
  noFileChosen: "Hujachagua faili",
26572
- 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.",
26573
26655
  confirmDelete: "Je! Unataka kufuta rekodi?",
26574
26656
  keyDuplicationError: "Thamani hii inapaswa kuwa ya kipekee.",
26575
26657
  addColumn: "Ongeza Kolamu",
@@ -26598,8 +26680,8 @@ var swahiliStrings = {
26598
26680
  signaturePlaceHolder: "Ingia hapa",
26599
26681
  chooseFileCaption: "Chagua faili",
26600
26682
  takePhotoCaption: "Chukua Picha",
26601
- cameraPlaceHolder: "Bonyeza kitufe hapa chini ili kupiga picha kwa kutumia kamera.",
26602
- 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.",
26603
26685
  replaceFileCaption: "Badilisha faili",
26604
26686
  removeFileCaption: "Ondoa faili",
26605
26687
  booleanCheckedLabel: "Ndio",
@@ -26627,7 +26709,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["sw"]
26627
26709
  // ratingOptionsCaption: "Select..." => "Teua..."
26628
26710
  // minError: "The value should not be less than {0}" => "Thamani haipaswi kuwa chini ya {0}"
26629
26711
  // maxError: "The value should not be greater than {0}" => "Thamani haipaswi kuwa kubwa kuliko {0}"
26630
- // 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."
26631
26713
  // emptyRowsText: "There are no rows." => "Hakuna safu."
26632
26714
  // multipletext_itemname: "text" => "Ujumbe"
26633
26715
  // signaturePlaceHolder: "Sign here" => "Ingia hapa"
@@ -26641,8 +26723,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["sw"]
26641
26723
  // tagboxDoneButtonCaption: "OK" => "Sawa kabisa"
26642
26724
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Chaguzi zote zimeorodheshwa"
26643
26725
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Buruta na uache uchaguzi hapa ili kuziorodhesha"// takePhotoCaption: "Take Photo" => "Chukua Picha"
26644
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Bonyeza kitufe hapa chini ili kupiga picha kwa kutumia kamera."
26645
- // 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."
26646
26728
  // replaceFileCaption: "Replace file" => "Badilisha faili"
26647
26729
 
26648
26730
 
@@ -26707,7 +26789,7 @@ var swedishSurveyStrings = {
26707
26789
  loadingFile: "Laddar...",
26708
26790
  chooseFile: "Välj fil(er) ...",
26709
26791
  noFileChosen: "Ingen fil vald",
26710
- 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.",
26711
26793
  confirmDelete: "Vill du radera posten?",
26712
26794
  keyDuplicationError: "Detta värde ska vara unikt.",
26713
26795
  addColumn: "Lägg till kolumn",
@@ -26736,8 +26818,8 @@ var swedishSurveyStrings = {
26736
26818
  signaturePlaceHolder: "Signera här",
26737
26819
  chooseFileCaption: "Välj fil",
26738
26820
  takePhotoCaption: "Ta foto",
26739
- cameraPlaceHolder: "Klicka på knappen nedan för att ta ett foto med kameran.",
26740
- 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.",
26741
26823
  replaceFileCaption: "Ersätt fil",
26742
26824
  removeFileCaption: "Ta bort den här filen",
26743
26825
  booleanCheckedLabel: "Ja",
@@ -26761,14 +26843,14 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["sv"]
26761
26843
  // The following strings have been translated by a machine translation service
26762
26844
  // Remove those strings that you have corrected manually
26763
26845
  // panelDynamicTabTextFormat: "Panel {panelIndex}" => "Panel {panelIndex}"
26764
- // 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."
26765
26847
  // emptyRowsText: "There are no rows." => "Det finns inga rader."
26766
26848
  // noEntriesReadonlyText: "There are no entries." => "Det finns inga poster."
26767
26849
  // tagboxDoneButtonCaption: "OK" => "OKEJ"
26768
26850
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Alla val rangordnas"
26769
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"
26770
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Klicka på knappen nedan för att ta ett foto med kameran."
26771
- // 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."
26772
26854
  // replaceFileCaption: "Replace file" => "Ersätt fil"
26773
26855
 
26774
26856
 
@@ -26834,7 +26916,7 @@ var tajikSurveyStrings = {
26834
26916
  loadingFile: "Боркунӣ...",
26835
26917
  chooseFile: "Файл(ҳо)-ро интихоб кунед...",
26836
26918
  // noFileChosen: "No file chosen",
26837
- // 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.",
26838
26920
  confirmDelete: "Шумо мутмаин ҳастед, ки мехоҳед воридро тоза кунед?",
26839
26921
  keyDuplicationError: "Ин арзиш бояд беназир бошад.",
26840
26922
  addColumn: "Иловаи сутун",
@@ -26940,7 +27022,7 @@ var teluguStrings = {
26940
27022
  loadingFile: "లోడ్ అవుతున్నది",
26941
27023
  chooseFile: "ఫైళ్లను ఎన్నుకోండి",
26942
27024
  noFileChosen: "ఏ ఫైల్ ఎన్నుకో లేదు",
26943
- fileDragAreaPlaceholder: "ఇక్కడ ఒక ఫైల్ ను డ్రాగ్ చేసి డ్రాప్ చేయండి లేదా దిగువ బటన్ క్లిక్ చేయండి మరియు అప్ లోడ్ చేయడానికి ఫైల్ ఎంచుకోండి.",
27025
+ filePlaceholder: "ఇక్కడ ఒక ఫైల్ ను డ్రాగ్ చేసి డ్రాప్ చేయండి లేదా దిగువ బటన్ క్లిక్ చేయండి మరియు అప్ లోడ్ చేయడానికి ఫైల్ ఎంచుకోండి.",
26944
27026
  confirmDelete: "మీరు రికార్డులను తొలగించాలని అనుకుంటున్నారా",
26945
27027
  keyDuplicationError: "విలువ ప్రత్యేకంగా ఉండాలి",
26946
27028
  addColumn: "కాలం చేర్పించండి",
@@ -26969,8 +27051,8 @@ var teluguStrings = {
26969
27051
  signaturePlaceHolder: "ఇక్కడ సంతకం చేయండి",
26970
27052
  chooseFileCaption: "ఫైల్ ఎంచుకోండి",
26971
27053
  takePhotoCaption: "ఫోటో తీసుకోండి",
26972
- cameraPlaceHolder: "కెమెరాను ఉపయోగించి ఫోటో తీయడానికి దిగువ బటన్ మీద క్లిక్ చేయండి.",
26973
- fileCameraDragAreaPlaceHolder: "కెమెరాను ఉపయోగించి ఫోటోను అప్ లోడ్ చేయడానికి లేదా తీయడానికి ఫైల్ ను డ్రాగ్ మరియు డ్రాప్ చేయండి లేదా ఎంచుకోండి.",
27054
+ photoPlaceholder: "కెమెరాను ఉపయోగించి ఫోటో తీయడానికి దిగువ బటన్ మీద క్లిక్ చేయండి.",
27055
+ fileOrPhotoPlaceholder: "కెమెరాను ఉపయోగించి ఫోటోను అప్ లోడ్ చేయడానికి లేదా తీయడానికి ఫైల్ ను డ్రాగ్ మరియు డ్రాప్ చేయండి లేదా ఎంచుకోండి.",
26974
27056
  replaceFileCaption: "ఫైలు మార్చండి",
26975
27057
  removeFileCaption: "ఈ ఫైల్ తీసేయండి",
26976
27058
  booleanCheckedLabel: "అవును",
@@ -26999,7 +27081,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["tel"
26999
27081
  // ratingOptionsCaption: "Select..." => "ఎంచు..."
27000
27082
  // minError: "The value should not be less than {0}" => "విలువ {0} కంటే తక్కువగా ఉండకూడదు."
27001
27083
  // maxError: "The value should not be greater than {0}" => "విలువ {0} కంటే ఎక్కువ ఉండకూడదు."
27002
- // 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." => "ఇక్కడ ఒక ఫైల్ ను డ్రాగ్ చేసి డ్రాప్ చేయండి లేదా దిగువ బటన్ క్లిక్ చేయండి మరియు అప్ లోడ్ చేయడానికి ఫైల్ ఎంచుకోండి."
27003
27085
  // emptyRowsText: "There are no rows." => "వరుసలు లేవు."
27004
27086
  // multipletext_itemname: "text" => "వచనం"
27005
27087
  // signaturePlaceHolder: "Sign here" => "ఇక్కడ సంతకం చేయండి"
@@ -27013,8 +27095,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["tel"
27013
27095
  // tagboxDoneButtonCaption: "OK" => "సరే"
27014
27096
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "అన్ని ఎంపికలు ర్యాంక్ చేయబడతాయి"
27015
27097
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "వాటిని ర్యాంక్ చేయడం కొరకు ఎంపికలను ఇక్కడ డ్రాగ్ మరియు డ్రాప్ చేయండి"// takePhotoCaption: "Take Photo" => "ఫోటో తీసుకోండి"
27016
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "కెమెరాను ఉపయోగించి ఫోటో తీయడానికి దిగువ బటన్ మీద క్లిక్ చేయండి."
27017
- // 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." => "కెమెరాను ఉపయోగించి ఫోటోను అప్ లోడ్ చేయడానికి లేదా తీయడానికి ఫైల్ ను డ్రాగ్ మరియు డ్రాప్ చేయండి లేదా ఎంచుకోండి."
27018
27100
  // replaceFileCaption: "Replace file" => "ఫైలు మార్చండి"
27019
27101
 
27020
27102
 
@@ -27079,7 +27161,7 @@ var thaiStrings = {
27079
27161
  loadingFile: "กำลังโหลด...",
27080
27162
  chooseFile: "เลือกไฟล์...",
27081
27163
  noFileChosen: "ไม่ไฟล์ที่เลือก",
27082
- fileDragAreaPlaceholder: "ลากและวางไฟล์ที่นี่หรือคลิกปุ่มด้านล่างและเลือกไฟล์ที่จะอัปโหลด",
27164
+ filePlaceholder: "ลากและวางไฟล์ที่นี่หรือคลิกปุ่มด้านล่างและเลือกไฟล์ที่จะอัปโหลด",
27083
27165
  confirmDelete: "คุณต้องการลบรายการนี้จริงหรือไม่?",
27084
27166
  keyDuplicationError: "ข้อมูลนี้ต้องเป็น unique.",
27085
27167
  addColumn: "เพิ่มคอลัมน์",
@@ -27108,8 +27190,8 @@ var thaiStrings = {
27108
27190
  signaturePlaceHolder: "ลงชื่อที่นี่",
27109
27191
  chooseFileCaption: "เลือกไฟล์",
27110
27192
  takePhotoCaption: "ถ่ายรูป",
27111
- cameraPlaceHolder: "คลิกปุ่มด้านล่างเพื่อถ่ายภาพโดยใช้กล้อง",
27112
- fileCameraDragAreaPlaceHolder: "ลากและวางหรือเลือกไฟล์ที่จะอัปโหลดหรือถ่ายภาพโดยใช้กล้อง",
27193
+ photoPlaceholder: "คลิกปุ่มด้านล่างเพื่อถ่ายภาพโดยใช้กล้อง",
27194
+ fileOrPhotoPlaceholder: "ลากและวางหรือเลือกไฟล์ที่จะอัปโหลดหรือถ่ายภาพโดยใช้กล้อง",
27113
27195
  replaceFileCaption: "แทนที่ไฟล์",
27114
27196
  removeFileCaption: "นำไฟล์นี้ออก",
27115
27197
  booleanCheckedLabel: "ใช่",
@@ -27137,7 +27219,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["th"]
27137
27219
  // ratingOptionsCaption: "Select..." => "เลือก "
27138
27220
  // minError: "The value should not be less than {0}" => "ค่าไม่ควรน้อยกว่า {0}"
27139
27221
  // maxError: "The value should not be greater than {0}" => "ค่าไม่ควรเกิน{0}"
27140
- // 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." => "ลากและวางไฟล์ที่นี่หรือคลิกปุ่มด้านล่างและเลือกไฟล์ที่จะอัปโหลด"
27141
27223
  // emptyRowsText: "There are no rows." => "ไม่มีแถว"
27142
27224
  // multipletext_itemname: "text" => "ข้อความ"
27143
27225
  // signaturePlaceHolder: "Sign here" => "ลงชื่อที่นี่"
@@ -27151,8 +27233,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["th"]
27151
27233
  // tagboxDoneButtonCaption: "OK" => "ตกลง, ได้"
27152
27234
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "ตัวเลือกทั้งหมดจะถูกจัดอันดับ"
27153
27235
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "ลากและวางตัวเลือกที่นี่เพื่อจัดอันดับ"// takePhotoCaption: "Take Photo" => "ถ่ายรูป"
27154
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "คลิกปุ่มด้านล่างเพื่อถ่ายภาพโดยใช้กล้อง"
27155
- // 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." => "ลากและวางหรือเลือกไฟล์ที่จะอัปโหลดหรือถ่ายภาพโดยใช้กล้อง"
27156
27238
  // replaceFileCaption: "Replace file" => "แทนที่ไฟล์"
27157
27239
 
27158
27240
 
@@ -27217,7 +27299,7 @@ var traditionalChineseSurveyStrings = {
27217
27299
  loadingFile: "裝載。。。",
27218
27300
  chooseFile: "選擇檔案...",
27219
27301
  noFileChosen: "未選擇任何檔",
27220
- fileDragAreaPlaceholder: "將檔案拖放到此處或按下下面的按鈕並選擇要上傳的檔。",
27302
+ filePlaceholder: "將檔案拖放到此處或按下下面的按鈕並選擇要上傳的檔。",
27221
27303
  confirmDelete: "是否要刪除記錄?",
27222
27304
  keyDuplicationError: "此值應該是唯一的。",
27223
27305
  addColumn: "添加列",
@@ -27246,8 +27328,8 @@ var traditionalChineseSurveyStrings = {
27246
27328
  signaturePlaceHolder: "在此簽名",
27247
27329
  chooseFileCaption: "選擇檔案",
27248
27330
  takePhotoCaption: "拍照",
27249
- cameraPlaceHolder: "按下下面的按鈕使用相機拍照。",
27250
- fileCameraDragAreaPlaceHolder: "拖放或選擇要上傳的檔或使用相機拍攝照片。",
27331
+ photoPlaceholder: "按下下面的按鈕使用相機拍照。",
27332
+ fileOrPhotoPlaceholder: "拖放或選擇要上傳的檔或使用相機拍攝照片。",
27251
27333
  replaceFileCaption: "替換檔",
27252
27334
  removeFileCaption: "刪除此檔",
27253
27335
  booleanCheckedLabel: "是的",
@@ -27289,7 +27371,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["zh-t
27289
27371
  // loadingFile: "Loading..." => "裝載。。。"
27290
27372
  // chooseFile: "Choose file(s)..." => "選擇檔案..."
27291
27373
  // noFileChosen: "No file chosen" => "未選擇任何檔"
27292
- // 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." => "將檔案拖放到此處或按下下面的按鈕並選擇要上傳的檔。"
27293
27375
  // confirmDelete: "Do you want to delete the record?" => "是否要刪除記錄?"
27294
27376
  // keyDuplicationError: "This value should be unique." => "此值應該是唯一的。"
27295
27377
  // addColumn: "Add Column" => "添加列"
@@ -27324,8 +27406,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["zh-t
27324
27406
  // tagboxDoneButtonCaption: "OK" => "還行"
27325
27407
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "所有選擇均已排名"
27326
27408
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "將選項拖放到此處進行排名"// takePhotoCaption: "Take Photo" => "拍照"
27327
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "按下下面的按鈕使用相機拍照。"
27328
- // 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." => "拖放或選擇要上傳的檔或使用相機拍攝照片。"
27329
27411
  // replaceFileCaption: "Replace file" => "替換檔"
27330
27412
 
27331
27413
 
@@ -27390,7 +27472,7 @@ var turkishSurveyStrings = {
27390
27472
  loadingFile: "Yükleniyor...",
27391
27473
  chooseFile: "Dosyaları seçin...",
27392
27474
  noFileChosen: "Dosya seçili değil",
27393
- 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.",
27394
27476
  confirmDelete: "Kaydı silmek istiyor musunuz?",
27395
27477
  keyDuplicationError: "Bu değer benzersiz olmalıdır.",
27396
27478
  addColumn: "Sütun Ekle",
@@ -27419,8 +27501,8 @@ var turkishSurveyStrings = {
27419
27501
  signaturePlaceHolder: "Burayı imzalayın",
27420
27502
  chooseFileCaption: "Dosya seçin",
27421
27503
  takePhotoCaption: "Fotoğraf Çekin",
27422
- cameraPlaceHolder: "Kamerayı kullanarak fotoğraf çekmek için aşağıdaki düğmeyi tıklayın.",
27423
- 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.",
27424
27506
  replaceFileCaption: "Dosyayı değiştir",
27425
27507
  removeFileCaption: "Bu dosyayı kaldır",
27426
27508
  booleanCheckedLabel: "Evet",
@@ -27444,8 +27526,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["tr"]
27444
27526
  // The following strings have been translated by a machine translation service
27445
27527
  // Remove those strings that you have corrected manually
27446
27528
  // takePhotoCaption: "Take Photo" => "Fotoğraf Çekin"
27447
- // 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."
27448
- // 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."
27449
27531
  // replaceFileCaption: "Replace file" => "Dosyayı değiştir"
27450
27532
 
27451
27533
 
@@ -27510,7 +27592,7 @@ var ukrainianSurveyStrings = {
27510
27592
  loadingFile: "Завантаження...",
27511
27593
  chooseFile: "Виберіть файл(и)...",
27512
27594
  noFileChosen: "Файл не вибрано",
27513
- fileDragAreaPlaceholder: "Перетягніть файл сюди або натисніть кнопку нижче та виберіть файл для завантаження.",
27595
+ filePlaceholder: "Перетягніть файл сюди або натисніть кнопку нижче та виберіть файл для завантаження.",
27514
27596
  confirmDelete: "Ви хочете видалити запис?",
27515
27597
  keyDuplicationError: "Це значення повинно бути унікальним.",
27516
27598
  addColumn: "Додати колонку",
@@ -27539,8 +27621,8 @@ var ukrainianSurveyStrings = {
27539
27621
  signaturePlaceHolder: "Підпишіться тут",
27540
27622
  chooseFileCaption: "Виберіть файл",
27541
27623
  takePhotoCaption: "Зробити фото",
27542
- cameraPlaceHolder: "Натисніть кнопку нижче, щоб зробити фото за допомогою камери.",
27543
- fileCameraDragAreaPlaceHolder: "Перетягніть або виберіть файл, щоб завантажити або зробити фотографію за допомогою камери.",
27624
+ photoPlaceholder: "Натисніть кнопку нижче, щоб зробити фото за допомогою камери.",
27625
+ fileOrPhotoPlaceholder: "Перетягніть або виберіть файл, щоб завантажити або зробити фотографію за допомогою камери.",
27544
27626
  replaceFileCaption: "Замінити файл",
27545
27627
  removeFileCaption: "Видалити файл",
27546
27628
  booleanCheckedLabel: "Так",
@@ -27568,7 +27650,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ua"]
27568
27650
  // ratingOptionsCaption: "Select..." => "Виберіть..."
27569
27651
  // minError: "The value should not be less than {0}" => "Значення не повинно бути менше {0}"
27570
27652
  // maxError: "The value should not be greater than {0}" => "Значення не повинно бути більше {0}"
27571
- // 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." => "Перетягніть файл сюди або натисніть кнопку нижче та виберіть файл для завантаження."
27572
27654
  // emptyRowsText: "There are no rows." => "Рядів немає."
27573
27655
  // multipletext_itemname: "text" => "Текст"
27574
27656
  // signaturePlaceHolder: "Sign here" => "Підпишіться тут"
@@ -27582,8 +27664,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["ua"]
27582
27664
  // tagboxDoneButtonCaption: "OK" => "ГАРАЗД"
27583
27665
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Всі варіанти ранжуються"
27584
27666
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Перетягніть варіанти тут, щоб оцінити їх"// takePhotoCaption: "Take Photo" => "Зробити фото"
27585
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Натисніть кнопку нижче, щоб зробити фото за допомогою камери."
27586
- // 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." => "Перетягніть або виберіть файл, щоб завантажити або зробити фотографію за допомогою камери."
27587
27669
  // replaceFileCaption: "Replace file" => "Замінити файл"
27588
27670
 
27589
27671
 
@@ -27648,7 +27730,7 @@ var vietnameseSurveyStrings = {
27648
27730
  loadingFile: "Đang tải...",
27649
27731
  chooseFile: "Chọn các tập tin...",
27650
27732
  noFileChosen: "Không có tập tin nào được chọn",
27651
- 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.",
27652
27734
  confirmDelete: "Bạn muốn xóa dòng này?",
27653
27735
  keyDuplicationError: "Giá trị này không nên bị trùng lặp.",
27654
27736
  addColumn: "Thêm cột",
@@ -27677,8 +27759,8 @@ var vietnameseSurveyStrings = {
27677
27759
  signaturePlaceHolder: "Ký tên tại đây",
27678
27760
  chooseFileCaption: "Chọn tập tin",
27679
27761
  takePhotoCaption: "Chụp ảnh",
27680
- cameraPlaceHolder: "Nhấp vào nút bên dưới để chụp ảnh bằng máy ảnh.",
27681
- 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.",
27682
27764
  replaceFileCaption: "Thay thế tập tin",
27683
27765
  removeFileCaption: "Xóa tập tin",
27684
27766
  booleanCheckedLabel: "Có",
@@ -27707,7 +27789,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["vi"]
27707
27789
  // ratingOptionsCaption: "Select..." => "Lựa..."
27708
27790
  // minError: "The value should not be less than {0}" => "Giá trị không được nhỏ hơn {0}"
27709
27791
  // maxError: "The value should not be greater than {0}" => "Giá trị không được lớn hơn {0}"
27710
- // 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."
27711
27793
  // emptyRowsText: "There are no rows." => "Không có hàng."
27712
27794
  // multipletext_itemname: "text" => "Nhắn tin"
27713
27795
  // signaturePlaceHolder: "Sign here" => "Ký tên tại đây"
@@ -27721,8 +27803,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["vi"]
27721
27803
  // tagboxDoneButtonCaption: "OK" => "OK"
27722
27804
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Tất cả các lựa chọn được xếp hạng"
27723
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"
27724
- // 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."
27725
- // 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."
27726
27808
  // replaceFileCaption: "Replace file" => "Thay thế tập tin"
27727
27809
 
27728
27810
 
@@ -27787,7 +27869,7 @@ var welshSurveyStrings = {
27787
27869
  loadingFile: "Wrthi’n llwytho...",
27788
27870
  chooseFile: "Dewiswch ffeil(iau)...",
27789
27871
  noFileChosen: "Heb ddewis ffeil ",
27790
- 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.",
27791
27873
  confirmDelete: "Ydych chi am ddileu’r cofnod?",
27792
27874
  keyDuplicationError: "Dylai’r gwerth hwn fod yn unigryw.",
27793
27875
  addColumn: "Ychwanegu colofn ",
@@ -27816,8 +27898,8 @@ var welshSurveyStrings = {
27816
27898
  signaturePlaceHolder: "Arwydd yma",
27817
27899
  chooseFileCaption: "Dewiswch ffeil ",
27818
27900
  takePhotoCaption: "Tynnu Llun",
27819
- cameraPlaceHolder: "Cliciwch y botwm isod i dynnu llun gan ddefnyddio'r camera.",
27820
- 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.",
27821
27903
  replaceFileCaption: "Amnewid ffeil",
27822
27904
  removeFileCaption: "Tynnu’r ffeil hon ",
27823
27905
  booleanCheckedLabel: "Iawn",
@@ -27845,7 +27927,7 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["cy"]
27845
27927
  // ratingOptionsCaption: "Select..." => "Dewis..."
27846
27928
  // minError: "The value should not be less than {0}" => "Ni ddylai'r gwerth fod yn llai na {0}"
27847
27929
  // maxError: "The value should not be greater than {0}" => "Ni ddylai'r gwerth fod yn fwy na {0}"
27848
- // 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."
27849
27931
  // emptyRowsText: "There are no rows." => "Nid oes unrhyw ffraeau."
27850
27932
  // multipletext_itemname: "text" => "Testun"
27851
27933
  // signaturePlaceHolder: "Sign here" => "Arwydd yma"
@@ -27859,8 +27941,8 @@ survey_core__WEBPACK_IMPORTED_MODULE_0__["surveyLocalization"].localeNames["cy"]
27859
27941
  // tagboxDoneButtonCaption: "OK" => "OCÊ"
27860
27942
  // selectToRankEmptyRankedAreaText: "All choices are ranked" => "Mae'r holl ddewisiadau yn cael eu rhestru"
27861
27943
  // selectToRankEmptyUnrankedAreaText: "Drag and drop choices here to rank them" => "Dewisiadau llusgo a gollwng yma i'w graddio"// takePhotoCaption: "Take Photo" => "Tynnu Llun"
27862
- // cameraPlaceHolder: "Click the button below to take a photo using the camera." => "Cliciwch y botwm isod i dynnu llun gan ddefnyddio'r camera."
27863
- // 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."
27864
27946
  // replaceFileCaption: "Replace file" => "Amnewid ffeil"
27865
27947
 
27866
27948
 
@@ -33827,6 +33909,7 @@ var TriggerExpressionInfo = /** @class */ (function () {
33827
33909
  this.name = name;
33828
33910
  this.canRun = canRun;
33829
33911
  this.doComplete = doComplete;
33912
+ this.runSecondCheck = function (keys) { return false; };
33830
33913
  }
33831
33914
  return TriggerExpressionInfo;
33832
33915
  }());
@@ -33838,6 +33921,7 @@ var Question = /** @class */ (function (_super) {
33838
33921
  function Question(name) {
33839
33922
  var _this = _super.call(this, name) || this;
33840
33923
  _this.customWidgetData = { isNeedRender: true };
33924
+ _this.hasCssErrorCallback = function () { return false; };
33841
33925
  _this.isReadyValue = true;
33842
33926
  _this.dependedQuestions = [];
33843
33927
  /**
@@ -33875,7 +33959,8 @@ var Question = /** @class */ (function (_super) {
33875
33959
  _this.clearValue();
33876
33960
  _this.updateValueWithDefaults();
33877
33961
  });
33878
- _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); };
33879
33964
  _this.registerPropertyChangedHandlers(["width"], function () {
33880
33965
  _this.updateQuestionCss();
33881
33966
  if (!!_this.parent) {
@@ -33895,7 +33980,7 @@ var Question = /** @class */ (function (_super) {
33895
33980
  _this.registerPropertyChangedHandlers(["showCommentArea", "showOtherItem"], function () {
33896
33981
  _this.initCommentFromSurvey();
33897
33982
  });
33898
- _this.registerFunctionOnPropertiesValueChanged(["no", "readOnly"], function () {
33983
+ _this.registerFunctionOnPropertiesValueChanged(["no", "readOnly", "hasVisibleErrors", "containsErrors"], function () {
33899
33984
  _this.updateQuestionCss();
33900
33985
  });
33901
33986
  _this.registerPropertyChangedHandlers(["isMobile"], function () { _this.onMobileChanged(); });
@@ -34328,33 +34413,50 @@ var Question = /** @class */ (function (_super) {
34328
34413
  requiredAnsweredQuestionCount: !this.isEmpty() && this.isRequired ? 1 : 0,
34329
34414
  };
34330
34415
  };
34331
- Question.prototype.runSetValueExpression = function () {
34416
+ Question.prototype.ensureSetValueExpressionRunner = function () {
34332
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 () {
34333
34431
  if (!this.setValueExpression) {
34334
34432
  this.clearValue();
34335
34433
  }
34336
34434
  else {
34337
- if (!this.setValueExpressionRunner) {
34338
- this.setValueExpressionRunner = new _conditions__WEBPACK_IMPORTED_MODULE_6__["ExpressionRunner"](this.setValueExpression);
34339
- this.setValueExpressionRunner.onRunComplete = function (res) {
34340
- if (!_this.isTwoValueEquals(_this.value, res)) {
34341
- _this.value = res;
34342
- }
34343
- };
34344
- }
34345
- else {
34346
- this.setValueExpressionRunner.expression = this.setValueExpression;
34347
- }
34435
+ this.ensureSetValueExpressionRunner();
34348
34436
  this.setValueExpressionRunner.run(this.getDataFilteredValues(), this.getDataFilteredProperties());
34349
34437
  }
34350
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
+ };
34351
34445
  Question.prototype.addTriggerInfo = function (name, canRun, doComplete) {
34352
- this.triggersInfo.push(new TriggerExpressionInfo(name, canRun, doComplete));
34446
+ var info = new TriggerExpressionInfo(name, canRun, doComplete);
34447
+ this.triggersInfo.push(info);
34448
+ return info;
34353
34449
  };
34354
34450
  Question.prototype.runTriggerInfo = function (info, name, value) {
34355
34451
  var expression = this[info.name];
34356
- 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
+ }
34357
34458
  return;
34459
+ }
34358
34460
  if (!info.runner) {
34359
34461
  info.runner = new _conditions__WEBPACK_IMPORTED_MODULE_6__["ExpressionRunner"](expression);
34360
34462
  info.runner.onRunComplete = function (res) {
@@ -34367,9 +34469,7 @@ var Question = /** @class */ (function (_super) {
34367
34469
  else {
34368
34470
  info.runner.expression = expression;
34369
34471
  }
34370
- var keys = {};
34371
- keys[name] = value;
34372
- 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))
34373
34473
  return;
34374
34474
  info.isRunning = true;
34375
34475
  info.runner.run(this.getDataFilteredValues(), this.getDataFilteredProperties());
@@ -34910,7 +35010,7 @@ var Question = /** @class */ (function (_super) {
34910
35010
  this.setPropertyValue("cssRoot", val);
34911
35011
  };
34912
35012
  Question.prototype.getCssRoot = function (cssClasses) {
34913
- var hasError = this.errors.length > 0;
35013
+ var hasError = this.hasCssError();
34914
35014
  return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_10__["CssClassBuilder"]()
34915
35015
  .append(_super.prototype.getCssRoot.call(this, cssClasses))
34916
35016
  .append(this.isFlowLayout && !this.isDesignMode
@@ -35057,6 +35157,9 @@ var Question = /** @class */ (function (_super) {
35057
35157
  .append(cssClasses.error.locationBottom, this.showErrorOnBottom)
35058
35158
  .toString();
35059
35159
  };
35160
+ Question.prototype.hasCssError = function () {
35161
+ return this.errors.length > 0 || this.hasCssErrorCallback();
35162
+ };
35060
35163
  Question.prototype.getRootCss = function () {
35061
35164
  return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_10__["CssClassBuilder"]()
35062
35165
  .append(this.cssRoot)
@@ -35824,7 +35927,9 @@ var Question = /** @class */ (function (_super) {
35824
35927
  });
35825
35928
  Object.defineProperty(Question.prototype, "setValueExpression", {
35826
35929
  /**
35827
- * 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`.
35828
35933
  *
35829
35934
  * [Expressions](https://surveyjs.io/form-library/documentation/design-survey/conditional-logic#expressions (linkStyle))
35830
35935
  * @see defaultValueExpression
@@ -36219,9 +36324,6 @@ var Question = /** @class */ (function (_super) {
36219
36324
  }
36220
36325
  }
36221
36326
  this.updateContainsErrors();
36222
- if (oldHasErrors != errors.length > 0) {
36223
- this.updateQuestionCss();
36224
- }
36225
36327
  if (this.isCollapsed && rec && fireCallback && errors.length > 0) {
36226
36328
  this.expand();
36227
36329
  }
@@ -36757,7 +36859,7 @@ var Question = /** @class */ (function (_super) {
36757
36859
  get: function () {
36758
36860
  if (this.isNewA11yStructure)
36759
36861
  return null;
36760
- return this.errors.length > 0 ? "true" : "false";
36862
+ return this.hasCssError() ? "true" : "false";
36761
36863
  },
36762
36864
  enumerable: false,
36763
36865
  configurable: true
@@ -36787,7 +36889,7 @@ var Question = /** @class */ (function (_super) {
36787
36889
  get: function () {
36788
36890
  if (this.isNewA11yStructure)
36789
36891
  return null;
36790
- return this.errors.length > 0 ? this.id + "_errors" : null;
36892
+ return this.hasCssError() ? this.id + "_errors" : null;
36791
36893
  },
36792
36894
  enumerable: false,
36793
36895
  configurable: true
@@ -36810,7 +36912,7 @@ var Question = /** @class */ (function (_super) {
36810
36912
  });
36811
36913
  Object.defineProperty(Question.prototype, "a11y_input_ariaInvalid", {
36812
36914
  get: function () {
36813
- return this.errors.length > 0 ? "true" : "false";
36915
+ return this.hasCssError() ? "true" : "false";
36814
36916
  },
36815
36917
  enumerable: false,
36816
36918
  configurable: true
@@ -36841,7 +36943,7 @@ var Question = /** @class */ (function (_super) {
36841
36943
  });
36842
36944
  Object.defineProperty(Question.prototype, "a11y_input_ariaDescribedBy", {
36843
36945
  get: function () {
36844
- return this.errors.length > 0 ? this.id + "_errors" : null;
36946
+ return this.hasCssError() ? this.id + "_errors" : null;
36845
36947
  },
36846
36948
  enumerable: false,
36847
36949
  configurable: true
@@ -38211,7 +38313,7 @@ var QuestionSelectBase = /** @class */ (function (_super) {
38211
38313
  configurable: true
38212
38314
  });
38213
38315
  QuestionSelectBase.prototype.updateVisibleChoices = function () {
38214
- if (this.isLoadingFromJson)
38316
+ if (this.isLoadingFromJson || this.isDisposed)
38215
38317
  return;
38216
38318
  var newValue = new Array();
38217
38319
  var calcValue = this.calcVisibleChoices();
@@ -38220,7 +38322,10 @@ var QuestionSelectBase = /** @class */ (function (_super) {
38220
38322
  for (var i = 0; i < calcValue.length; i++) {
38221
38323
  newValue.push(calcValue[i]);
38222
38324
  }
38223
- this.setPropertyValue("visibleChoices", newValue);
38325
+ var oldValue = this.visibleChoices;
38326
+ if (!this.isTwoValueEquals(oldValue, newValue) || this.choicesLazyLoadEnabled) {
38327
+ this.setArrayPropertyDirectly("visibleChoices", newValue);
38328
+ }
38224
38329
  };
38225
38330
  QuestionSelectBase.prototype.calcVisibleChoices = function () {
38226
38331
  if (this.canUseFilteredChoices())
@@ -38887,7 +38992,7 @@ var QuestionSelectBase = /** @class */ (function (_super) {
38887
38992
  .append(this.cssClasses.item)
38888
38993
  .append(this.cssClasses.itemInline, !this.hasColumns && this.colCount === 0)
38889
38994
  .append("sv-q-col-" + this.getCurrentColCount(), !this.hasColumns && this.colCount !== 0)
38890
- .append(this.cssClasses.itemOnError, this.errors.length > 0);
38995
+ .append(this.cssClasses.itemOnError, this.hasCssError());
38891
38996
  var isDisabled = this.isReadOnly || !item.isEnabled;
38892
38997
  var isChecked = this.isItemSelected(item) ||
38893
38998
  (this.isOtherSelected && this.otherItem.value === item.value);
@@ -39597,7 +39702,7 @@ var QuestionBooleanModel = /** @class */ (function (_super) {
39597
39702
  QuestionBooleanModel.prototype.getItemCssValue = function (css) {
39598
39703
  return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_3__["CssClassBuilder"]()
39599
39704
  .append(css.item)
39600
- .append(css.itemOnError, this.errors.length > 0)
39705
+ .append(css.itemOnError, this.hasCssError())
39601
39706
  .append(css.itemDisabled, this.isReadOnly)
39602
39707
  .append(css.itemHover, !this.isDesignMode)
39603
39708
  .append(css.itemChecked, !!this.booleanValue)
@@ -41424,6 +41529,7 @@ var QuestionCustomModel = /** @class */ (function (_super) {
41424
41529
  res.onUpdateCssClassesCallback = function (css) {
41425
41530
  _this.onUpdateQuestionCssClasses(res, css);
41426
41531
  };
41532
+ res.hasCssErrorCallback = function () { return _this.errors.length > 0; };
41427
41533
  }
41428
41534
  return res;
41429
41535
  };
@@ -42089,7 +42195,7 @@ var QuestionDropdownModel = /** @class */ (function (_super) {
42089
42195
  return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_3__["CssClassBuilder"]()
42090
42196
  .append(this.cssClasses.control)
42091
42197
  .append(this.cssClasses.controlEmpty, this.isEmpty())
42092
- .append(this.cssClasses.onError, this.errors.length > 0)
42198
+ .append(this.cssClasses.onError, this.hasCssError())
42093
42199
  .append(this.cssClasses.controlDisabled, this.isReadOnly)
42094
42200
  .append(this.cssClasses.controlInputFieldComponent, !!this.inputFieldComponentName)
42095
42201
  .toString();
@@ -42897,6 +43003,7 @@ __webpack_require__.r(__webpack_exports__);
42897
43003
  /* harmony import */ var _actions_action__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./actions/action */ "./src/actions/action.ts");
42898
43004
  /* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./helpers */ "./src/helpers.ts");
42899
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");
42900
43007
  var __extends = (undefined && undefined.__extends) || (function () {
42901
43008
  var extendStatics = function (d, b) {
42902
43009
  extendStatics = Object.setPrototypeOf ||
@@ -42929,6 +43036,7 @@ var __decorate = (undefined && undefined.__decorate) || function (decorators, ta
42929
43036
 
42930
43037
 
42931
43038
 
43039
+
42932
43040
  /**
42933
43041
  * A class that describes the File Upload question type.
42934
43042
  *
@@ -43409,37 +43517,31 @@ var QuestionFileModel = /** @class */ (function (_super) {
43409
43517
  QuestionFileModel.prototype.getConfirmRemoveMessage = function (fileName) {
43410
43518
  return this.confirmRemoveMessage.format(fileName);
43411
43519
  };
43412
- Object.defineProperty(QuestionFileModel.prototype, "renderedPlaceholder", {
43520
+ Object.defineProperty(QuestionFileModel.prototype, "locRenderedPlaceholder", {
43413
43521
  get: function () {
43414
43522
  var _this = this;
43415
- if (this.renderedPlaceholderValue === undefined) {
43416
- this.renderedPlaceholderValue = (new _base__WEBPACK_IMPORTED_MODULE_3__["ComputedUpdater"](function () {
43417
- var dragAreaText = _this.dragAreaPlaceholder;
43418
- var fileCameraDragAreaPlaceHolder = _this.fileCameraDragAreaPlaceholder;
43419
- var cameraPlaceHolder = _this.cameraPlaceholder;
43420
- var readOnlyText = _this.noFileChosenCaption;
43523
+ if (this.locRenderedPlaceholderValue === undefined) {
43524
+ this.locRenderedPlaceholderValue = (new _base__WEBPACK_IMPORTED_MODULE_3__["ComputedUpdater"](function () {
43421
43525
  var isReadOnly = _this.isReadOnly;
43422
- var hasFileUI = _this.hasFileUI;
43423
- var hasVideoUI = _this.hasVideoUI;
43424
- 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;
43425
43529
  if (isReadOnly) {
43426
- renderedPlaceholder = readOnlyText;
43530
+ renderedPlaceholder = _this.locNoFileChosenCaption;
43531
+ }
43532
+ else if (hasFileUI && hasVideoUI) {
43533
+ renderedPlaceholder = _this.locFileOrPhotoPlaceholder;
43427
43534
  }
43428
43535
  else if (hasFileUI) {
43429
- if (hasVideoUI) {
43430
- renderedPlaceholder = fileCameraDragAreaPlaceHolder;
43431
- }
43432
- else {
43433
- renderedPlaceholder = dragAreaText;
43434
- }
43536
+ renderedPlaceholder = _this.locFilePlaceholder;
43435
43537
  }
43436
43538
  else {
43437
- renderedPlaceholder = cameraPlaceHolder;
43539
+ renderedPlaceholder = _this.locPhotoPlaceholder;
43438
43540
  }
43439
43541
  return renderedPlaceholder;
43440
43542
  }));
43441
43543
  }
43442
- return this.renderedPlaceholderValue;
43544
+ return this.locRenderedPlaceholderValue;
43443
43545
  },
43444
43546
  enumerable: false,
43445
43547
  configurable: true
@@ -43852,7 +43954,7 @@ var QuestionFileModel = /** @class */ (function (_super) {
43852
43954
  QuestionFileModel.prototype.getFileDecoratorCss = function () {
43853
43955
  return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_5__["CssClassBuilder"]()
43854
43956
  .append(this.cssClasses.fileDecorator)
43855
- .append(this.cssClasses.onError, this.errors.length > 0)
43957
+ .append(this.cssClasses.onError, this.hasCssError())
43856
43958
  .append(this.cssClasses.fileDecoratorDrag, this.isDragging)
43857
43959
  .toString();
43858
43960
  };
@@ -44036,17 +44138,17 @@ var QuestionFileModel = /** @class */ (function (_super) {
44036
44138
  Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])({ localizable: { defaultStr: "chooseFile" } })
44037
44139
  ], QuestionFileModel.prototype, "chooseFileTitle", void 0);
44038
44140
  __decorate([
44039
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])({ localizable: { defaultStr: "fileCameraDragAreaPlaceHolder" } })
44040
- ], QuestionFileModel.prototype, "fileCameraDragAreaPlaceholder", void 0);
44141
+ Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])({ localizable: { defaultStr: "fileOrPhotoPlaceholder" } })
44142
+ ], QuestionFileModel.prototype, "fileOrPhotoPlaceholder", void 0);
44041
44143
  __decorate([
44042
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])({ localizable: { defaultStr: "cameraPlaceHolder" } })
44043
- ], QuestionFileModel.prototype, "cameraPlaceholder", void 0);
44144
+ Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])({ localizable: { defaultStr: "photoPlaceholder" } })
44145
+ ], QuestionFileModel.prototype, "photoPlaceholder", void 0);
44044
44146
  __decorate([
44045
- Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])({ localizable: { defaultStr: "fileDragAreaPlaceholder" } })
44046
- ], QuestionFileModel.prototype, "dragAreaPlaceholder", void 0);
44147
+ Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])({ localizable: { defaultStr: "filePlaceholder" } })
44148
+ ], QuestionFileModel.prototype, "filePlaceholder", void 0);
44047
44149
  __decorate([
44048
44150
  Object(_jsonobject__WEBPACK_IMPORTED_MODULE_1__["property"])()
44049
- ], QuestionFileModel.prototype, "renderedPlaceholderValue", void 0);
44151
+ ], QuestionFileModel.prototype, "locRenderedPlaceholderValue", void 0);
44050
44152
  return QuestionFileModel;
44051
44153
  }(_question__WEBPACK_IMPORTED_MODULE_0__["Question"]));
44052
44154
 
@@ -44054,7 +44156,14 @@ _jsonobject__WEBPACK_IMPORTED_MODULE_1__["Serializer"].addClass("file", [
44054
44156
  { name: "showCommentArea:switch", layout: "row", visible: true, category: "general" },
44055
44157
  { name: "showPreview:boolean", default: true },
44056
44158
  "allowMultiple:boolean",
44057
- { 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
+ },
44058
44167
  "imageHeight",
44059
44168
  "imageWidth",
44060
44169
  "acceptedTypes",
@@ -44065,8 +44174,11 @@ _jsonobject__WEBPACK_IMPORTED_MODULE_1__["Serializer"].addClass("file", [
44065
44174
  { name: "correctAnswer", visible: false },
44066
44175
  { name: "validators", visible: false },
44067
44176
  { name: "needConfirmRemoveFile:boolean" },
44068
- { name: "allowCameraAccess:switch", category: "general" },
44069
- { 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 },
44070
44182
  ], function () {
44071
44183
  return new QuestionFileModel("");
44072
44184
  }, "question");
@@ -45570,7 +45682,7 @@ var QuestionMatrixModel = /** @class */ (function (_super) {
45570
45682
  return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_11__["CssClassBuilder"]()
45571
45683
  .append(this.cssClasses.cell, this.hasCellText)
45572
45684
  .append(this.hasCellText ? this.cssClasses.cellText : this.cssClasses.label)
45573
- .append(this.cssClasses.itemOnError, !this.hasCellText && this.errors.length > 0)
45685
+ .append(this.cssClasses.itemOnError, !this.hasCellText && this.hasCssError())
45574
45686
  .append(this.hasCellText ? this.cssClasses.cellTextSelected : this.cssClasses.itemChecked, isChecked)
45575
45687
  .append(this.hasCellText ? this.cssClasses.cellTextDisabled : this.cssClasses.itemDisabled, isDisabled)
45576
45688
  .append(this.cssClasses.itemHover, allowHover && !this.hasCellText)
@@ -45690,7 +45802,7 @@ var QuestionMatrixModel = /** @class */ (function (_super) {
45690
45802
  };
45691
45803
  QuestionMatrixModel.prototype.onCheckForErrors = function (errors, isOnValueChanged) {
45692
45804
  _super.prototype.onCheckForErrors.call(this, errors, isOnValueChanged);
45693
- if ((!isOnValueChanged || this.errors.length > 0) &&
45805
+ if ((!isOnValueChanged || this.hasCssError()) &&
45694
45806
  this.hasErrorInRows()) {
45695
45807
  errors.push(new _error__WEBPACK_IMPORTED_MODULE_6__["RequiredInAllRowsError"](null, this));
45696
45808
  }
@@ -52711,6 +52823,10 @@ var QuestionMultipleTextModel = /** @class */ (function (_super) {
52711
52823
  this.items[i].onValueChanged(itemValue);
52712
52824
  }
52713
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
+ };
52714
52830
  QuestionMultipleTextModel.prototype.getIsRunningValidators = function () {
52715
52831
  if (_super.prototype.getIsRunningValidators.call(this))
52716
52832
  return true;
@@ -56038,7 +56154,7 @@ var QuestionRankingModel = /** @class */ (function (_super) {
56038
56154
  .append(this.cssClasses.rootMobileMod, _utils_devices__WEBPACK_IMPORTED_MODULE_7__["IsMobile"])
56039
56155
  .append(this.cssClasses.rootDisabled, this.isReadOnly)
56040
56156
  .append(this.cssClasses.rootDesignMode, !!this.isDesignMode)
56041
- .append(this.cssClasses.itemOnError, this.errors.length > 0)
56157
+ .append(this.cssClasses.itemOnError, this.hasCssError())
56042
56158
  .append(this.cssClasses.rootDragHandleAreaIcon, _src_settings__WEBPACK_IMPORTED_MODULE_9__["settings"].rankingDragHandleArea === "icon")
56043
56159
  .append(this.cssClasses.rootSelectToRankMod, this.selectToRankEnabled)
56044
56160
  .append(this.cssClasses.rootSelectToRankAlignHorizontal, this.selectToRankEnabled && this.selectToRankAreasLayout === "horizontal")
@@ -56395,6 +56511,27 @@ var QuestionRankingModel = /** @class */ (function (_super) {
56395
56511
  enumerable: false,
56396
56512
  configurable: true
56397
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
+ });
56398
56535
  Object.defineProperty(QuestionRankingModel.prototype, "isNewA11yStructure", {
56399
56536
  //a11y
56400
56537
  get: function () {
@@ -57235,7 +57372,7 @@ var QuestionRatingModel = /** @class */ (function (_super) {
57235
57372
  .append(itemScaleColoredClass, this.scaleColorMode == "colored")
57236
57373
  .append(itemRateColoredClass, this.rateColorMode == "scale" && isSelected)
57237
57374
  .append(itemUnhighlightedClass, isUnhighlighted)
57238
- .append(itemitemOnErrorClass, this.errors.length > 0)
57375
+ .append(itemitemOnErrorClass, this.hasCssError())
57239
57376
  .append(itemSmallClass, this.itemSmallMode)
57240
57377
  .append(this.cssClasses.itemFixedSize, hasFixedSize)
57241
57378
  .toString();
@@ -57246,7 +57383,7 @@ var QuestionRatingModel = /** @class */ (function (_super) {
57246
57383
  return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_6__["CssClassBuilder"]()
57247
57384
  .append(this.cssClasses.control)
57248
57385
  .append(this.cssClasses.controlEmpty, this.isEmpty())
57249
- .append(this.cssClasses.onError, this.errors.length > 0)
57386
+ .append(this.cssClasses.onError, this.hasCssError())
57250
57387
  .append(this.cssClasses.controlDisabled, this.isReadOnly)
57251
57388
  .toString();
57252
57389
  };
@@ -57890,15 +58027,11 @@ var QuestionSignaturePadModel = /** @class */ (function (_super) {
57890
58027
  configurable: true
57891
58028
  });
57892
58029
  QuestionSignaturePadModel.prototype.needShowPlaceholder = function () {
57893
- 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;
57894
58034
  };
57895
- Object.defineProperty(QuestionSignaturePadModel.prototype, "placeHolderText", {
57896
- get: function () {
57897
- return this.getLocalizationString("signaturePlaceHolder");
57898
- },
57899
- enumerable: false,
57900
- configurable: true
57901
- });
57902
58035
  QuestionSignaturePadModel.prototype.endLoadingFromJson = function () {
57903
58036
  _super.prototype.endLoadingFromJson.call(this);
57904
58037
  //todo: need to remove this code
@@ -57916,6 +58049,12 @@ var QuestionSignaturePadModel = /** @class */ (function (_super) {
57916
58049
  __decorate([
57917
58050
  Object(_jsonobject__WEBPACK_IMPORTED_MODULE_0__["property"])({ defaultValue: false })
57918
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);
57919
58058
  return QuestionSignaturePadModel;
57920
58059
  }(_question__WEBPACK_IMPORTED_MODULE_2__["Question"]));
57921
58060
 
@@ -57949,6 +58088,11 @@ _jsonobject__WEBPACK_IMPORTED_MODULE_0__["Serializer"].addClass("signaturepad",
57949
58088
  category: "general",
57950
58089
  default: true,
57951
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; } },
57952
58096
  {
57953
58097
  name: "backgroundImage:file",
57954
58098
  category: "general",
@@ -58133,7 +58277,7 @@ var QuestionTagboxModel = /** @class */ (function (_super) {
58133
58277
  return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_2__["CssClassBuilder"]()
58134
58278
  .append(this.cssClasses.control)
58135
58279
  .append(this.cssClasses.controlEmpty, this.isEmpty())
58136
- .append(this.cssClasses.onError, this.errors.length > 0)
58280
+ .append(this.cssClasses.onError, this.hasCssError())
58137
58281
  .append(this.cssClasses.controlDisabled, this.isReadOnly)
58138
58282
  .toString();
58139
58283
  };
@@ -59254,7 +59398,7 @@ var QuestionTextBase = /** @class */ (function (_super) {
59254
59398
  QuestionTextBase.prototype.getControlClass = function () {
59255
59399
  return new _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_3__["CssClassBuilder"]()
59256
59400
  .append(this.cssClasses.root)
59257
- .append(this.cssClasses.onError, this.errors.length > 0)
59401
+ .append(this.cssClasses.onError, this.hasCssError())
59258
59402
  .append(this.cssClasses.controlDisabled, this.isReadOnly)
59259
59403
  .toString();
59260
59404
  };
@@ -60270,106 +60414,6 @@ _element_factory__WEBPACK_IMPORTED_MODULE_1__["ReactElementFactory"].Instance.re
60270
60414
  });
60271
60415
 
60272
60416
 
60273
- /***/ }),
60274
-
60275
- /***/ "./src/react/components/cover.tsx":
60276
- /*!****************************************!*\
60277
- !*** ./src/react/components/cover.tsx ***!
60278
- \****************************************/
60279
- /*! exports provided: CoverCellComponent, CoverComponent */
60280
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
60281
-
60282
- "use strict";
60283
- __webpack_require__.r(__webpack_exports__);
60284
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "CoverCellComponent", function() { return CoverCellComponent; });
60285
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "CoverComponent", function() { return CoverComponent; });
60286
- /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "react");
60287
- /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
60288
- /* harmony import */ var _reactquestion_element__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../reactquestion_element */ "./src/react/reactquestion_element.tsx");
60289
- /* harmony import */ var _element_factory__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../element-factory */ "./src/react/element-factory.tsx");
60290
- /* harmony import */ var _title_title_element__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./title/title-element */ "./src/react/components/title/title-element.tsx");
60291
- var __extends = (undefined && undefined.__extends) || (function () {
60292
- var extendStatics = function (d, b) {
60293
- extendStatics = Object.setPrototypeOf ||
60294
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
60295
- function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
60296
- return extendStatics(d, b);
60297
- };
60298
- return function (d, b) {
60299
- if (typeof b !== "function" && b !== null)
60300
- throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
60301
- extendStatics(d, b);
60302
- function __() { this.constructor = d; }
60303
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
60304
- };
60305
- })();
60306
-
60307
-
60308
-
60309
-
60310
- var CoverCellComponent = /** @class */ (function (_super) {
60311
- __extends(CoverCellComponent, _super);
60312
- function CoverCellComponent() {
60313
- return _super !== null && _super.apply(this, arguments) || this;
60314
- }
60315
- Object.defineProperty(CoverCellComponent.prototype, "model", {
60316
- get: function () {
60317
- return this.props.model;
60318
- },
60319
- enumerable: false,
60320
- configurable: true
60321
- });
60322
- CoverCellComponent.prototype.renderLogoImage = function () {
60323
- var componentName = this.model.survey.getElementWrapperComponentName(this.model.survey, "logo-image");
60324
- var componentData = this.model.survey.getElementWrapperComponentData(this.model.survey, "logo-image");
60325
- return _element_factory__WEBPACK_IMPORTED_MODULE_2__["ReactElementFactory"].Instance.createElement(componentName, {
60326
- data: componentData,
60327
- });
60328
- };
60329
- CoverCellComponent.prototype.render = function () {
60330
- return (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div", { className: this.model.css, style: this.model.style },
60331
- react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div", { className: "sv-cover__cell-content", style: this.model.contentStyle },
60332
- this.model.showLogo ? (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div", { className: "sv-cover__logo" }, this.renderLogoImage())) : null,
60333
- this.model.showTitle ? (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div", { className: "sv-cover__title", style: { maxWidth: this.model.textAreaWidth } },
60334
- react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement(_title_title_element__WEBPACK_IMPORTED_MODULE_3__["TitleElement"], { element: this.model.survey }))) : null,
60335
- this.model.showDescription ? (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div", { className: "sv-cover__description", style: { maxWidth: this.model.textAreaWidth } },
60336
- 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)));
60337
- };
60338
- return CoverCellComponent;
60339
- }(react__WEBPACK_IMPORTED_MODULE_0___default.a.Component));
60340
-
60341
- var CoverComponent = /** @class */ (function (_super) {
60342
- __extends(CoverComponent, _super);
60343
- function CoverComponent() {
60344
- return _super !== null && _super.apply(this, arguments) || this;
60345
- }
60346
- Object.defineProperty(CoverComponent.prototype, "model", {
60347
- get: function () {
60348
- return this.props.model;
60349
- },
60350
- enumerable: false,
60351
- configurable: true
60352
- });
60353
- CoverComponent.prototype.getStateElement = function () {
60354
- return this.model;
60355
- };
60356
- CoverComponent.prototype.renderElement = function () {
60357
- this.model.survey = this.props.survey;
60358
- if (!(this.props.survey.headerView === "advanced" && this.props.survey.renderedHasHeader)) {
60359
- return null;
60360
- }
60361
- return (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div", { className: this.model.coverClasses, style: { height: this.model.renderedHeight } },
60362
- this.model.backgroundImage ? react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div", { style: this.model.backgroundImageStyle, className: this.model.backgroundImageClasses }) : null,
60363
- 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(CoverCellComponent, { key: index, model: cell }); }))));
60364
- };
60365
- return CoverComponent;
60366
- }(_reactquestion_element__WEBPACK_IMPORTED_MODULE_1__["SurveyElementBase"]));
60367
-
60368
- _element_factory__WEBPACK_IMPORTED_MODULE_2__["ReactElementFactory"].Instance.registerElement("sv-cover", function (props) {
60369
- return react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement(CoverComponent, props);
60370
- });
60371
-
60372
-
60373
60417
  /***/ }),
60374
60418
 
60375
60419
  /***/ "./src/react/components/file/file-choose-button.tsx":
@@ -60518,6 +60562,144 @@ _element_factory__WEBPACK_IMPORTED_MODULE_3__["ReactElementFactory"].Instance.re
60518
60562
  });
60519
60563
 
60520
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
+
60521
60703
  /***/ }),
60522
60704
 
60523
60705
  /***/ "./src/react/components/list/list-item.tsx":
@@ -66514,7 +66696,7 @@ var SurveyQuestionFile = /** @class */ (function (_super) {
66514
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;
66515
66697
  var noFileChosen = this.question.isEmpty() ? (react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("span", { className: this.question.cssClasses.noFileChosen }, this.question.noFileChosenCaption)) : null;
66516
66698
  return (react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { className: this.question.getFileDecoratorCss() },
66517
- 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)),
66518
66700
  react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { className: this.question.cssClasses.wrapper },
66519
66701
  chooseButton,
66520
66702
  actionsContainer,
@@ -68193,18 +68375,21 @@ var SurveyQuestionRankingItem = /** @class */ (function (_super) {
68193
68375
  enumerable: false,
68194
68376
  configurable: true
68195
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
+ };
68196
68382
  SurveyQuestionRankingItem.prototype.renderElement = function () {
68197
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 },
68198
68384
  react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { tabIndex: -1, style: { outline: "none" } },
68199
68385
  react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { className: this.cssClasses.itemGhostNode }),
68200
68386
  react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { className: this.cssClasses.itemContent },
68201
68387
  react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { className: this.cssClasses.itemIconContainer },
68202
- 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" },
68203
- 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" })),
68204
- 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" },
68205
- react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("path", { d: "M10 5L5 0L0 5H4V9H6V5H10Z" }),
68206
- react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("path", { d: "M6 19V15H4V19H0L5 24L10 19H6Z" }))),
68207
- 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()),
68208
68393
  react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", { className: this.cssClasses.controlLabel }, this.text)))));
68209
68394
  };
68210
68395
  return SurveyQuestionRankingItem;
@@ -68823,7 +69008,7 @@ var SurveyQuestionSignaturePad = /** @class */ (function (_super) {
68823
69008
  var cssClasses = this.question.cssClasses;
68824
69009
  var clearButton = this.renderCleanButton();
68825
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 } },
68826
- 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)),
68827
69012
  react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("div", null,
68828
69013
  this.renderBackgroundImage(),
68829
69014
  react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("canvas", { tabIndex: 0, className: this.question.cssClasses.canvas })),
@@ -69783,8 +69968,8 @@ var settings = {
69783
69968
  * @param message A message to be displayed in the confirm dialog window.
69784
69969
  * @param callback A callback function that should be called with `true` if a user confirms an action or `false` otherwise.
69785
69970
  */
69786
- confirmActionAsync: function (message, callback) {
69787
- 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);
69788
69973
  },
69789
69974
  /**
69790
69975
  * A minimum width value for all survey elements.
@@ -71782,7 +71967,7 @@ __webpack_require__.r(__webpack_exports__);
71782
71967
  /* harmony import */ var _actions_container__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./actions/container */ "./src/actions/container.ts");
71783
71968
  /* harmony import */ var _utils_cssClassBuilder__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./utils/cssClassBuilder */ "./src/utils/cssClassBuilder.ts");
71784
71969
  /* harmony import */ var _notifier__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./notifier */ "./src/notifier.ts");
71785
- /* 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");
71786
71971
  /* harmony import */ var _surveytimer__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./surveytimer */ "./src/surveytimer.ts");
71787
71972
  var __extends = (undefined && undefined.__extends) || (function () {
71788
71973
  var extendStatics = function (d, b) {
@@ -73112,7 +73297,7 @@ var SurveyModel = /** @class */ (function (_super) {
73112
73297
  /**
73113
73298
  * Specifies whether to focus the first question on the page on survey startup or when users switch between pages.
73114
73299
  *
73115
- * Default value: `true`
73300
+ * Default value: `false` in v1.9.114 and later, `true` in earlier versions
73116
73301
  * @see focusOnFirstError
73117
73302
  * @see focusFirstQuestion
73118
73303
  * @see focusQuestion
@@ -76966,6 +77151,7 @@ var SurveyModel = /** @class */ (function (_super) {
76966
77151
  };
76967
77152
  SurveyModel.prototype.processResponsiveness = function (width, mobileWidth) {
76968
77153
  var isMobile = width < mobileWidth;
77154
+ this.layoutElements.forEach(function (layoutElement) { return layoutElement.processResponsiveness && layoutElement.processResponsiveness(width); });
76969
77155
  if (this.isMobile === isMobile) {
76970
77156
  return false;
76971
77157
  }
@@ -79658,13 +79844,14 @@ var SurveyModel = /** @class */ (function (_super) {
79658
79844
  Object.keys(theme).forEach(function (key) {
79659
79845
  if (key === "header") {
79660
79846
  _this.removeLayoutElement("cover");
79661
- var newCoverModel = new _cover__WEBPACK_IMPORTED_MODULE_20__["Cover"]();
79662
- newCoverModel.fromTheme(theme);
79847
+ var newCoverModel_1 = new _header__WEBPACK_IMPORTED_MODULE_20__["Cover"]();
79848
+ newCoverModel_1.fromTheme(theme);
79663
79849
  _this.layoutElements.push({
79664
79850
  id: "cover",
79665
79851
  container: "header",
79666
- component: "sv-cover",
79667
- data: newCoverModel
79852
+ component: "sv-header",
79853
+ data: newCoverModel_1,
79854
+ processResponsiveness: function (width) { return newCoverModel_1.processResponsiveness(width); }
79668
79855
  });
79669
79856
  }
79670
79857
  if (key === "isPanelless") {
@@ -79755,7 +79942,7 @@ var SurveyModel = /** @class */ (function (_super) {
79755
79942
  if (newValue === "advanced") {
79756
79943
  var layoutElement = target.layoutElements.filter(function (a) { return a.id === "cover"; })[0];
79757
79944
  if (!layoutElement) {
79758
- var cover = new _cover__WEBPACK_IMPORTED_MODULE_20__["Cover"]();
79945
+ var cover = new _header__WEBPACK_IMPORTED_MODULE_20__["Cover"]();
79759
79946
  cover.logoPositionX = target.logoPosition === "right" ? "right" : "left";
79760
79947
  cover.logoPositionY = "middle";
79761
79948
  cover.titlePositionX = target.logoPosition === "right" ? "left" : "right";
@@ -79766,8 +79953,9 @@ var SurveyModel = /** @class */ (function (_super) {
79766
79953
  target.layoutElements.unshift({
79767
79954
  id: "cover",
79768
79955
  container: "header",
79769
- component: "sv-cover",
79770
- data: cover
79956
+ component: "sv-header",
79957
+ data: cover,
79958
+ processResponsiveness: function (width) { return cover.processResponsiveness(width); }
79771
79959
  });
79772
79960
  }
79773
79961
  }
@@ -79862,7 +80050,7 @@ _jsonobject__WEBPACK_IMPORTED_MODULE_1__["Serializer"].addClass("survey", [
79862
80050
  default: "left",
79863
80051
  choices: ["none", "left", "right", "top", "bottom"],
79864
80052
  },
79865
- { name: "focusFirstQuestionAutomatic:boolean", default: true },
80053
+ { name: "focusFirstQuestionAutomatic:boolean" },
79866
80054
  { name: "focusOnFirstError:boolean", default: true },
79867
80055
  { name: "completedHtml:html", serializationProperty: "locCompletedHtml" },
79868
80056
  {
@@ -82797,7 +82985,7 @@ var Logger = /** @class */ (function () {
82797
82985
  return Logger;
82798
82986
  }());
82799
82987
 
82800
- function showConfirmDialog(message, callback) {
82988
+ function showConfirmDialog(message, callback, applyTitle) {
82801
82989
  var locStr = new _localizablestring__WEBPACK_IMPORTED_MODULE_0__["LocalizableString"](undefined);
82802
82990
  var popupViewModel = _settings__WEBPACK_IMPORTED_MODULE_1__["settings"].showDialog({
82803
82991
  componentName: "sv-string-viewer",
@@ -82820,7 +83008,7 @@ function showConfirmDialog(message, callback) {
82820
83008
  var cancelBtn = toolbar.getActionById("cancel");
82821
83009
  cancelBtn.title = _surveyStrings__WEBPACK_IMPORTED_MODULE_2__["surveyLocalization"].getString("cancel");
82822
83010
  cancelBtn.innerCss = "sv-popup__body-footer-item sv-popup__button sd-btn sd-btn--small";
82823
- applyBtn.title = _surveyStrings__WEBPACK_IMPORTED_MODULE_2__["surveyLocalization"].getString("ok");
83011
+ applyBtn.title = applyTitle || _surveyStrings__WEBPACK_IMPORTED_MODULE_2__["surveyLocalization"].getString("ok");
82824
83012
  applyBtn.innerCss = "sv-popup__body-footer-item sv-popup__button sv-popup__button--danger sd-btn sd-btn--small sd-btn--danger";
82825
83013
  popupViewModel.width = "452px";
82826
83014
  return true;