ui-mathilde-web 0.1.35 → 0.1.37
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/ui-mathilde-web.d.ts +9 -0
- package/dist/ui-mathilde-web.js +12 -2
- package/dist/ui-mathilde-web.umd.cjs +38 -38
- package/package.json +1 -1
|
@@ -86,6 +86,15 @@ declare interface Column {
|
|
|
86
86
|
cellProps?: Record<string, unknown>;
|
|
87
87
|
}
|
|
88
88
|
|
|
89
|
+
export declare const CustomPagination: default_2.FC<CustomPaginationProps>;
|
|
90
|
+
|
|
91
|
+
declare interface CustomPaginationProps {
|
|
92
|
+
currentPage: number;
|
|
93
|
+
totalPages: number;
|
|
94
|
+
onPageChange: (page: number) => void;
|
|
95
|
+
value?: number;
|
|
96
|
+
}
|
|
97
|
+
|
|
89
98
|
export declare const DatePicker: ({ minDate, maxDate, }: {
|
|
90
99
|
minDate: Date;
|
|
91
100
|
maxDate: Date;
|
package/dist/ui-mathilde-web.js
CHANGED
|
@@ -20256,11 +20256,20 @@ function Y2(t) {
|
|
|
20256
20256
|
const V2 = ({
|
|
20257
20257
|
currentPage: t,
|
|
20258
20258
|
totalPages: e,
|
|
20259
|
-
onPageChange: r
|
|
20259
|
+
onPageChange: r,
|
|
20260
|
+
value: n
|
|
20260
20261
|
}) => /* @__PURE__ */ K("div", { className: "flex items-center justify-center gap-4", children: [
|
|
20261
20262
|
/* @__PURE__ */ K("span", { className: "text-base text-gray-700", children: [
|
|
20262
20263
|
"Ver ",
|
|
20263
|
-
/* @__PURE__ */ b(
|
|
20264
|
+
/* @__PURE__ */ b(
|
|
20265
|
+
"input",
|
|
20266
|
+
{
|
|
20267
|
+
type: "number",
|
|
20268
|
+
className: `w-10 ${ml["mth-input-number"]}`,
|
|
20269
|
+
id: "itemsPerPage",
|
|
20270
|
+
defaultValue: n || 15
|
|
20271
|
+
}
|
|
20272
|
+
)
|
|
20264
20273
|
] }),
|
|
20265
20274
|
/* @__PURE__ */ b(
|
|
20266
20275
|
"button",
|
|
@@ -29430,6 +29439,7 @@ export {
|
|
|
29430
29439
|
Up as Card,
|
|
29431
29440
|
EI as CardIndicator,
|
|
29432
29441
|
MI as Checkbox,
|
|
29442
|
+
V2 as CustomPagination,
|
|
29433
29443
|
YI as DatePicker,
|
|
29434
29444
|
HI as DateRangePicker,
|
|
29435
29445
|
qI as DropdownButton,
|