isobit-ui 0.0.377 → 0.0.380
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 +5 -7
- 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.380
|
|
3
3
|
* (c) Erik Alarcon Pinedo
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -4844,7 +4844,7 @@ var buildPopupMenu = function buildPopupMenu(p) {
|
|
|
4844
4844
|
var pid = p.getAttribute("popup");
|
|
4845
4845
|
if (!pid) p.setAttribute("popup", pid = _$1.id());
|
|
4846
4846
|
var popup = _$1.storeFunction[pid];
|
|
4847
|
-
var bu = p.querySelectorAll('.
|
|
4847
|
+
var bu = p.querySelectorAll('.v-datatable-header .v-button');
|
|
4848
4848
|
|
|
4849
4849
|
if (bu && bu.length && !popup && window.innerWidth <= 700) {
|
|
4850
4850
|
setTimeout(function () {
|
|
@@ -4852,7 +4852,7 @@ var buildPopupMenu = function buildPopupMenu(p) {
|
|
|
4852
4852
|
popup.className = 'v-popup-2';
|
|
4853
4853
|
popup.style.backgroundColor = 'white';
|
|
4854
4854
|
popup.style.position = 'absolute';
|
|
4855
|
-
popup.style.
|
|
4855
|
+
popup.style.bottom = '0px';
|
|
4856
4856
|
popup.style.fontSize = '26px';
|
|
4857
4857
|
popup.style.right = '0px';
|
|
4858
4858
|
popup.style.display = 'none';
|
|
@@ -4881,14 +4881,14 @@ var buildPopupMenu = function buildPopupMenu(p) {
|
|
|
4881
4881
|
i.className = 'fa fa-bars fa-w-14';
|
|
4882
4882
|
pbutton.appendChild(i);
|
|
4883
4883
|
pbutton.style.borderWidth = '0px';
|
|
4884
|
-
pbutton.style.top = '
|
|
4884
|
+
pbutton.style.top = '3px';
|
|
4885
4885
|
pbutton.style.right = '0px';
|
|
4886
4886
|
pbutton.style.padding = '6px 11px'; //pbutton.style.fontSize='26px';
|
|
4887
4887
|
|
|
4888
4888
|
pbutton.style.zIndex = '200';
|
|
4889
4889
|
|
|
4890
4890
|
pbutton.onclick = function () {
|
|
4891
|
-
bu = p.querySelectorAll('.
|
|
4891
|
+
bu = p.querySelectorAll('.v-datatable-header .v-button');
|
|
4892
4892
|
|
|
4893
4893
|
while (popup.firstChild) {
|
|
4894
4894
|
popup.removeChild(popup.firstChild);
|
|
@@ -4946,8 +4946,6 @@ var resize = function resize() {
|
|
|
4946
4946
|
|
|
4947
4947
|
if (pc[0].nodeName == "ION-CONTENT") {
|
|
4948
4948
|
p = pc[0];
|
|
4949
|
-
console.log(ph);
|
|
4950
|
-
console.log(ph.offsetHeight);
|
|
4951
4949
|
h = h - ph.offsetHeight - 2;
|
|
4952
4950
|
p.children[0].style.height = h + 'px';
|
|
4953
4951
|
e = p.children[0].children;
|