isobit-ui 0.2.140 → 0.2.142
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 -5
- 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.141
|
|
3
3
|
* (c) Erik Alarcon Pinedo
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -5516,7 +5516,7 @@ var buildPopupMenu = function buildPopupMenu(parent) {
|
|
|
5516
5516
|
}
|
|
5517
5517
|
};
|
|
5518
5518
|
var resize = function resize() {
|
|
5519
|
-
|
|
5519
|
+
console.log('Vue.resize');
|
|
5520
5520
|
//dialog.style.left = (window.innerWidth - dialog.offsetWidth) / 2 + 'px';
|
|
5521
5521
|
var h = window.innerHeight;
|
|
5522
5522
|
document.body.children[0].style.height = h + '.px';
|
|
@@ -6338,12 +6338,14 @@ window.ui = _$1.ui = function (cfg) {
|
|
|
6338
6338
|
filters: {},
|
|
6339
6339
|
ui: me,
|
|
6340
6340
|
_session: null,
|
|
6341
|
-
x_connected_:
|
|
6342
|
-
opt: 1111,
|
|
6341
|
+
x_connected_: null,
|
|
6343
6342
|
//rowSelectedCount: 0,
|
|
6344
6343
|
row: {}
|
|
6345
6344
|
};
|
|
6346
6345
|
},
|
|
6346
|
+
created: function created() {
|
|
6347
|
+
this.x_connected_ = this.session.connected;
|
|
6348
|
+
},
|
|
6347
6349
|
updated: function updated() {
|
|
6348
6350
|
// console.log(this);
|
|
6349
6351
|
},
|
|
@@ -6669,7 +6671,7 @@ window.ui = _$1.ui = function (cfg) {
|
|
|
6669
6671
|
} else if (response.data) {
|
|
6670
6672
|
path = response;
|
|
6671
6673
|
}
|
|
6672
|
-
console.log("
|
|
6674
|
+
console.log("open(path=" + path + ")");
|
|
6673
6675
|
console.log(path);
|
|
6674
6676
|
var dialog,
|
|
6675
6677
|
nid = Vue__default["default"].id(),
|
|
@@ -6782,6 +6784,7 @@ window.ui = _$1.ui = function (cfg) {
|
|
|
6782
6784
|
dialog.style.position = "unset";
|
|
6783
6785
|
//console.log(dialog);
|
|
6784
6786
|
var resize = function resize(e) {
|
|
6787
|
+
console.log('resize ');
|
|
6785
6788
|
dialog.style.left = (window.innerWidth - dialog.offsetWidth) / 2 + 'px';
|
|
6786
6789
|
if (window.innerWidth < 600) {
|
|
6787
6790
|
//console.log(333333);
|