isobit-ui 0.0.94 → 0.0.98
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 +9 -6
- 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.98
|
|
3
3
|
* (c) Erik Alarcon Pinedo
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -542,7 +542,7 @@ var script$f = {
|
|
|
542
542
|
var c = me.$el.querySelector('input');
|
|
543
543
|
if (me.$parent && me.$parent.nam) c.name = me.$parent.nam;
|
|
544
544
|
me.input = c;
|
|
545
|
-
if (!me.$parent.onChange) c.checked = me.value && me.value == me.vmodel || '' + me.vmodel === 'true';
|
|
545
|
+
if (!me.$parent.onChange) c.checked = me.value && me.value == me.vmodel || '' + me.vmodel === 'true' || '' + me.vmodel === '1';
|
|
546
546
|
me.$parent.$emit("mounted", me);
|
|
547
547
|
if (me.$parent.update2) me.$parent.update2();
|
|
548
548
|
},
|
|
@@ -2171,10 +2171,13 @@ var script$a = {
|
|
|
2171
2171
|
});
|
|
2172
2172
|
},
|
|
2173
2173
|
load: function load(a, b) {
|
|
2174
|
-
var me = this;
|
|
2174
|
+
var me = this;
|
|
2175
|
+
console.log(me);
|
|
2175
2176
|
|
|
2176
2177
|
if (!me.disabled && !me.readonly) {
|
|
2177
2178
|
//console.log(this.$el.name+' loading with value='+me.$attrs.value);
|
|
2179
|
+
alert(me.$children.length);
|
|
2180
|
+
|
|
2178
2181
|
for (var i = 0; i < me.$children.length; i++) {
|
|
2179
2182
|
if (me.$children[i].load) me.$children[i].load(a, b);
|
|
2180
2183
|
}
|
|
@@ -2366,9 +2369,9 @@ var __vue_component__$a = /*#__PURE__*/__vue_normalize____default['default']({
|
|
|
2366
2369
|
//
|
|
2367
2370
|
var script$9 = {
|
|
2368
2371
|
props: {
|
|
2369
|
-
value: {
|
|
2370
|
-
|
|
2371
|
-
}
|
|
2372
|
+
/*value: {
|
|
2373
|
+
type: Number
|
|
2374
|
+
},*/
|
|
2372
2375
|
delay: null
|
|
2373
2376
|
},
|
|
2374
2377
|
watch: {
|