isobit-ui 0.2.136 → 0.2.138
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 +4 -8
- 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.137
|
|
3
3
|
* (c) Erik Alarcon Pinedo
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -6280,16 +6280,12 @@ window.ui = _$1.ui = function (cfg) {
|
|
|
6280
6280
|
computed: {
|
|
6281
6281
|
connected: {
|
|
6282
6282
|
get: function get() {
|
|
6283
|
-
|
|
6284
|
-
if (this._connected === null) {
|
|
6285
|
-
this._connected = this.session.connected;
|
|
6286
|
-
}
|
|
6287
|
-
return this.online && this._connected !== false;
|
|
6283
|
+
return this.online && this.x_connected_ !== false;
|
|
6288
6284
|
},
|
|
6289
6285
|
set: function set(v) {
|
|
6290
6286
|
var me = this;
|
|
6291
6287
|
var session = me.session;
|
|
6292
|
-
this.
|
|
6288
|
+
this.x_connected_ = v;
|
|
6293
6289
|
//session.connected=v;
|
|
6294
6290
|
this.$set(session, 'connected', v);
|
|
6295
6291
|
me.session = session;
|
|
@@ -6341,7 +6337,7 @@ window.ui = _$1.ui = function (cfg) {
|
|
|
6341
6337
|
filters: {},
|
|
6342
6338
|
ui: me,
|
|
6343
6339
|
_session: null,
|
|
6344
|
-
|
|
6340
|
+
x_connected_: null,
|
|
6345
6341
|
opt: 1111,
|
|
6346
6342
|
//rowSelectedCount: 0,
|
|
6347
6343
|
row: {}
|