Skip to content

Commit

Permalink
[stdf]v0.4.7
Browse files Browse the repository at this point in the history
  • Loading branch information
dufu1991 committed Aug 12, 2024
1 parent bacd385 commit cea3f1d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/stdf/components/loading/Loading.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@
});
</script>
<div bind:this={loadingDom} class="w-full h-full">
<div bind:this={loadingDom}>
<!--one-->
{#if type === '1_0'}
<Loading1_0 {theme} {inverse} size={sizeFunc(height, width)} {customColor} bind:speed />
Expand Down
2 changes: 1 addition & 1 deletion packages/stdf/components/pagination/Pagination.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@
// 总页数
// totalPage
const totalPage = Math.ceil(total / pageSize);
$: totalPage = Math.ceil(total / pageSize);
// 当前页码大于等于 maxShowPage-3 时,不显示前面的省略号
// current >= maxShowPage-3, not show pre ellipsis
Expand Down
2 changes: 1 addition & 1 deletion packages/stdf/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "stdf",
"version": "0.4.6",
"version": "0.4.7",
"description": "Mobile web component library based on Svelte and Tailwind",
"main": "./components/index.js",
"svelte": "./components/index.js",
Expand Down

0 comments on commit cea3f1d

Please sign in to comment.