Skip to content

Commit e293220

Browse files
authored
fix(nx preview): fix pagination PR #492 that broke preview (#500)
1 parent a0094ec commit e293220

File tree

2 files changed

+6
-27
lines changed
  • apps/website/src/routes/docs

2 files changed

+6
-27
lines changed

apps/website/src/routes/docs/fluffy/(components)/pagination/_index.tsx

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { component$, useSignal } from '@builder.io/qwik';
2-
import { Pagination } from '@qwik-ui/tailwind';
32
import { Toggle } from '@qwik-ui/tailwind';
43

54
export default component$(() => {
@@ -105,7 +104,8 @@ export default component$(() => {
105104
</div>
106105

107106
<div class="flex flex-col gap-8">
108-
<Pagination
107+
Pagination Example
108+
{/* <Pagination
109109
pages={pages.value}
110110
page={page.value}
111111
onPaging$={(newValue: number) => {
@@ -117,11 +117,12 @@ export default component$(() => {
117117
hidePrevButton={hidePrevButton.value}
118118
siblingCount={siblingCount.value}
119119
boundaryCount={boundaryCount.value}
120-
/>
120+
/> */}
121121
</div>
122122

123123
<div class="flex flex-col gap-8">
124-
<Pagination
124+
Pagination Example
125+
{/* <Pagination
125126
pages={pages.value}
126127
page={page.value}
127128
onPaging$={(newValue: number) => {
@@ -136,7 +137,7 @@ export default component$(() => {
136137
activeClass="!bg-cyan-500"
137138
defaultClass="bg-cyan-200"
138139
labels={{ prev: '⬅️', next: '➡️', first: 'START', last: 'END' }}
139-
/>
140+
/> */}
140141
</div>
141142
</div>
142143
);

apps/website/src/routes/docs/headless/(components)/pagination/_index.tsx

Lines changed: 0 additions & 22 deletions
This file was deleted.

0 commit comments

Comments
 (0)