doway-coms 1.1.25 → 1.1.26
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/lib/doway-coms.common.js +20 -0
- package/lib/doway-coms.umd.js +20 -0
- package/lib/doway-coms.umd.min.js +3 -3
- package/package.json +1 -1
package/lib/doway-coms.common.js
CHANGED
|
@@ -78932,6 +78932,11 @@ __webpack_require__.d(__webpack_exports__, "getFormValidErrors", function() { re
|
|
|
78932
78932
|
__webpack_require__.d(__webpack_exports__, "stringUrlQuery", function() { return /* reexport */ common_stringUrlQuery; });
|
|
78933
78933
|
__webpack_require__.d(__webpack_exports__, "getRouteFullPath", function() { return /* reexport */ getRouteFullPath; });
|
|
78934
78934
|
__webpack_require__.d(__webpack_exports__, "getGridValidErrors", function() { return /* reexport */ getGridValidErrors; });
|
|
78935
|
+
__webpack_require__.d(__webpack_exports__, "successMsg", function() { return /* reexport */ successMsg; });
|
|
78936
|
+
__webpack_require__.d(__webpack_exports__, "warningMsg", function() { return /* reexport */ warningMsg; });
|
|
78937
|
+
__webpack_require__.d(__webpack_exports__, "errorMsg", function() { return /* reexport */ common_errorMsg; });
|
|
78938
|
+
__webpack_require__.d(__webpack_exports__, "infoMsg", function() { return /* reexport */ infoMsg; });
|
|
78939
|
+
__webpack_require__.d(__webpack_exports__, "closeMsg", function() { return /* reexport */ closeMsg; });
|
|
78935
78940
|
__webpack_require__.d(__webpack_exports__, "routeBeforeEach", function() { return /* reexport */ routeBeforeEach; });
|
|
78936
78941
|
__webpack_require__.d(__webpack_exports__, "timeAgo", function() { return /* reexport */ timeAgo; });
|
|
78937
78942
|
__webpack_require__.d(__webpack_exports__, "parseTime", function() { return /* reexport */ parseTime; });
|
|
@@ -107775,6 +107780,21 @@ function replaceParamString(
|
|
|
107775
107780
|
const gridErrors = await gridView.fullValidate()
|
|
107776
107781
|
return gridErrors
|
|
107777
107782
|
}
|
|
107783
|
+
function successMsg(msg, desc){
|
|
107784
|
+
notification['success']({ message: msg, description: desc })
|
|
107785
|
+
}
|
|
107786
|
+
function warningMsg(msg, desc){
|
|
107787
|
+
notification['warning']({ message: msg, description: desc })
|
|
107788
|
+
}
|
|
107789
|
+
function common_errorMsg(msg, desc){
|
|
107790
|
+
notification['error']({ message: msg, description: desc })
|
|
107791
|
+
}
|
|
107792
|
+
function infoMsg(dataInfo){
|
|
107793
|
+
notification['info'](dataInfo)
|
|
107794
|
+
}
|
|
107795
|
+
function closeMsg(key){
|
|
107796
|
+
notification.close(key)
|
|
107797
|
+
}
|
|
107778
107798
|
function routeBeforeEach(to, from, next){
|
|
107779
107799
|
if(to.params.aliveCacheKey){
|
|
107780
107800
|
to.meta['aliveCacheKey'] = to.params.aliveCacheKey
|
package/lib/doway-coms.umd.js
CHANGED
|
@@ -78941,6 +78941,11 @@ __webpack_require__.d(__webpack_exports__, "getFormValidErrors", function() { re
|
|
|
78941
78941
|
__webpack_require__.d(__webpack_exports__, "stringUrlQuery", function() { return /* reexport */ common_stringUrlQuery; });
|
|
78942
78942
|
__webpack_require__.d(__webpack_exports__, "getRouteFullPath", function() { return /* reexport */ getRouteFullPath; });
|
|
78943
78943
|
__webpack_require__.d(__webpack_exports__, "getGridValidErrors", function() { return /* reexport */ getGridValidErrors; });
|
|
78944
|
+
__webpack_require__.d(__webpack_exports__, "successMsg", function() { return /* reexport */ successMsg; });
|
|
78945
|
+
__webpack_require__.d(__webpack_exports__, "warningMsg", function() { return /* reexport */ warningMsg; });
|
|
78946
|
+
__webpack_require__.d(__webpack_exports__, "errorMsg", function() { return /* reexport */ common_errorMsg; });
|
|
78947
|
+
__webpack_require__.d(__webpack_exports__, "infoMsg", function() { return /* reexport */ infoMsg; });
|
|
78948
|
+
__webpack_require__.d(__webpack_exports__, "closeMsg", function() { return /* reexport */ closeMsg; });
|
|
78944
78949
|
__webpack_require__.d(__webpack_exports__, "routeBeforeEach", function() { return /* reexport */ routeBeforeEach; });
|
|
78945
78950
|
__webpack_require__.d(__webpack_exports__, "timeAgo", function() { return /* reexport */ timeAgo; });
|
|
78946
78951
|
__webpack_require__.d(__webpack_exports__, "parseTime", function() { return /* reexport */ parseTime; });
|
|
@@ -107784,6 +107789,21 @@ function replaceParamString(
|
|
|
107784
107789
|
const gridErrors = await gridView.fullValidate()
|
|
107785
107790
|
return gridErrors
|
|
107786
107791
|
}
|
|
107792
|
+
function successMsg(msg, desc){
|
|
107793
|
+
notification['success']({ message: msg, description: desc })
|
|
107794
|
+
}
|
|
107795
|
+
function warningMsg(msg, desc){
|
|
107796
|
+
notification['warning']({ message: msg, description: desc })
|
|
107797
|
+
}
|
|
107798
|
+
function common_errorMsg(msg, desc){
|
|
107799
|
+
notification['error']({ message: msg, description: desc })
|
|
107800
|
+
}
|
|
107801
|
+
function infoMsg(dataInfo){
|
|
107802
|
+
notification['info'](dataInfo)
|
|
107803
|
+
}
|
|
107804
|
+
function closeMsg(key){
|
|
107805
|
+
notification.close(key)
|
|
107806
|
+
}
|
|
107787
107807
|
function routeBeforeEach(to, from, next){
|
|
107788
107808
|
if(to.params.aliveCacheKey){
|
|
107789
107809
|
to.meta['aliveCacheKey'] = to.params.aliveCacheKey
|