@websy/websy-designs 1.7.14 → 1.7.15
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.
|
@@ -6471,7 +6471,7 @@ class WebsyTable3 {
|
|
|
6471
6471
|
<div id="${this.elementId}_hScrollHandle" class="websy-scroll-handle websy-scroll-handle-x"></div>
|
|
6472
6472
|
</div>
|
|
6473
6473
|
`
|
|
6474
|
-
if (this.isTouchDevice === true) {
|
|
6474
|
+
if (this.isTouchDevice === true && this.options.virtualScroll === true) {
|
|
6475
6475
|
html += `
|
|
6476
6476
|
<div id="${this.elementId}_touchScroller" class="websy-table-touch-scroller"></div>
|
|
6477
6477
|
`
|
package/dist/websy-designs.js
CHANGED
|
@@ -7120,7 +7120,7 @@ var WebsyTable3 = /*#__PURE__*/function () {
|
|
|
7120
7120
|
if (el) {
|
|
7121
7121
|
var html = "\n <div id='".concat(this.elementId, "_tableContainer' class='websy-vis-table-3 ").concat(this.options.paging === 'pages' ? 'with-paging' : '', " ").concat(this.options.virtualScroll === true ? 'with-virtual-scroll' : '', "'>\n <!--<div class=\"download-button\">\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\"><path d=\"M16 11h5l-9 10-9-10h5v-11h8v11zm1 11h-10v2h10v-2z\"/></svg>\n </div>-->\n <div id=\"").concat(this.elementId, "_tableInner\" class=\"websy-table-inner-container\">\n <table id=\"").concat(this.elementId, "_tableHeader\" class=\"websy-table-header\"></table>\n <table id=\"").concat(this.elementId, "_tableBody\" class=\"websy-table-body\"></table>\n <table id=\"").concat(this.elementId, "_tableFooter\" class=\"websy-table-footer\"></table>\n <div id=\"").concat(this.elementId, "_vScrollContainer\" class=\"websy-v-scroll-container\">\n <div id=\"").concat(this.elementId, "_vScrollHandle\" class=\"websy-scroll-handle websy-scroll-handle-y\"></div>\n </div>\n <div id=\"").concat(this.elementId, "_hScrollContainer\" class=\"websy-h-scroll-container\">\n <div id=\"").concat(this.elementId, "_hScrollHandle\" class=\"websy-scroll-handle websy-scroll-handle-x\"></div>\n </div>\n ");
|
|
7122
7122
|
|
|
7123
|
-
if (this.isTouchDevice === true) {
|
|
7123
|
+
if (this.isTouchDevice === true && this.options.virtualScroll === true) {
|
|
7124
7124
|
html += "\n <div id=\"".concat(this.elementId, "_touchScroller\" class=\"websy-table-touch-scroller\"></div>\n ");
|
|
7125
7125
|
}
|
|
7126
7126
|
|