isobit-ui 0.0.190 → 0.0.191
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/dist/index.js +12 -13
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* isobit-ui v0.0.
|
|
2
|
+
* isobit-ui v0.0.191
|
|
3
3
|
* (c) Erik Alarcon Pinedo
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -5901,17 +5901,17 @@ var defs = {
|
|
|
5901
5901
|
if (required && !checked) {
|
|
5902
5902
|
me.showerror(e);
|
|
5903
5903
|
/*previousSibling = e.previousSibling;
|
|
5904
|
-
|
|
5905
|
-
|
|
5906
|
-
|
|
5907
|
-
|
|
5908
|
-
|
|
5909
|
-
|
|
5910
|
-
|
|
5911
|
-
|
|
5912
|
-
|
|
5913
|
-
|
|
5914
|
-
|
|
5904
|
+
while(previousSibling&&previousSibling.nodeType != 1) {
|
|
5905
|
+
previousSibling = previousSibling.previousSibling;
|
|
5906
|
+
}
|
|
5907
|
+
if(!previousSibling){
|
|
5908
|
+
previousSibling=e.parentElement.previousSibling;
|
|
5909
|
+
while(previousSibling&&previousSibling.nodeType != 1) {
|
|
5910
|
+
previousSibling = previousSibling.previousSibling;
|
|
5911
|
+
}
|
|
5912
|
+
}
|
|
5913
|
+
var error = document.createElement("div");
|
|
5914
|
+
error.innerHTML = "Este campo es requerido!";*/
|
|
5915
5915
|
|
|
5916
5916
|
ok = false; //error.classList.add("v-error");
|
|
5917
5917
|
//e.parentNode.insertBefore(error, e);
|
|
@@ -5957,7 +5957,6 @@ window.ui = _.ui = function (cfg) {
|
|
|
5957
5957
|
o: {}
|
|
5958
5958
|
}
|
|
5959
5959
|
};
|
|
5960
|
-
if (!ex) ex = {};
|
|
5961
5960
|
|
|
5962
5961
|
if (!window.isMobile) {
|
|
5963
5962
|
var el = cfg.el;
|