survey-react 1.12.57 → 1.12.59

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/defaultV2.css CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * surveyjs - Survey JavaScript library v1.12.57
2
+ * surveyjs - Survey JavaScript library v1.12.59
3
3
  * Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
4
4
  * License: MIT (http://www.opensource.org/licenses/mit-license.php)
5
5
  */
package/defaultV2.min.css CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * surveyjs - Survey JavaScript library v1.12.57
2
+ * surveyjs - Survey JavaScript library v1.12.59
3
3
  * Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
4
4
  * License: MIT (http://www.opensource.org/licenses/mit-license.php)
5
5
  */
package/modern.css CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * surveyjs - Survey JavaScript library v1.12.57
2
+ * surveyjs - Survey JavaScript library v1.12.59
3
3
  * Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
4
4
  * License: MIT (http://www.opensource.org/licenses/mit-license.php)
5
5
  */
package/modern.min.css CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * surveyjs - Survey JavaScript library v1.12.57
2
+ * surveyjs - Survey JavaScript library v1.12.59
3
3
  * Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
4
4
  * License: MIT (http://www.opensource.org/licenses/mit-license.php)
5
5
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "survey-react",
3
- "version": "1.12.57",
3
+ "version": "1.12.59",
4
4
  "description": "survey.js is a JavaScript Survey Library. It is a modern way to add a survey to your website. It uses JSON for survey metadata and results.",
5
5
  "keywords": [
6
6
  "Survey",
package/survey.css CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * surveyjs - Survey JavaScript library v1.12.57
2
+ * surveyjs - Survey JavaScript library v1.12.59
3
3
  * Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
4
4
  * License: MIT (http://www.opensource.org/licenses/mit-license.php)
5
5
  */
package/survey.min.css CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * surveyjs - Survey JavaScript library v1.12.57
2
+ * surveyjs - Survey JavaScript library v1.12.59
3
3
  * Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
4
4
  * License: MIT (http://www.opensource.org/licenses/mit-license.php)
5
5
  */
package/survey.react.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * surveyjs - Survey JavaScript library v1.12.57
2
+ * surveyjs - Survey JavaScript library v1.12.59
3
3
  * Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
4
4
  * License: MIT (http://www.opensource.org/licenses/mit-license.php)
5
5
  */
@@ -69917,10 +69917,9 @@ var question_paneldynamic_QuestionPanelDynamicModel = /** @class */ (function (_
69917
69917
  if (!qValue || !Array.isArray(qValue)) {
69918
69918
  qValue = [];
69919
69919
  }
69920
- if (qValue.length <= index) {
69921
- for (var i = qValue.length; i <= index; i++) {
69922
- qValue.push({});
69923
- }
69920
+ var lValue = Math.max(index + 1, items.length);
69921
+ for (var i = qValue.length; i < lValue; i++) {
69922
+ qValue.push({});
69924
69923
  }
69925
69924
  if (!qValue[index])
69926
69925
  qValue[index] = {};
@@ -73361,9 +73360,9 @@ Serializer.addClass("currencymask", [
73361
73360
 
73362
73361
  var Version;
73363
73362
  var ReleaseDate;
73364
- Version = "" + "1.12.57";
73363
+ Version = "" + "1.12.59";
73365
73364
  settings.version = Version;
73366
- ReleaseDate = "" + "2025-11-14";
73365
+ ReleaseDate = "" + "2025-12-10";
73367
73366
  function checkLibraryVersion(ver, libraryName) {
73368
73367
  if (Version != ver) {
73369
73368
  var str = "survey-core has version '" + Version + "' and " + libraryName