isobit-ui 0.0.525 → 0.0.529
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 -2
- 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.529
|
|
3
3
|
* (c) Erik Alarcon Pinedo
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -1148,8 +1148,15 @@ var script$i = {
|
|
|
1148
1148
|
}
|
|
1149
1149
|
},
|
|
1150
1150
|
methods: {
|
|
1151
|
+
gg: function gg(el, l) {
|
|
1152
|
+
var me = this;
|
|
1153
|
+
if (el.children) Array.from(el.children).forEach(function (e) {
|
|
1154
|
+
if (e.tagName == 'INPUT') l.push(e);else if (!e.classList.contains('v-group')) me.gg(e, l);
|
|
1155
|
+
});
|
|
1156
|
+
return l;
|
|
1157
|
+
},
|
|
1151
1158
|
update2: function update2() {
|
|
1152
|
-
var rl = this.$el
|
|
1159
|
+
var rl = this.gg(this.$el, []);
|
|
1153
1160
|
console.log(rl);
|
|
1154
1161
|
|
|
1155
1162
|
for (var i = 0; i < rl.length; i++) {
|