ntk-cms-api 20.25.9 → 20.25.10
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/fesm2022/ntk-cms-api.mjs +7 -1
- package/fesm2022/ntk-cms-api.mjs.map +1 -1
- package/index.d.ts +4 -1
- package/package.json +1 -1
package/fesm2022/ntk-cms-api.mjs
CHANGED
|
@@ -591,7 +591,8 @@ var FormSubmitedStatusEnum;
|
|
|
591
591
|
(function (FormSubmitedStatusEnum) {
|
|
592
592
|
FormSubmitedStatusEnum[FormSubmitedStatusEnum["none"] = 0] = "none";
|
|
593
593
|
FormSubmitedStatusEnum[FormSubmitedStatusEnum["Success"] = 1] = "Success";
|
|
594
|
-
FormSubmitedStatusEnum[FormSubmitedStatusEnum["
|
|
594
|
+
FormSubmitedStatusEnum[FormSubmitedStatusEnum["Warning"] = 2] = "Warning";
|
|
595
|
+
FormSubmitedStatusEnum[FormSubmitedStatusEnum["Error"] = 3] = "Error";
|
|
595
596
|
})(FormSubmitedStatusEnum || (FormSubmitedStatusEnum = {}));
|
|
596
597
|
|
|
597
598
|
var ManageUserAccessDataTypesEnum;
|
|
@@ -1061,6 +1062,9 @@ class FormInfoModel {
|
|
|
1061
1062
|
else if (this.submitResultMessageType === FormSubmitedStatusEnum.Error) {
|
|
1062
1063
|
return 'error';
|
|
1063
1064
|
}
|
|
1065
|
+
else if (this.submitResultMessageType === FormSubmitedStatusEnum.Warning) {
|
|
1066
|
+
return 'warning';
|
|
1067
|
+
}
|
|
1064
1068
|
else {
|
|
1065
1069
|
return 'none';
|
|
1066
1070
|
}
|
|
@@ -1079,6 +1083,8 @@ class ValidationModel {
|
|
|
1079
1083
|
this.title = '';
|
|
1080
1084
|
this.description = '';
|
|
1081
1085
|
this.status = ValidationStatusEnum.Success;
|
|
1086
|
+
this.linkTarget = '_blank';
|
|
1087
|
+
this.linkSrc = '';
|
|
1082
1088
|
}
|
|
1083
1089
|
}
|
|
1084
1090
|
|