isobit-ui 0.2.98 → 0.2.100
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 +8 -6
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* isobit-ui v0.2.
|
|
2
|
+
* isobit-ui v0.2.99
|
|
3
3
|
* (c) Erik Alarcon Pinedo
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -720,7 +720,9 @@ var script$m = {
|
|
|
720
720
|
},
|
|
721
721
|
type: String,
|
|
722
722
|
required: String,
|
|
723
|
-
readonly: String
|
|
723
|
+
readonly: String,
|
|
724
|
+
max: String,
|
|
725
|
+
min: String
|
|
724
726
|
},
|
|
725
727
|
data: function data() {
|
|
726
728
|
return {
|
|
@@ -836,7 +838,8 @@ var __vue_render__$l = function __vue_render__() {
|
|
|
836
838
|
attrs: {
|
|
837
839
|
"required": _vm.required,
|
|
838
840
|
"readonly": _vm.readonly,
|
|
839
|
-
"
|
|
841
|
+
"min": _vm.min,
|
|
842
|
+
"max": _vm.max,
|
|
840
843
|
"type": _vm.type ? _vm.type : 'date'
|
|
841
844
|
},
|
|
842
845
|
on: {
|
|
@@ -7212,7 +7215,7 @@ window.ui = _$1.ui = function (cfg) {
|
|
|
7212
7215
|
me.MsgBox('Esta seguro que desea eliminar los registros temporales seleccionados ?', function (r) {
|
|
7213
7216
|
if (r == 0) {
|
|
7214
7217
|
var c = 0,
|
|
7215
|
-
db =
|
|
7218
|
+
db = _$1.db;
|
|
7216
7219
|
var objectStore = db.transaction([t.store], "readwrite").objectStore(t.store);
|
|
7217
7220
|
var ele = [];
|
|
7218
7221
|
|
|
@@ -7230,8 +7233,7 @@ window.ui = _$1.ui = function (cfg) {
|
|
|
7230
7233
|
|
|
7231
7234
|
t.rowSelect(null, -1);
|
|
7232
7235
|
t.selected = [];
|
|
7233
|
-
|
|
7234
|
-
me.$emit('destroyed', ele);
|
|
7236
|
+
me.$emit('destroyed', ele, t.store);
|
|
7235
7237
|
if (cb) cb();
|
|
7236
7238
|
}
|
|
7237
7239
|
}, ['SI', 'NO']);
|