@ticatec/uniface-element 0.3.14 → 0.3.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.
- package/dist/data-table/parts/FixedColumnsPanel.svelte +0 -1
- package/dist/input-options-select/InputOptionsSelect.svelte +0 -3
- package/dist/list-box/ListBox.svelte +0 -1
- package/dist/message-box/MessageBoxBoard.svelte +0 -1
- package/dist/search-box/SearchBox.svelte +0 -1
- package/dist/tabs/Tabs.svelte +0 -1
- package/dist/tree-view/TreeNodeView.svelte +0 -1
- package/package.json +1 -1
|
@@ -139,11 +139,8 @@
|
|
|
139
139
|
const scrollHeight = target.scrollHeight;
|
|
140
140
|
const clientHeight = target.clientHeight;
|
|
141
141
|
|
|
142
|
-
console.log('Scroll event:', { scrollTop, scrollHeight, clientHeight, hasMore, isBusy });
|
|
143
|
-
|
|
144
142
|
// 当滚动到距离底部20px以内时,自动加载下一页
|
|
145
143
|
if (scrollTop + clientHeight >= scrollHeight - 20 && hasMore && !isBusy) {
|
|
146
|
-
console.log('Auto loading more...');
|
|
147
144
|
loadMore();
|
|
148
145
|
}
|
|
149
146
|
}
|
package/dist/tabs/Tabs.svelte
CHANGED
|
@@ -43,7 +43,6 @@
|
|
|
43
43
|
|
|
44
44
|
const checkOverflow = () => {
|
|
45
45
|
if (container) {
|
|
46
|
-
console.log(currentLeft, container.clientWidth, container.scrollWidth);
|
|
47
46
|
if (currentLeft + container.clientWidth >= container.scrollWidth) {
|
|
48
47
|
currentLeft = container.scrollWidth - container.clientWidth;
|
|
49
48
|
scrollX.set(currentLeft);
|
package/package.json
CHANGED