@yamada-ui/pagination 1.1.5-next-20241126010425 → 1.1.5-next-20241126031955
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/chunk-4CVSJB46.mjs +353 -0
- package/dist/chunk-4CVSJB46.mjs.map +1 -0
- package/dist/{chunk-IH2XPMDF.mjs → chunk-US4OATQR.mjs} +2 -2
- package/dist/index.js +306 -96
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -3
- package/dist/pagination-item.js +275 -65
- package/dist/pagination-item.js.map +1 -1
- package/dist/pagination-item.mjs +1 -2
- package/dist/pagination.js +306 -96
- package/dist/pagination.js.map +1 -1
- package/dist/pagination.mjs +2 -3
- package/package.json +7 -7
- package/dist/chunk-5QYB2MRA.mjs +0 -91
- package/dist/chunk-5QYB2MRA.mjs.map +0 -1
- package/dist/chunk-VZWGYG76.mjs +0 -69
- package/dist/chunk-VZWGYG76.mjs.map +0 -1
- package/dist/pagination-icon.d.mts +0 -10
- package/dist/pagination-icon.d.ts +0 -10
- package/dist/pagination-icon.js +0 -96
- package/dist/pagination-icon.js.map +0 -1
- package/dist/pagination-icon.mjs +0 -16
- package/dist/pagination-icon.mjs.map +0 -1
- /package/dist/{chunk-IH2XPMDF.mjs.map → chunk-US4OATQR.mjs.map} +0 -0
@@ -0,0 +1,353 @@
|
|
1
|
+
"use client"
|
2
|
+
import {
|
3
|
+
usePaginationContext
|
4
|
+
} from "./chunk-E66Q4CU7.mjs";
|
5
|
+
|
6
|
+
// src/pagination-item.tsx
|
7
|
+
import { forwardRef as forwardRef8, ui } from "@yamada-ui/core";
|
8
|
+
|
9
|
+
// ../../../node_modules/.pnpm/lucide-react@0.460.0_react@18.3.1/node_modules/lucide-react/dist/esm/createLucideIcon.js
|
10
|
+
import { forwardRef as forwardRef2, createElement as createElement2 } from "react";
|
11
|
+
|
12
|
+
// ../../../node_modules/.pnpm/lucide-react@0.460.0_react@18.3.1/node_modules/lucide-react/dist/esm/shared/src/utils.js
|
13
|
+
var toKebabCase = (string) => string.replace(/([a-z0-9])([A-Z])/g, "$1-$2").toLowerCase();
|
14
|
+
var mergeClasses = (...classes) => classes.filter((className, index, array) => {
|
15
|
+
return Boolean(className) && className.trim() !== "" && array.indexOf(className) === index;
|
16
|
+
}).join(" ").trim();
|
17
|
+
|
18
|
+
// ../../../node_modules/.pnpm/lucide-react@0.460.0_react@18.3.1/node_modules/lucide-react/dist/esm/Icon.js
|
19
|
+
import { forwardRef, createElement } from "react";
|
20
|
+
|
21
|
+
// ../../../node_modules/.pnpm/lucide-react@0.460.0_react@18.3.1/node_modules/lucide-react/dist/esm/defaultAttributes.js
|
22
|
+
var defaultAttributes = {
|
23
|
+
xmlns: "http://www.w3.org/2000/svg",
|
24
|
+
width: 24,
|
25
|
+
height: 24,
|
26
|
+
viewBox: "0 0 24 24",
|
27
|
+
fill: "none",
|
28
|
+
stroke: "currentColor",
|
29
|
+
strokeWidth: 2,
|
30
|
+
strokeLinecap: "round",
|
31
|
+
strokeLinejoin: "round"
|
32
|
+
};
|
33
|
+
|
34
|
+
// ../../../node_modules/.pnpm/lucide-react@0.460.0_react@18.3.1/node_modules/lucide-react/dist/esm/Icon.js
|
35
|
+
var Icon = forwardRef(
|
36
|
+
({
|
37
|
+
color = "currentColor",
|
38
|
+
size = 24,
|
39
|
+
strokeWidth = 2,
|
40
|
+
absoluteStrokeWidth,
|
41
|
+
className = "",
|
42
|
+
children,
|
43
|
+
iconNode,
|
44
|
+
...rest
|
45
|
+
}, ref) => {
|
46
|
+
return createElement(
|
47
|
+
"svg",
|
48
|
+
{
|
49
|
+
ref,
|
50
|
+
...defaultAttributes,
|
51
|
+
width: size,
|
52
|
+
height: size,
|
53
|
+
stroke: color,
|
54
|
+
strokeWidth: absoluteStrokeWidth ? Number(strokeWidth) * 24 / Number(size) : strokeWidth,
|
55
|
+
className: mergeClasses("lucide", className),
|
56
|
+
...rest
|
57
|
+
},
|
58
|
+
[
|
59
|
+
...iconNode.map(([tag, attrs]) => createElement(tag, attrs)),
|
60
|
+
...Array.isArray(children) ? children : [children]
|
61
|
+
]
|
62
|
+
);
|
63
|
+
}
|
64
|
+
);
|
65
|
+
|
66
|
+
// ../../../node_modules/.pnpm/lucide-react@0.460.0_react@18.3.1/node_modules/lucide-react/dist/esm/createLucideIcon.js
|
67
|
+
var createLucideIcon = (iconName, iconNode) => {
|
68
|
+
const Component = forwardRef2(
|
69
|
+
({ className, ...props }, ref) => createElement2(Icon, {
|
70
|
+
ref,
|
71
|
+
iconNode,
|
72
|
+
className: mergeClasses(`lucide-${toKebabCase(iconName)}`, className),
|
73
|
+
...props
|
74
|
+
})
|
75
|
+
);
|
76
|
+
Component.displayName = `${iconName}`;
|
77
|
+
return Component;
|
78
|
+
};
|
79
|
+
|
80
|
+
// ../../../node_modules/.pnpm/lucide-react@0.460.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/chevron-left.js
|
81
|
+
var ChevronLeft = createLucideIcon("ChevronLeft", [
|
82
|
+
["path", { d: "m15 18-6-6 6-6", key: "1wnfg3" }]
|
83
|
+
]);
|
84
|
+
|
85
|
+
// ../../../node_modules/.pnpm/lucide-react@0.460.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/chevron-right.js
|
86
|
+
var ChevronRight = createLucideIcon("ChevronRight", [
|
87
|
+
["path", { d: "m9 18 6-6-6-6", key: "mthhwq" }]
|
88
|
+
]);
|
89
|
+
|
90
|
+
// ../../../node_modules/.pnpm/lucide-react@0.460.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/chevrons-left.js
|
91
|
+
var ChevronsLeft = createLucideIcon("ChevronsLeft", [
|
92
|
+
["path", { d: "m11 17-5-5 5-5", key: "13zhaf" }],
|
93
|
+
["path", { d: "m18 17-5-5 5-5", key: "h8a8et" }]
|
94
|
+
]);
|
95
|
+
|
96
|
+
// ../../../node_modules/.pnpm/lucide-react@0.460.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/chevrons-right.js
|
97
|
+
var ChevronsRight = createLucideIcon("ChevronsRight", [
|
98
|
+
["path", { d: "m6 17 5-5-5-5", key: "xnjwq" }],
|
99
|
+
["path", { d: "m13 17 5-5-5-5", key: "17xmmf" }]
|
100
|
+
]);
|
101
|
+
|
102
|
+
// ../../../node_modules/.pnpm/lucide-react@0.460.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/ellipsis.js
|
103
|
+
var Ellipsis = createLucideIcon("Ellipsis", [
|
104
|
+
["circle", { cx: "12", cy: "12", r: "1", key: "41hilf" }],
|
105
|
+
["circle", { cx: "19", cy: "12", r: "1", key: "1wjl8i" }],
|
106
|
+
["circle", { cx: "5", cy: "12", r: "1", key: "1pcz8c" }]
|
107
|
+
]);
|
108
|
+
|
109
|
+
// ../lucide/src/icons/chevron-left.tsx
|
110
|
+
import { forwardRef as forwardRef3 } from "@yamada-ui/core";
|
111
|
+
import { Icon as Icon2 } from "@yamada-ui/icon";
|
112
|
+
import { cx } from "@yamada-ui/utils";
|
113
|
+
import { jsx } from "react/jsx-runtime";
|
114
|
+
var ChevronLeftIcon = forwardRef3(
|
115
|
+
({ className, ...rest }, ref) => /* @__PURE__ */ jsx(
|
116
|
+
Icon2,
|
117
|
+
{
|
118
|
+
ref,
|
119
|
+
as: ChevronLeft,
|
120
|
+
className: cx("ui-lucide-icon", className),
|
121
|
+
...rest
|
122
|
+
}
|
123
|
+
)
|
124
|
+
);
|
125
|
+
|
126
|
+
// ../lucide/src/icons/chevron-right.tsx
|
127
|
+
import { forwardRef as forwardRef4 } from "@yamada-ui/core";
|
128
|
+
import { Icon as Icon3 } from "@yamada-ui/icon";
|
129
|
+
import { cx as cx2 } from "@yamada-ui/utils";
|
130
|
+
import { jsx as jsx2 } from "react/jsx-runtime";
|
131
|
+
var ChevronRightIcon = forwardRef4(
|
132
|
+
({ className, ...rest }, ref) => /* @__PURE__ */ jsx2(
|
133
|
+
Icon3,
|
134
|
+
{
|
135
|
+
ref,
|
136
|
+
as: ChevronRight,
|
137
|
+
className: cx2("ui-lucide-icon", className),
|
138
|
+
...rest
|
139
|
+
}
|
140
|
+
)
|
141
|
+
);
|
142
|
+
|
143
|
+
// ../lucide/src/icons/chevrons-left.tsx
|
144
|
+
import { forwardRef as forwardRef5 } from "@yamada-ui/core";
|
145
|
+
import { Icon as Icon4 } from "@yamada-ui/icon";
|
146
|
+
import { cx as cx3 } from "@yamada-ui/utils";
|
147
|
+
import { jsx as jsx3 } from "react/jsx-runtime";
|
148
|
+
var ChevronsLeftIcon = forwardRef5(
|
149
|
+
({ className, ...rest }, ref) => /* @__PURE__ */ jsx3(
|
150
|
+
Icon4,
|
151
|
+
{
|
152
|
+
ref,
|
153
|
+
as: ChevronsLeft,
|
154
|
+
className: cx3("ui-lucide-icon", className),
|
155
|
+
...rest
|
156
|
+
}
|
157
|
+
)
|
158
|
+
);
|
159
|
+
|
160
|
+
// ../lucide/src/icons/chevrons-right.tsx
|
161
|
+
import { forwardRef as forwardRef6 } from "@yamada-ui/core";
|
162
|
+
import { Icon as Icon5 } from "@yamada-ui/icon";
|
163
|
+
import { cx as cx4 } from "@yamada-ui/utils";
|
164
|
+
import { jsx as jsx4 } from "react/jsx-runtime";
|
165
|
+
var ChevronsRightIcon = forwardRef6(
|
166
|
+
({ className, ...rest }, ref) => /* @__PURE__ */ jsx4(
|
167
|
+
Icon5,
|
168
|
+
{
|
169
|
+
ref,
|
170
|
+
as: ChevronsRight,
|
171
|
+
className: cx4("ui-lucide-icon", className),
|
172
|
+
...rest
|
173
|
+
}
|
174
|
+
)
|
175
|
+
);
|
176
|
+
|
177
|
+
// ../lucide/src/icons/ellipsis.tsx
|
178
|
+
import { forwardRef as forwardRef7 } from "@yamada-ui/core";
|
179
|
+
import { Icon as Icon6 } from "@yamada-ui/icon";
|
180
|
+
import { cx as cx5 } from "@yamada-ui/utils";
|
181
|
+
import { jsx as jsx5 } from "react/jsx-runtime";
|
182
|
+
var EllipsisIcon = forwardRef7(
|
183
|
+
({ className, ...rest }, ref) => /* @__PURE__ */ jsx5(
|
184
|
+
Icon6,
|
185
|
+
{
|
186
|
+
ref,
|
187
|
+
as: Ellipsis,
|
188
|
+
className: cx5("ui-lucide-icon", className),
|
189
|
+
...rest
|
190
|
+
}
|
191
|
+
)
|
192
|
+
);
|
193
|
+
|
194
|
+
// src/pagination-item.tsx
|
195
|
+
import { Ripple, useRipple } from "@yamada-ui/ripple";
|
196
|
+
import { cx as cx6, dataAttr } from "@yamada-ui/utils";
|
197
|
+
import { jsx as jsx6, jsxs } from "react/jsx-runtime";
|
198
|
+
var iconMap = {
|
199
|
+
ellipsis: /* @__PURE__ */ jsx6(EllipsisIcon, {}),
|
200
|
+
first: /* @__PURE__ */ jsx6(ChevronsLeftIcon, {}),
|
201
|
+
last: /* @__PURE__ */ jsx6(ChevronsRightIcon, {}),
|
202
|
+
next: /* @__PURE__ */ jsx6(ChevronRightIcon, {}),
|
203
|
+
prev: /* @__PURE__ */ jsx6(ChevronLeftIcon, {})
|
204
|
+
};
|
205
|
+
var PaginationItem = forwardRef8(
|
206
|
+
({
|
207
|
+
className,
|
208
|
+
active,
|
209
|
+
children,
|
210
|
+
disabled,
|
211
|
+
disableRipple,
|
212
|
+
isActive,
|
213
|
+
isDisabled,
|
214
|
+
page,
|
215
|
+
...rest
|
216
|
+
}, ref) => {
|
217
|
+
var _a;
|
218
|
+
const styles = usePaginationContext();
|
219
|
+
const isEllipsis = page === "ellipsis";
|
220
|
+
const { onPointerDown, ...rippleProps } = useRipple({
|
221
|
+
...rest,
|
222
|
+
isDisabled: disableRipple || isDisabled || isEllipsis
|
223
|
+
});
|
224
|
+
children != null ? children : children = (_a = iconMap[page]) != null ? _a : page;
|
225
|
+
active != null ? active : active = isActive;
|
226
|
+
disabled != null ? disabled : disabled = isDisabled;
|
227
|
+
const css = {
|
228
|
+
alignItems: "center",
|
229
|
+
display: "flex",
|
230
|
+
justifyContent: "center",
|
231
|
+
overflow: "hidden",
|
232
|
+
position: "relative",
|
233
|
+
userSelect: "none",
|
234
|
+
...styles.item,
|
235
|
+
...styles[page]
|
236
|
+
};
|
237
|
+
const Component = ui[isEllipsis ? "span" : "button"];
|
238
|
+
return /* @__PURE__ */ jsxs(
|
239
|
+
Component,
|
240
|
+
{
|
241
|
+
ref,
|
242
|
+
...!isEllipsis ? {
|
243
|
+
type: "button",
|
244
|
+
"data-disabled": dataAttr(disabled),
|
245
|
+
"data-selected": dataAttr(active),
|
246
|
+
disabled
|
247
|
+
} : {},
|
248
|
+
className: cx6(
|
249
|
+
"ui-pagination__item",
|
250
|
+
isEllipsis ? "ui-pagination__item--ellipsis" : void 0,
|
251
|
+
className
|
252
|
+
),
|
253
|
+
tabIndex: !isEllipsis ? 0 : -1,
|
254
|
+
__css: css,
|
255
|
+
...rest,
|
256
|
+
onPointerDown,
|
257
|
+
children: [
|
258
|
+
children,
|
259
|
+
/* @__PURE__ */ jsx6(Ripple, { ...rippleProps })
|
260
|
+
]
|
261
|
+
}
|
262
|
+
);
|
263
|
+
}
|
264
|
+
);
|
265
|
+
PaginationItem.displayName = "PaginationItem";
|
266
|
+
PaginationItem.__ui__ = "PaginationItem";
|
267
|
+
|
268
|
+
export {
|
269
|
+
PaginationItem
|
270
|
+
};
|
271
|
+
/*! Bundled license information:
|
272
|
+
|
273
|
+
lucide-react/dist/esm/shared/src/utils.js:
|
274
|
+
(**
|
275
|
+
* @license lucide-react v0.460.0 - ISC
|
276
|
+
*
|
277
|
+
* This source code is licensed under the ISC license.
|
278
|
+
* See the LICENSE file in the root directory of this source tree.
|
279
|
+
*)
|
280
|
+
|
281
|
+
lucide-react/dist/esm/defaultAttributes.js:
|
282
|
+
(**
|
283
|
+
* @license lucide-react v0.460.0 - ISC
|
284
|
+
*
|
285
|
+
* This source code is licensed under the ISC license.
|
286
|
+
* See the LICENSE file in the root directory of this source tree.
|
287
|
+
*)
|
288
|
+
|
289
|
+
lucide-react/dist/esm/Icon.js:
|
290
|
+
(**
|
291
|
+
* @license lucide-react v0.460.0 - ISC
|
292
|
+
*
|
293
|
+
* This source code is licensed under the ISC license.
|
294
|
+
* See the LICENSE file in the root directory of this source tree.
|
295
|
+
*)
|
296
|
+
|
297
|
+
lucide-react/dist/esm/createLucideIcon.js:
|
298
|
+
(**
|
299
|
+
* @license lucide-react v0.460.0 - ISC
|
300
|
+
*
|
301
|
+
* This source code is licensed under the ISC license.
|
302
|
+
* See the LICENSE file in the root directory of this source tree.
|
303
|
+
*)
|
304
|
+
|
305
|
+
lucide-react/dist/esm/icons/chevron-left.js:
|
306
|
+
(**
|
307
|
+
* @license lucide-react v0.460.0 - ISC
|
308
|
+
*
|
309
|
+
* This source code is licensed under the ISC license.
|
310
|
+
* See the LICENSE file in the root directory of this source tree.
|
311
|
+
*)
|
312
|
+
|
313
|
+
lucide-react/dist/esm/icons/chevron-right.js:
|
314
|
+
(**
|
315
|
+
* @license lucide-react v0.460.0 - ISC
|
316
|
+
*
|
317
|
+
* This source code is licensed under the ISC license.
|
318
|
+
* See the LICENSE file in the root directory of this source tree.
|
319
|
+
*)
|
320
|
+
|
321
|
+
lucide-react/dist/esm/icons/chevrons-left.js:
|
322
|
+
(**
|
323
|
+
* @license lucide-react v0.460.0 - ISC
|
324
|
+
*
|
325
|
+
* This source code is licensed under the ISC license.
|
326
|
+
* See the LICENSE file in the root directory of this source tree.
|
327
|
+
*)
|
328
|
+
|
329
|
+
lucide-react/dist/esm/icons/chevrons-right.js:
|
330
|
+
(**
|
331
|
+
* @license lucide-react v0.460.0 - ISC
|
332
|
+
*
|
333
|
+
* This source code is licensed under the ISC license.
|
334
|
+
* See the LICENSE file in the root directory of this source tree.
|
335
|
+
*)
|
336
|
+
|
337
|
+
lucide-react/dist/esm/icons/ellipsis.js:
|
338
|
+
(**
|
339
|
+
* @license lucide-react v0.460.0 - ISC
|
340
|
+
*
|
341
|
+
* This source code is licensed under the ISC license.
|
342
|
+
* See the LICENSE file in the root directory of this source tree.
|
343
|
+
*)
|
344
|
+
|
345
|
+
lucide-react/dist/esm/lucide-react.js:
|
346
|
+
(**
|
347
|
+
* @license lucide-react v0.460.0 - ISC
|
348
|
+
*
|
349
|
+
* This source code is licensed under the ISC license.
|
350
|
+
* See the LICENSE file in the root directory of this source tree.
|
351
|
+
*)
|
352
|
+
*/
|
353
|
+
//# sourceMappingURL=chunk-4CVSJB46.mjs.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["../src/pagination-item.tsx","../../../../node_modules/.pnpm/lucide-react@0.460.0_react@18.3.1/node_modules/shared/src/utils.ts","../../../../node_modules/.pnpm/lucide-react@0.460.0_react@18.3.1/node_modules/lucide-react/src/defaultAttributes.ts","../../../../node_modules/.pnpm/lucide-react@0.460.0_react@18.3.1/node_modules/lucide-react/src/Icon.ts","../../../../node_modules/.pnpm/lucide-react@0.460.0_react@18.3.1/node_modules/lucide-react/src/createLucideIcon.ts","../../../../node_modules/.pnpm/lucide-react@0.460.0_react@18.3.1/node_modules/lucide-react/src/icons/chevron-left.ts","../../../../node_modules/.pnpm/lucide-react@0.460.0_react@18.3.1/node_modules/lucide-react/src/icons/chevron-right.ts","../../../../node_modules/.pnpm/lucide-react@0.460.0_react@18.3.1/node_modules/lucide-react/src/icons/chevrons-left.ts","../../../../node_modules/.pnpm/lucide-react@0.460.0_react@18.3.1/node_modules/lucide-react/src/icons/chevrons-right.ts","../../../../node_modules/.pnpm/lucide-react@0.460.0_react@18.3.1/node_modules/lucide-react/src/icons/ellipsis.ts","../../lucide/src/icons/chevron-left.tsx","../../lucide/src/icons/chevron-right.tsx","../../lucide/src/icons/chevrons-left.tsx","../../lucide/src/icons/chevrons-right.tsx","../../lucide/src/icons/ellipsis.tsx"],"sourcesContent":["import type { CSSUIObject, HTMLUIProps } from \"@yamada-ui/core\"\nimport type { ReactNode } from \"react\"\nimport { forwardRef, ui } from \"@yamada-ui/core\"\nimport {\n ChevronLeftIcon,\n ChevronRightIcon,\n ChevronsLeftIcon,\n ChevronsRightIcon,\n EllipsisIcon,\n} from \"@yamada-ui/lucide\"\nimport { Ripple, useRipple } from \"@yamada-ui/ripple\"\nimport { cx, dataAttr } from \"@yamada-ui/utils\"\nimport { usePaginationContext } from \"./use-pagination\"\n\ninterface PaginationItemOptions {\n /**\n * The type of the page or item assigned to the pagination item.\n */\n page: \"ellipsis\" | \"first\" | \"last\" | \"next\" | \"prev\" | number\n /**\n * If `true`, the pagination item will be activated.\n *\n * @default false\n */\n active?: boolean\n /**\n * If `true`, the pagination item will be disabled.\n *\n * @default false\n */\n disabled?: boolean\n /**\n * If `true`, disable ripple effects when pressing a element.\n *\n * @default false\n */\n disableRipple?: boolean\n /**\n * If `true`, the pagination item will be activated.\n *\n * @default false\n *\n * @deprecated Use `active` instead.\n */\n isActive?: boolean\n /**\n * If `true`, the pagination item will be disabled.\n *\n * @default false\n *\n * @deprecated Use `disabled` instead.\n */\n isDisabled?: boolean\n}\n\nexport interface PaginationItemProps\n extends Omit<HTMLUIProps<\"button\">, \"page\">,\n PaginationItemOptions {}\n\nconst iconMap: {\n [key in \"ellipsis\" | \"first\" | \"last\" | \"next\" | \"prev\" | number]: ReactNode\n} = {\n ellipsis: <EllipsisIcon />,\n first: <ChevronsLeftIcon />,\n last: <ChevronsRightIcon />,\n next: <ChevronRightIcon />,\n prev: <ChevronLeftIcon />,\n}\n\nexport const PaginationItem = forwardRef<PaginationItemProps, \"button\">(\n (\n {\n className,\n active,\n children,\n disabled,\n disableRipple,\n isActive,\n isDisabled,\n page,\n ...rest\n },\n ref,\n ) => {\n const styles = usePaginationContext()\n const isEllipsis = page === \"ellipsis\"\n const { onPointerDown, ...rippleProps } = useRipple({\n ...rest,\n isDisabled: disableRipple || isDisabled || isEllipsis,\n })\n\n children ??= iconMap[page] ?? page\n active ??= isActive\n disabled ??= isDisabled\n\n const css: CSSUIObject = {\n alignItems: \"center\",\n display: \"flex\",\n justifyContent: \"center\",\n overflow: \"hidden\",\n position: \"relative\",\n userSelect: \"none\",\n ...styles.item,\n ...styles[page],\n }\n\n const Component = ui[isEllipsis ? \"span\" : \"button\"]\n\n return (\n <Component\n ref={ref}\n {...(!isEllipsis\n ? {\n type: \"button\",\n \"data-disabled\": dataAttr(disabled),\n \"data-selected\": dataAttr(active),\n disabled,\n }\n : {})}\n className={cx(\n \"ui-pagination__item\",\n isEllipsis ? \"ui-pagination__item--ellipsis\" : undefined,\n className,\n )}\n tabIndex={!isEllipsis ? 0 : -1}\n __css={css}\n {...rest}\n onPointerDown={onPointerDown}\n >\n {children}\n\n <Ripple {...rippleProps} />\n </Component>\n )\n },\n)\n\nPaginationItem.displayName = \"PaginationItem\"\nPaginationItem.__ui__ = \"PaginationItem\"\n","import { CamelToPascal } from './utility-types';\n\n/**\n * Converts string to kebab case\n *\n * @param {string} string\n * @returns {string} A kebabized string\n */\nexport const toKebabCase = (string: string) =>\n string.replace(/([a-z0-9])([A-Z])/g, '$1-$2').toLowerCase();\n\n/**\n * Converts string to camel case\n *\n * @param {string} string\n * @returns {string} A camelized string\n */\nexport const toCamelCase = <T extends string>(string: T) =>\n string.replace(/^([A-Z])|[\\s-_]+(\\w)/g, (match, p1, p2) =>\n p2 ? p2.toUpperCase() : p1.toLowerCase(),\n );\n\n/**\n * Converts string to pascal case\n *\n * @param {string} string\n * @returns {string} A pascalized string\n */\nexport const toPascalCase = <T extends string>(string: T): CamelToPascal<T> => {\n const camelCase = toCamelCase(string);\n\n return (camelCase.charAt(0).toUpperCase() + camelCase.slice(1)) as CamelToPascal<T>;\n};\n\n/**\n * Merges classes into a single string\n *\n * @param {array} classes\n * @returns {string} A string of classes\n */\nexport const mergeClasses = <ClassType = string | undefined | null>(...classes: ClassType[]) =>\n classes\n .filter((className, index, array) => {\n return (\n Boolean(className) &&\n (className as string).trim() !== '' &&\n array.indexOf(className) === index\n );\n })\n .join(' ')\n .trim();\n","export default {\n xmlns: 'http://www.w3.org/2000/svg',\n width: 24,\n height: 24,\n viewBox: '0 0 24 24',\n fill: 'none',\n stroke: 'currentColor',\n strokeWidth: 2,\n strokeLinecap: 'round',\n strokeLinejoin: 'round',\n};\n","import { createElement, forwardRef } from 'react';\nimport defaultAttributes from './defaultAttributes';\nimport { IconNode, LucideProps } from './types';\nimport { mergeClasses } from '@lucide/shared';\n\ninterface IconComponentProps extends LucideProps {\n iconNode: IconNode;\n}\n\n/**\n * Lucide icon component\n *\n * @component Icon\n * @param {object} props\n * @param {string} props.color - The color of the icon\n * @param {number} props.size - The size of the icon\n * @param {number} props.strokeWidth - The stroke width of the icon\n * @param {boolean} props.absoluteStrokeWidth - Whether to use absolute stroke width\n * @param {string} props.className - The class name of the icon\n * @param {IconNode} props.children - The children of the icon\n * @param {IconNode} props.iconNode - The icon node of the icon\n *\n * @returns {ForwardRefExoticComponent} LucideIcon\n */\nconst Icon = forwardRef<SVGSVGElement, IconComponentProps>(\n (\n {\n color = 'currentColor',\n size = 24,\n strokeWidth = 2,\n absoluteStrokeWidth,\n className = '',\n children,\n iconNode,\n ...rest\n },\n ref,\n ) => {\n return createElement(\n 'svg',\n {\n ref,\n ...defaultAttributes,\n width: size,\n height: size,\n stroke: color,\n strokeWidth: absoluteStrokeWidth ? (Number(strokeWidth) * 24) / Number(size) : strokeWidth,\n className: mergeClasses('lucide', className),\n ...rest,\n },\n [\n ...iconNode.map(([tag, attrs]) => createElement(tag, attrs)),\n ...(Array.isArray(children) ? children : [children]),\n ],\n );\n },\n);\n\nexport default Icon;\n","import { createElement, forwardRef } from 'react';\nimport { mergeClasses, toKebabCase } from '@lucide/shared';\nimport { IconNode, LucideProps } from './types';\nimport Icon from './Icon';\n\n/**\n * Create a Lucide icon component\n * @param {string} iconName\n * @param {array} iconNode\n * @returns {ForwardRefExoticComponent} LucideIcon\n */\nconst createLucideIcon = (iconName: string, iconNode: IconNode) => {\n const Component = forwardRef<SVGSVGElement, LucideProps>(({ className, ...props }, ref) =>\n createElement(Icon, {\n ref,\n iconNode,\n className: mergeClasses(`lucide-${toKebabCase(iconName)}`, className),\n ...props,\n }),\n );\n\n Component.displayName = `${iconName}`;\n\n return Component;\n};\n\nexport default createLucideIcon;\n","import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name ChevronLeft\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview  - https://lucide.dev/icons/chevron-left\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst ChevronLeft = createLucideIcon('ChevronLeft', [\n ['path', { d: 'm15 18-6-6 6-6', key: '1wnfg3' }],\n]);\n\nexport default ChevronLeft;\n","import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name ChevronRight\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview  - https://lucide.dev/icons/chevron-right\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst ChevronRight = createLucideIcon('ChevronRight', [\n ['path', { d: 'm9 18 6-6-6-6', key: 'mthhwq' }],\n]);\n\nexport default ChevronRight;\n","import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name ChevronsLeft\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview  - https://lucide.dev/icons/chevrons-left\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst ChevronsLeft = createLucideIcon('ChevronsLeft', [\n ['path', { d: 'm11 17-5-5 5-5', key: '13zhaf' }],\n ['path', { d: 'm18 17-5-5 5-5', key: 'h8a8et' }],\n]);\n\nexport default ChevronsLeft;\n","import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name ChevronsRight\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview  - https://lucide.dev/icons/chevrons-right\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst ChevronsRight = createLucideIcon('ChevronsRight', [\n ['path', { d: 'm6 17 5-5-5-5', key: 'xnjwq' }],\n ['path', { d: 'm13 17 5-5-5-5', key: '17xmmf' }],\n]);\n\nexport default ChevronsRight;\n","import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name Ellipsis\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview  - https://lucide.dev/icons/ellipsis\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst Ellipsis = createLucideIcon('Ellipsis', [\n ['circle', { cx: '12', cy: '12', r: '1', key: '41hilf' }],\n ['circle', { cx: '19', cy: '12', r: '1', key: '1wjl8i' }],\n ['circle', { cx: '5', cy: '12', r: '1', key: '1pcz8c' }],\n]);\n\nexport default Ellipsis;\n","import type { IconProps } from \"@yamada-ui/icon\"\nimport { forwardRef } from \"@yamada-ui/core\"\nimport { Icon } from \"@yamada-ui/icon\"\nimport { cx } from \"@yamada-ui/utils\"\nimport { ChevronLeft as OriginalChevronLeft } from \"lucide-react\"\n\n/**\n * `ChevronLeftIcon` is [Lucide](https://lucide.dev) SVG icon component.\n *\n * @see Docs https://yamada-ui.com/components/media-and-icons/lucide\n */\nexport const ChevronLeftIcon = forwardRef<IconProps, \"svg\">(\n ({ className, ...rest }, ref) => (\n <Icon\n ref={ref}\n as={OriginalChevronLeft}\n className={cx(\"ui-lucide-icon\", className)}\n {...rest}\n />\n ),\n)\n\n/**\n * `ChevronLeft` is [Lucide](https://lucide.dev) SVG icon component.\n *\n * @see Docs https://yamada-ui.com/components/media-and-icons/lucide\n *\n * @deprecated Use `ChevronLeftIcon` instead.\n */\nexport const ChevronLeft = ChevronLeftIcon\n","import type { IconProps } from \"@yamada-ui/icon\"\nimport { forwardRef } from \"@yamada-ui/core\"\nimport { Icon } from \"@yamada-ui/icon\"\nimport { cx } from \"@yamada-ui/utils\"\nimport { ChevronRight as OriginalChevronRight } from \"lucide-react\"\n\n/**\n * `ChevronRightIcon` is [Lucide](https://lucide.dev) SVG icon component.\n *\n * @see Docs https://yamada-ui.com/components/media-and-icons/lucide\n */\nexport const ChevronRightIcon = forwardRef<IconProps, \"svg\">(\n ({ className, ...rest }, ref) => (\n <Icon\n ref={ref}\n as={OriginalChevronRight}\n className={cx(\"ui-lucide-icon\", className)}\n {...rest}\n />\n ),\n)\n\n/**\n * `ChevronRight` is [Lucide](https://lucide.dev) SVG icon component.\n *\n * @see Docs https://yamada-ui.com/components/media-and-icons/lucide\n *\n * @deprecated Use `ChevronRightIcon` instead.\n */\nexport const ChevronRight = ChevronRightIcon\n","import type { IconProps } from \"@yamada-ui/icon\"\nimport { forwardRef } from \"@yamada-ui/core\"\nimport { Icon } from \"@yamada-ui/icon\"\nimport { cx } from \"@yamada-ui/utils\"\nimport { ChevronsLeft as OriginalChevronsLeft } from \"lucide-react\"\n\n/**\n * `ChevronsLeftIcon` is [Lucide](https://lucide.dev) SVG icon component.\n *\n * @see Docs https://yamada-ui.com/components/media-and-icons/lucide\n */\nexport const ChevronsLeftIcon = forwardRef<IconProps, \"svg\">(\n ({ className, ...rest }, ref) => (\n <Icon\n ref={ref}\n as={OriginalChevronsLeft}\n className={cx(\"ui-lucide-icon\", className)}\n {...rest}\n />\n ),\n)\n\n/**\n * `ChevronsLeft` is [Lucide](https://lucide.dev) SVG icon component.\n *\n * @see Docs https://yamada-ui.com/components/media-and-icons/lucide\n *\n * @deprecated Use `ChevronsLeftIcon` instead.\n */\nexport const ChevronsLeft = ChevronsLeftIcon\n","import type { IconProps } from \"@yamada-ui/icon\"\nimport { forwardRef } from \"@yamada-ui/core\"\nimport { Icon } from \"@yamada-ui/icon\"\nimport { cx } from \"@yamada-ui/utils\"\nimport { ChevronsRight as OriginalChevronsRight } from \"lucide-react\"\n\n/**\n * `ChevronsRightIcon` is [Lucide](https://lucide.dev) SVG icon component.\n *\n * @see Docs https://yamada-ui.com/components/media-and-icons/lucide\n */\nexport const ChevronsRightIcon = forwardRef<IconProps, \"svg\">(\n ({ className, ...rest }, ref) => (\n <Icon\n ref={ref}\n as={OriginalChevronsRight}\n className={cx(\"ui-lucide-icon\", className)}\n {...rest}\n />\n ),\n)\n\n/**\n * `ChevronsRight` is [Lucide](https://lucide.dev) SVG icon component.\n *\n * @see Docs https://yamada-ui.com/components/media-and-icons/lucide\n *\n * @deprecated Use `ChevronsRightIcon` instead.\n */\nexport const ChevronsRight = ChevronsRightIcon\n","import type { IconProps } from \"@yamada-ui/icon\"\nimport { forwardRef } from \"@yamada-ui/core\"\nimport { Icon } from \"@yamada-ui/icon\"\nimport { cx } from \"@yamada-ui/utils\"\nimport { Ellipsis as OriginalEllipsis } from \"lucide-react\"\n\n/**\n * `EllipsisIcon` is [Lucide](https://lucide.dev) SVG icon component.\n *\n * @see Docs https://yamada-ui.com/components/media-and-icons/lucide\n */\nexport const EllipsisIcon = forwardRef<IconProps, \"svg\">(\n ({ className, ...rest }, ref) => (\n <Icon\n ref={ref}\n as={OriginalEllipsis}\n className={cx(\"ui-lucide-icon\", className)}\n {...rest}\n />\n ),\n)\n\n/**\n * `Ellipsis` is [Lucide](https://lucide.dev) SVG icon component.\n *\n * @see Docs https://yamada-ui.com/components/media-and-icons/lucide\n *\n * @deprecated Use `EllipsisIcon` instead.\n */\nexport const Ellipsis = EllipsisIcon\n"],"mappings":"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","names":["forwardRef","forwardRef","createElement","forwardRef","Icon","forwardRef","Icon","forwardRef","Icon","cx","jsx","forwardRef","Icon","cx","forwardRef","Icon","cx","jsx","forwardRef","Icon","cx","forwardRef","Icon","cx","jsx","forwardRef","Icon","cx","forwardRef","Icon","cx","jsx","forwardRef","Icon","cx","cx","jsx","forwardRef","cx"]}
|
@@ -1,7 +1,7 @@
|
|
1
1
|
"use client"
|
2
2
|
import {
|
3
3
|
PaginationItem
|
4
|
-
} from "./chunk-
|
4
|
+
} from "./chunk-4CVSJB46.mjs";
|
5
5
|
import {
|
6
6
|
PaginationProvider,
|
7
7
|
usePagination
|
@@ -172,4 +172,4 @@ Pagination.__ui__ = "Pagination";
|
|
172
172
|
export {
|
173
173
|
Pagination
|
174
174
|
};
|
175
|
-
//# sourceMappingURL=chunk-
|
175
|
+
//# sourceMappingURL=chunk-US4OATQR.mjs.map
|