@andreagiugni/tailwind-dashboard-ui 1.0.30 → 1.0.32
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/README.md +7 -1
- package/dist/{chunk-2BCVEKTG.js → chunk-AMSZD2ZE.js} +5 -4
- package/dist/chunk-AMSZD2ZE.js.map +1 -0
- package/dist/{chunk-HNIERFMV.cjs → chunk-HBQCQWQW.cjs} +5 -4
- package/dist/chunk-HBQCQWQW.cjs.map +1 -0
- package/dist/{chunk-W6E275RF.js → chunk-N4BZYVL4.js} +5 -3
- package/dist/chunk-N4BZYVL4.js.map +1 -0
- package/dist/{chunk-F2L2DNNL.cjs → chunk-VYBFCH6U.cjs} +41 -4
- package/dist/chunk-VYBFCH6U.cjs.map +1 -0
- package/dist/{chunk-KKDLEGKJ.js → chunk-WZHMDNHY.js} +41 -4
- package/dist/chunk-WZHMDNHY.js.map +1 -0
- package/dist/{chunk-ZULPBSQV.cjs → chunk-XB2NE3EA.cjs} +5 -3
- package/dist/chunk-XB2NE3EA.cjs.map +1 -0
- package/dist/components/Charts/BarChart.cjs +2 -2
- package/dist/components/Charts/BarChart.js +1 -1
- package/dist/components/Charts/LineChart.cjs +2 -2
- package/dist/components/Charts/LineChart.js +1 -1
- package/dist/components/ColorPicker/ColorPicker.cjs +2 -2
- package/dist/components/ColorPicker/ColorPicker.d.cts +2 -0
- package/dist/components/ColorPicker/ColorPicker.d.ts +2 -0
- package/dist/components/ColorPicker/ColorPicker.js +1 -1
- package/dist/index.cjs +9 -9
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +6 -6
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/chunk-2BCVEKTG.js.map +0 -1
- package/dist/chunk-F2L2DNNL.cjs.map +0 -1
- package/dist/chunk-HNIERFMV.cjs.map +0 -1
- package/dist/chunk-KKDLEGKJ.js.map +0 -1
- package/dist/chunk-W6E275RF.js.map +0 -1
- package/dist/chunk-ZULPBSQV.cjs.map +0 -1
package/dist/index.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
export { BarChart } from './chunk-
|
|
3
|
-
export { LineChart } from './chunk-
|
|
2
|
+
export { BarChart } from './chunk-AMSZD2ZE.js';
|
|
3
|
+
export { LineChart } from './chunk-N4BZYVL4.js';
|
|
4
4
|
export { Calendar, Modal } from './chunk-NJBVRPWW.js';
|
|
5
5
|
export { Editor } from './chunk-PFCUA2W2.js';
|
|
6
|
-
export { ColorPicker } from './chunk-
|
|
6
|
+
export { ColorPicker } from './chunk-WZHMDNHY.js';
|
|
7
7
|
import { layers } from './chunk-VX7S6VYG.js';
|
|
8
8
|
import { cn } from './chunk-ZLIYUUA4.js';
|
|
9
9
|
export { cn } from './chunk-ZLIYUUA4.js';
|
|
@@ -578,13 +578,13 @@ var Pagination = ({
|
|
|
578
578
|
onClick: () => onPageChange(item),
|
|
579
579
|
"aria-current": current === item ? "page" : void 0,
|
|
580
580
|
className: cn(
|
|
581
|
-
"flex h-10 w-10 items-center justify-center rounded-lg text-sm font-medium",
|
|
581
|
+
"flex h-10 w-10 items-center justify-center rounded-lg border text-sm font-medium shadow-theme-xs",
|
|
582
582
|
current === item ? (
|
|
583
583
|
// active page keeps its color on hover (no hover restyle)
|
|
584
|
-
"bg-brand-500 text-white"
|
|
584
|
+
"border-brand-500 bg-brand-500 text-white"
|
|
585
585
|
) : (
|
|
586
586
|
// hover effect applies only to non-active page indices
|
|
587
|
-
"text-gray-700 hover:bg-blue-500/[0.08] hover:text-brand-500 dark:text-gray-400 dark:hover:text-brand-500"
|
|
587
|
+
"border-gray-300 bg-white text-gray-700 hover:bg-blue-500/[0.08] hover:text-brand-500 dark:border-gray-700 dark:bg-gray-800 dark:text-gray-400 dark:hover:text-brand-500"
|
|
588
588
|
)
|
|
589
589
|
),
|
|
590
590
|
children: item
|