survey-react 1.12.29 → 1.12.30

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.29
2
+ * surveyjs - Survey JavaScript library v1.12.30
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.29
2
+ * surveyjs - Survey JavaScript library v1.12.30
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.29
2
+ * surveyjs - Survey JavaScript library v1.12.30
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.29
2
+ * surveyjs - Survey JavaScript library v1.12.30
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.29",
3
+ "version": "1.12.30",
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.29
2
+ * surveyjs - Survey JavaScript library v1.12.30
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.29
2
+ * surveyjs - Survey JavaScript library v1.12.30
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.d.ts CHANGED
@@ -7,6 +7,7 @@ declare module "packages/survey-core/src/global_variables_utils" {
7
7
  static getVisualViewport(): VisualViewport | null;
8
8
  static getInnerWidth(): number;
9
9
  static getInnerHeight(): number;
10
+ static getDevicePixelRatio(): number;
10
11
  static getWindow(): Window;
11
12
  static hasOwn(propertyName: string): boolean;
12
13
  static getSelection(): Selection | null;
@@ -7194,6 +7195,7 @@ declare module "packages/survey-core/src/question_paneldynamic" {
7194
7195
  * @see addPanel
7195
7196
  */
7196
7197
  removePanel(value: any): void;
7198
+ private notifyOnPanelAddedRemoved;
7197
7199
  private getVisualPanelIndex;
7198
7200
  private getPanelVisibleIndexById;
7199
7201
  locStrsChanged(): void;
@@ -11973,11 +11975,12 @@ declare module "packages/survey-core/src/survey" {
11973
11975
  private disposeContainerPage;
11974
11976
  private updatePagesContainer;
11975
11977
  private currentSingleElementValue;
11976
- private getSingleQuestions;
11978
+ private getSingleElements;
11977
11979
  get currentSingleElement(): IElement;
11978
11980
  set currentSingleElement(val: IElement);
11979
11981
  get currentSingleQuestion(): Question;
11980
11982
  set currentSingleQuestion(val: Question);
11983
+ private changeCurrentSingleElementOnVisibilityChanged;
11981
11984
  private changeCurrentPageFromPreview;
11982
11985
  protected onQuestionsOnPageModeChanged(oldValue: string): void;
11983
11986
  private getPageStartIndex;
@@ -12142,9 +12145,8 @@ declare module "packages/survey-core/src/survey" {
12142
12145
  private get isValidateOnValueChange();
12143
12146
  private get isValidateOnComplete();
12144
12147
  matrixCellValidate(question: QuestionMatrixDropdownModelBase, options: MatrixCellValidateEvent): SurveyError;
12145
- dynamicPanelAdded(question: QuestionPanelDynamicModel, panelIndex?: number, panel?: PanelModel): void;
12146
- dynamicPanelRemoved(question: QuestionPanelDynamicModel, panelIndex: number, panel: PanelModel): void;
12147
- private hasQuestionVisibleIndeces;
12148
+ dynamicPanelAdded(question: QuestionPanelDynamicModel, panelIndex: number, panel: PanelModel, updateIndexes: boolean): void;
12149
+ dynamicPanelRemoved(question: QuestionPanelDynamicModel, panelIndex: number, panel: PanelModel, updateIndexes: boolean): void;
12148
12150
  dynamicPanelRemoving(question: QuestionPanelDynamicModel, panelIndex: number, panel: PanelModel): boolean;
12149
12151
  dynamicPanelItemValueChanged(question: IQuestion, options: any): void;
12150
12152
  dynamicPanelItemValueChanging(question: IQuestion, options: any): void;
@@ -15281,8 +15283,8 @@ declare module "packages/survey-core/src/base-interfaces" {
15281
15283
  getValidateVisitedEmptyFields(): boolean;
15282
15284
  multipleTextItemAdded(question: IQuestion, item: any): void;
15283
15285
  matrixCellValidate(question: IQuestion, options: any): SurveyError;
15284
- dynamicPanelAdded(question: IQuestion, panelIndex?: number, panel?: IPanel): void;
15285
- dynamicPanelRemoved(question: IQuestion, panelIndex: number, panel: IPanel): void;
15286
+ dynamicPanelAdded(question: IQuestion, panelIndex: number, panel: IPanel, updateIndexes: boolean): void;
15287
+ dynamicPanelRemoved(question: IQuestion, panelIndex: number, panel: IPanel, updateIndexes: boolean): void;
15286
15288
  dynamicPanelRemoving(question: IQuestion, panelIndex: number, panel: IPanel): boolean;
15287
15289
  dynamicPanelItemValueChanged(question: IQuestion, options: any): void;
15288
15290
  dynamicPanelItemValueChanging(question: IQuestion, options: any): void;
@@ -17223,7 +17225,7 @@ declare module "packages/survey-core/src/dropdownListModel" {
17223
17225
  private applyInputString;
17224
17226
  private cleanHtml;
17225
17227
  protected fixInputCase(): void;
17226
- protected applyHintString(item: ItemValue): void;
17228
+ protected applyHintString(): void;
17227
17229
  get inputStringRendered(): string;
17228
17230
  set inputStringRendered(val: string);
17229
17231
  get placeholderRendered(): any;
package/survey.react.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * surveyjs - Survey JavaScript library v1.12.29
2
+ * surveyjs - Survey JavaScript library v1.12.30
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
  */
@@ -2101,6 +2101,11 @@ var DomWindowHelper = /** @class */ (function () {
2101
2101
  return null;
2102
2102
  return window.innerHeight;
2103
2103
  };
2104
+ DomWindowHelper.getDevicePixelRatio = function () {
2105
+ if (!DomWindowHelper.isAvailable())
2106
+ return null;
2107
+ return window.devicePixelRatio;
2108
+ };
2104
2109
  DomWindowHelper.getWindow = function () {
2105
2110
  if (!DomWindowHelper.isAvailable())
2106
2111
  return;
@@ -44496,7 +44501,7 @@ var survey_SurveyModel = /** @class */ (function (_super) {
44496
44501
  if (goToFirstPage) {
44497
44502
  this.currentPage = this.firstVisiblePage;
44498
44503
  if (this.currentSingleElement) {
44499
- var questions = this.getSingleQuestions();
44504
+ var questions = this.getSingleElements();
44500
44505
  this.currentSingleElement = questions.length > 0 ? questions[0] : undefined;
44501
44506
  }
44502
44507
  }
@@ -44805,7 +44810,7 @@ var survey_SurveyModel = /** @class */ (function (_super) {
44805
44810
  return this.nextPage();
44806
44811
  if (this.validationEnabled && !q.validate(true))
44807
44812
  return false;
44808
- var questions = this.getSingleQuestions();
44813
+ var questions = this.getSingleElements();
44809
44814
  var index = questions.indexOf(q);
44810
44815
  if (index < 0 || index === questions.length - 1)
44811
44816
  return false;
@@ -44826,7 +44831,7 @@ var survey_SurveyModel = /** @class */ (function (_super) {
44826
44831
  var q = this.currentSingleElement;
44827
44832
  if (!q)
44828
44833
  return this.prevPage();
44829
- var questions = this.getSingleQuestions();
44834
+ var questions = this.getSingleElements();
44830
44835
  var index = questions.indexOf(q);
44831
44836
  if (index === 0)
44832
44837
  return false;
@@ -45417,17 +45422,16 @@ var survey_SurveyModel = /** @class */ (function (_super) {
45417
45422
  });
45418
45423
  this.updateButtonsVisibility();
45419
45424
  };
45420
- SurveyModel.prototype.getSingleQuestions = function () {
45425
+ SurveyModel.prototype.getSingleElements = function (includeEl) {
45421
45426
  var res = new Array();
45422
45427
  var pages = this.pages;
45423
45428
  var _loop_3 = function () {
45424
45429
  var p = pages[i];
45425
45430
  if (!p.isStartPage && p.isVisible) {
45426
- var qs_1 = [];
45427
- //p.addQuestionsToList(qs, true);
45428
- p.elements.forEach(function (el) { return qs_1.push(el); });
45429
- qs_1.forEach(function (q) { if (q.isVisible)
45430
- res.push(q); });
45431
+ var els_1 = [];
45432
+ p.elements.forEach(function (el) { return els_1.push(el); });
45433
+ els_1.forEach(function (el) { if (el === includeEl || el.isVisible)
45434
+ res.push(el); });
45431
45435
  }
45432
45436
  };
45433
45437
  for (var i = 0; i < pages.length; i++) {
@@ -45484,6 +45488,15 @@ var survey_SurveyModel = /** @class */ (function (_super) {
45484
45488
  enumerable: false,
45485
45489
  configurable: true
45486
45490
  });
45491
+ SurveyModel.prototype.changeCurrentSingleElementOnVisibilityChanged = function () {
45492
+ var el = this.currentSingleElement;
45493
+ if (!el || el.isVisible)
45494
+ return;
45495
+ var els = this.getSingleElements(el);
45496
+ var index = els.indexOf(el);
45497
+ var newEl = (index > 0) ? els[index - 1] : (index < els.length - 1 ? els[index + 1] : undefined);
45498
+ this.currentSingleElement = newEl;
45499
+ };
45487
45500
  SurveyModel.prototype.onQuestionsOnPageModeChanged = function (oldValue) {
45488
45501
  if (this.isShowingPreview || this.isDesignMode)
45489
45502
  return;
@@ -45495,9 +45508,9 @@ var survey_SurveyModel = /** @class */ (function (_super) {
45495
45508
  this.updatePagesContainer();
45496
45509
  }
45497
45510
  if (this.isSingleVisibleQuestion) {
45498
- var questions = this.getSingleQuestions();
45499
- if (questions.length > 0) {
45500
- this.currentSingleElement = questions[0];
45511
+ var els = this.getSingleElements();
45512
+ if (els.length > 0) {
45513
+ this.currentSingleElement = els[0];
45501
45514
  }
45502
45515
  }
45503
45516
  };
@@ -45589,7 +45602,7 @@ var survey_SurveyModel = /** @class */ (function (_super) {
45589
45602
  var lVal = undefined;
45590
45603
  var q = this.currentSingleElement;
45591
45604
  if (!!q) {
45592
- var questions = this.getSingleQuestions();
45605
+ var questions = this.getSingleElements();
45593
45606
  var index = questions.indexOf(q);
45594
45607
  if (index >= 0) {
45595
45608
  fVal = index === 0;
@@ -46345,25 +46358,18 @@ var survey_SurveyModel = /** @class */ (function (_super) {
46345
46358
  this.onMatrixCellValidate.fire(this, options);
46346
46359
  return options.error ? new CustomError(options.error, this) : null;
46347
46360
  };
46348
- SurveyModel.prototype.dynamicPanelAdded = function (question, panelIndex, panel) {
46349
- if (!this.isLoadingFromJson && this.hasQuestionVisibleIndeces(question)) {
46361
+ SurveyModel.prototype.dynamicPanelAdded = function (question, panelIndex, panel, updateIndexes) {
46362
+ if (!this.isLoadingFromJson && updateIndexes) {
46350
46363
  this.updateVisibleIndexes(question.page);
46351
46364
  }
46352
- if (this.onDynamicPanelAdded.isEmpty)
46353
- return;
46354
- var panels = question.panels;
46355
- if (panelIndex === undefined) {
46356
- panelIndex = panels.length - 1;
46357
- panel = panels[panelIndex];
46358
- }
46359
46365
  this.onDynamicPanelAdded.fire(this, { question: question, panel: panel, panelIndex: panelIndex });
46360
46366
  };
46361
- SurveyModel.prototype.dynamicPanelRemoved = function (question, panelIndex, panel) {
46367
+ SurveyModel.prototype.dynamicPanelRemoved = function (question, panelIndex, panel, updateIndexes) {
46362
46368
  var questions = !!panel ? panel.questions : [];
46363
46369
  for (var i = 0; i < questions.length; i++) {
46364
46370
  questions[i].clearOnDeletingContainer();
46365
46371
  }
46366
- if (this.hasQuestionVisibleIndeces(question)) {
46372
+ if (updateIndexes) {
46367
46373
  this.updateVisibleIndexes(question.page);
46368
46374
  }
46369
46375
  this.onDynamicPanelRemoved.fire(this, {
@@ -46372,14 +46378,6 @@ var survey_SurveyModel = /** @class */ (function (_super) {
46372
46378
  panel: panel,
46373
46379
  });
46374
46380
  };
46375
- SurveyModel.prototype.hasQuestionVisibleIndeces = function (question) {
46376
- var qList = question.getNestedQuestions(true);
46377
- for (var i = 0; i < qList.length; i++) {
46378
- if (qList[i].visibleIndex > -1)
46379
- return true;
46380
- }
46381
- return false;
46382
- };
46383
46381
  SurveyModel.prototype.dynamicPanelRemoving = function (question, panelIndex, panel) {
46384
46382
  var options = {
46385
46383
  question: question,
@@ -48010,6 +48008,9 @@ var survey_SurveyModel = /** @class */ (function (_super) {
48010
48008
  if (resetIndexes) {
48011
48009
  this.updateVisibleIndexes(question.page);
48012
48010
  }
48011
+ if (!newValue) {
48012
+ this.changeCurrentSingleElementOnVisibilityChanged();
48013
+ }
48013
48014
  this.onQuestionVisibleChanged.fire(this, {
48014
48015
  question: question,
48015
48016
  name: question.name,
@@ -48023,6 +48024,9 @@ var survey_SurveyModel = /** @class */ (function (_super) {
48023
48024
  this.updateCurrentPage();
48024
48025
  }
48025
48026
  this.updateVisibleIndexes();
48027
+ if (!newValue) {
48028
+ this.changeCurrentSingleElementOnVisibilityChanged();
48029
+ }
48026
48030
  this.onPageVisibleChanged.fire(this, {
48027
48031
  page: page,
48028
48032
  visible: newValue,
@@ -48030,6 +48034,9 @@ var survey_SurveyModel = /** @class */ (function (_super) {
48030
48034
  };
48031
48035
  SurveyModel.prototype.panelVisibilityChanged = function (panel, newValue) {
48032
48036
  this.updateVisibleIndexes(panel.page);
48037
+ if (!newValue) {
48038
+ this.changeCurrentSingleElementOnVisibilityChanged();
48039
+ }
48033
48040
  this.onPanelVisibleChanged.fire(this, {
48034
48041
  panel: panel,
48035
48042
  visible: newValue,
@@ -53429,6 +53436,8 @@ var dropdownListModel_DropdownListModel = /** @class */ (function (_super) {
53429
53436
  }
53430
53437
  var updateAfterFilterStringChanged = function () {
53431
53438
  _this.setFilterStringToListModel(_this.filterString);
53439
+ if (_this.filterString)
53440
+ _this.applyHintString();
53432
53441
  _this.popupRecalculatePosition(true);
53433
53442
  };
53434
53443
  if (this.question.choicesLazyLoadEnabled) {
@@ -53476,7 +53485,8 @@ var dropdownListModel_DropdownListModel = /** @class */ (function (_super) {
53476
53485
  if (hintStringMiddle && this.inputString != hintStringMiddle)
53477
53486
  this.inputString = hintStringMiddle;
53478
53487
  };
53479
- DropdownListModel.prototype.applyHintString = function (item) {
53488
+ DropdownListModel.prototype.applyHintString = function () {
53489
+ var item = this.listModel.focusedItem || this.question.selectedItem;
53480
53490
  var hasHtml = item === null || item === void 0 ? void 0 : item.locText.hasHtml;
53481
53491
  if (hasHtml || this.question.inputFieldComponentName) {
53482
53492
  this._markdownMode = true;
@@ -53496,9 +53506,6 @@ var dropdownListModel_DropdownListModel = /** @class */ (function (_super) {
53496
53506
  if (!val) {
53497
53507
  this.hintString = "";
53498
53508
  }
53499
- else {
53500
- this.applyHintString(this.listModel.focusedItem || this.question.selectedItem);
53501
- }
53502
53509
  },
53503
53510
  enumerable: false,
53504
53511
  configurable: true
@@ -53559,7 +53566,7 @@ var dropdownListModel_DropdownListModel = /** @class */ (function (_super) {
53559
53566
  });
53560
53567
  Object.defineProperty(DropdownListModel.prototype, "hintStringSuffix", {
53561
53568
  get: function () {
53562
- return this.hintString.substring(this.hintStringLC.indexOf(this.inputStringLC) + this.inputStringLC.length);
53569
+ return this.hintStringLC.indexOf(this.inputStringLC) >= 0 ? this.hintString.substring(this.hintStringLC.indexOf(this.inputStringLC) + this.inputStringLC.length) : "";
53563
53570
  },
53564
53571
  enumerable: false,
53565
53572
  configurable: true
@@ -53688,7 +53695,7 @@ var dropdownListModel_DropdownListModel = /** @class */ (function (_super) {
53688
53695
  this.applyInputString(this.listModel.focusedItem || this.question.selectedItem);
53689
53696
  }
53690
53697
  else {
53691
- this.applyHintString(this.listModel.focusedItem || this.question.selectedItem);
53698
+ this.applyHintString();
53692
53699
  }
53693
53700
  this.fixInputCase();
53694
53701
  this.ariaActivedescendant = (_a = this.listModel.focusedItem) === null || _a === void 0 ? void 0 : _a.elementId;
@@ -59221,7 +59228,7 @@ var dropdownMultiSelectListModel_DropdownMultiSelectListModel = /** @class */ (f
59221
59228
  var newValue = [].concat(this.question.renderedValue || []);
59222
59229
  newValue.splice(newValue.indexOf(id), 1);
59223
59230
  this.question.renderedValue = newValue;
59224
- this.applyHintString(this.listModel.focusedItem);
59231
+ this.applyHintString();
59225
59232
  this.updateListState();
59226
59233
  };
59227
59234
  DropdownMultiSelectListModel.prototype.clear = function () {
@@ -59264,7 +59271,7 @@ var dropdownMultiSelectListModel_DropdownMultiSelectListModel = /** @class */ (f
59264
59271
  DropdownMultiSelectListModel.prototype.afterScrollToFocusedItem = function () {
59265
59272
  var _a;
59266
59273
  if (!((_a = this.listModel.focusedItem) === null || _a === void 0 ? void 0 : _a.selected)) {
59267
- this.applyHintString(this.listModel.focusedItem || this.question.selectedItem);
59274
+ this.applyHintString();
59268
59275
  }
59269
59276
  else {
59270
59277
  this.hintString = "";
@@ -66349,8 +66356,7 @@ var question_signaturepad_QuestionSignaturePadModel = /** @class */ (function (_
66349
66356
  _this._loadedData = undefined;
66350
66357
  _this.updateValueHandler = function () {
66351
66358
  _this._loadedData = undefined;
66352
- _this.scaleCanvas(false, true);
66353
- _this.loadPreview(_this.value);
66359
+ _this.scaleCanvas(true, true);
66354
66360
  };
66355
66361
  return _this;
66356
66362
  }
@@ -66458,7 +66464,13 @@ var question_signaturepad_QuestionSignaturePadModel = /** @class */ (function (_
66458
66464
  QuestionSignaturePadModel.prototype.fromDataUrl = function (data) {
66459
66465
  this._loadedData = data;
66460
66466
  if (this.signaturePad) {
66461
- this.signaturePad.fromDataURL(data, { width: this.canvas.width * this.scale, height: this.canvas.height * this.scale });
66467
+ var devicePixelRatio_1 = DomWindowHelper.getDevicePixelRatio();
66468
+ var ratio = (this.dataFormat === "svg" && !!devicePixelRatio_1) ? devicePixelRatio_1 : 1;
66469
+ var options = {
66470
+ width: this.canvas.width * this.scale / ratio,
66471
+ height: this.canvas.height * this.scale / ratio
66472
+ };
66473
+ this.signaturePad.fromDataURL(data, options);
66462
66474
  }
66463
66475
  };
66464
66476
  Object.defineProperty(QuestionSignaturePadModel.prototype, "loadedData", {
@@ -68691,8 +68703,7 @@ var question_paneldynamic_QuestionPanelDynamicModel = /** @class */ (function (_
68691
68703
  if (!this.isRenderModeList) {
68692
68704
  this.currentIndex = index;
68693
68705
  }
68694
- if (this.survey)
68695
- this.survey.dynamicPanelAdded(this);
68706
+ this.notifyOnPanelAddedRemoved(true, index);
68696
68707
  return this.panelsCore[index];
68697
68708
  };
68698
68709
  QuestionPanelDynamicModel.prototype.updateValueOnAddingPanel = function (prevIndex, index) {
@@ -68825,10 +68836,26 @@ var question_paneldynamic_QuestionPanelDynamicModel = /** @class */ (function (_
68825
68836
  this.value = value;
68826
68837
  this.updateFooterActions();
68827
68838
  this.fireCallback(this.panelCountChangedCallback);
68828
- if (this.survey)
68829
- this.survey.dynamicPanelRemoved(this, index, panel);
68839
+ this.notifyOnPanelAddedRemoved(false, index, panel);
68830
68840
  this.isValueChangingInternally = false;
68831
68841
  };
68842
+ QuestionPanelDynamicModel.prototype.notifyOnPanelAddedRemoved = function (isAdded, index, panel) {
68843
+ if (!panel) {
68844
+ panel = this.panelsCore[index];
68845
+ }
68846
+ if (this.survey) {
68847
+ var updateIndeces = this.showQuestionNumbers === "onSurvey";
68848
+ if (isAdded) {
68849
+ this.survey.dynamicPanelAdded(this, index, panel, updateIndeces);
68850
+ }
68851
+ else {
68852
+ this.survey.dynamicPanelRemoved(this, index, panel, updateIndeces);
68853
+ }
68854
+ }
68855
+ if (isAdded && !!panel && this.showQuestionNumbers === "onPanel") {
68856
+ panel.setVisibleIndex(0);
68857
+ }
68858
+ };
68832
68859
  QuestionPanelDynamicModel.prototype.getVisualPanelIndex = function (val) {
68833
68860
  if (helpers_Helpers.isNumber(val))
68834
68861
  return val;
@@ -69021,7 +69048,7 @@ var question_paneldynamic_QuestionPanelDynamicModel = /** @class */ (function (_
69021
69048
  this.assignOnPropertyChangedToTemplate();
69022
69049
  if (!!this.survey) {
69023
69050
  for (var i = 0; i < this.panelCount; i++) {
69024
- this.survey.dynamicPanelAdded(this);
69051
+ this.notifyOnPanelAddedRemoved(true, i);
69025
69052
  }
69026
69053
  }
69027
69054
  this.updateIsReady();
@@ -72903,9 +72930,9 @@ Serializer.addClass("currencymask", [
72903
72930
 
72904
72931
  var Version;
72905
72932
  var ReleaseDate;
72906
- Version = "" + "1.12.29";
72933
+ Version = "" + "1.12.30";
72907
72934
  settings.version = Version;
72908
- ReleaseDate = "" + "2025-03-24";
72935
+ ReleaseDate = "" + "2025-03-31";
72909
72936
  function checkLibraryVersion(ver, libraryName) {
72910
72937
  if (Version != ver) {
72911
72938
  var str = "survey-core has version '" + Version + "' and " + libraryName