survey-react 1.12.42 → 1.12.43
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 +1 -1
- package/defaultV2.min.css +1 -1
- package/modern.css +1 -1
- package/modern.min.css +1 -1
- package/package.json +1 -1
- package/survey.css +1 -1
- package/survey.min.css +1 -1
- package/survey.react.d.ts +1 -0
- package/survey.react.js +16 -11
- package/survey.react.js.map +1 -1
- package/survey.react.min.js +3 -3
package/defaultV2.css
CHANGED
package/defaultV2.min.css
CHANGED
package/modern.css
CHANGED
package/modern.min.css
CHANGED
package/package.json
CHANGED
package/survey.css
CHANGED
package/survey.min.css
CHANGED
package/survey.react.d.ts
CHANGED
@@ -12503,6 +12503,7 @@ declare module "packages/survey-core/src/survey" {
|
|
12503
12503
|
*/
|
12504
12504
|
setValue(name: string, newQuestionValue: any, locNotification?: any, allowNotifyValueChanged?: boolean, questionName?: string): void;
|
12505
12505
|
private isValueEmpyOnSetValue;
|
12506
|
+
private nofifyQuesitonHash;
|
12506
12507
|
private updateOnSetValue;
|
12507
12508
|
private isValueEqual;
|
12508
12509
|
protected doOnPageAdded(page: PageModel): void;
|
package/survey.react.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* surveyjs - Survey JavaScript library v1.12.
|
2
|
+
* surveyjs - Survey JavaScript library v1.12.43
|
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
|
*/
|
@@ -23914,7 +23914,7 @@ var choicesRestful_ChoicesRestful = /** @class */ (function (_super) {
|
|
23914
23914
|
* @see titleName
|
23915
23915
|
*/
|
23916
23916
|
get: function () {
|
23917
|
-
return this.getPropertyValue("valueName"
|
23917
|
+
return this.getPropertyValue("valueName") || "";
|
23918
23918
|
},
|
23919
23919
|
set: function (val) {
|
23920
23920
|
this.setPropertyValue("valueName", val);
|
@@ -23931,7 +23931,7 @@ var choicesRestful_ChoicesRestful = /** @class */ (function (_super) {
|
|
23931
23931
|
* @see valueName
|
23932
23932
|
*/
|
23933
23933
|
get: function () {
|
23934
|
-
return this.getPropertyValue("titleName"
|
23934
|
+
return this.getPropertyValue("titleName") || "";
|
23935
23935
|
},
|
23936
23936
|
set: function (val) {
|
23937
23937
|
this.setPropertyValue("titleName", val);
|
@@ -23948,7 +23948,7 @@ var choicesRestful_ChoicesRestful = /** @class */ (function (_super) {
|
|
23948
23948
|
* @see valueName
|
23949
23949
|
*/
|
23950
23950
|
get: function () {
|
23951
|
-
return this.getPropertyValue("imageLinkName"
|
23951
|
+
return this.getPropertyValue("imageLinkName") || "";
|
23952
23952
|
},
|
23953
23953
|
set: function (val) {
|
23954
23954
|
this.setPropertyValue("imageLinkName", val);
|
@@ -41354,6 +41354,7 @@ var survey_SurveyModel = /** @class */ (function (_super) {
|
|
41354
41354
|
_this.conditionUpdateVisibleIndexes = false;
|
41355
41355
|
_this.conditionNotifyElementsOnAnyValueOrVariableChanged = false;
|
41356
41356
|
_this.isEndLoadingFromJson = null;
|
41357
|
+
_this.nofifyQuesitonHash = {};
|
41357
41358
|
_this.questionHashes = {
|
41358
41359
|
names: {},
|
41359
41360
|
namesInsensitive: {},
|
@@ -48001,12 +48002,16 @@ var survey_SurveyModel = /** @class */ (function (_super) {
|
|
48001
48002
|
if (locNotification === true || this.isDisposed || this.isRunningElementsBindings)
|
48002
48003
|
return;
|
48003
48004
|
questionName = questionName || name;
|
48005
|
+
this.nofifyQuesitonHash[name] = true;
|
48004
48006
|
this.checkTriggersAndRunConditions(name, newValue, oldValue);
|
48005
|
-
if (
|
48006
|
-
|
48007
|
-
|
48008
|
-
|
48009
|
-
|
48007
|
+
if (this.nofifyQuesitonHash[name]) {
|
48008
|
+
if (allowNotifyValueChanged) {
|
48009
|
+
this.notifyQuestionOnValueChanged(name, newValue, questionName);
|
48010
|
+
}
|
48011
|
+
if (locNotification !== "text") {
|
48012
|
+
this.tryGoNextPageAutomatic(name);
|
48013
|
+
}
|
48014
|
+
delete this.nofifyQuesitonHash[name];
|
48010
48015
|
}
|
48011
48016
|
};
|
48012
48017
|
SurveyModel.prototype.isValueEqual = function (name, newValue) {
|
@@ -73283,9 +73288,9 @@ Serializer.addClass("currencymask", [
|
|
73283
73288
|
|
73284
73289
|
var Version;
|
73285
73290
|
var ReleaseDate;
|
73286
|
-
Version = "" + "1.12.
|
73291
|
+
Version = "" + "1.12.43";
|
73287
73292
|
settings.version = Version;
|
73288
|
-
ReleaseDate = "" + "2025-
|
73293
|
+
ReleaseDate = "" + "2025-07-01";
|
73289
73294
|
function checkLibraryVersion(ver, libraryName) {
|
73290
73295
|
if (Version != ver) {
|
73291
73296
|
var str = "survey-core has version '" + Version + "' and " + libraryName
|