@andreagiugni/tailwind-dashboard-ui 0.5.20 → 1.0.1
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-H4UQ67RI.cjs → chunk-553PIOZS.cjs} +3 -3
- package/dist/{chunk-H4UQ67RI.cjs.map → chunk-553PIOZS.cjs.map} +1 -1
- package/dist/{chunk-X3OP55FG.js → chunk-U2SEFEOB.js} +3 -3
- package/dist/{chunk-X3OP55FG.js.map → chunk-U2SEFEOB.js.map} +1 -1
- package/dist/components/ColorPicker/ColorPicker.cjs +2 -2
- package/dist/components/ColorPicker/ColorPicker.js +1 -1
- package/dist/index.cjs +5 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3,7 +3,7 @@ export { BarChart } from './chunk-YAKIMPXZ.js';
|
|
|
3
3
|
export { LineChart } from './chunk-NWIOJGF7.js';
|
|
4
4
|
export { Calendar, Modal } from './chunk-QGLKSM7S.js';
|
|
5
5
|
export { Editor } from './chunk-DXUWFHPF.js';
|
|
6
|
-
export { ColorPicker } from './chunk-
|
|
6
|
+
export { ColorPicker } from './chunk-U2SEFEOB.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';
|
|
@@ -1214,8 +1214,8 @@ var Card = ({
|
|
|
1214
1214
|
src: image,
|
|
1215
1215
|
alt: imageAlt,
|
|
1216
1216
|
className: cn(
|
|
1217
|
-
"object-cover",
|
|
1218
|
-
horizontal ? "h-full w-full sm:w-2/5 sm:max-w-[16rem]" : "h-48 w-full"
|
|
1217
|
+
"object-cover rounded-t-2xl",
|
|
1218
|
+
horizontal ? "h-full w-full sm:w-2/5 sm:max-w-[16rem] sm:rounded-l-2xl sm:rounded-tr-none" : "h-48 w-full"
|
|
1219
1219
|
)
|
|
1220
1220
|
}
|
|
1221
1221
|
) : null;
|
|
@@ -1223,7 +1223,7 @@ var Card = ({
|
|
|
1223
1223
|
"div",
|
|
1224
1224
|
{
|
|
1225
1225
|
className: cn(
|
|
1226
|
-
"
|
|
1226
|
+
"rounded-2xl border border-gray-200 bg-white dark:border-gray-800 dark:bg-white/[0.03]",
|
|
1227
1227
|
horizontal && image && "flex flex-col sm:flex-row",
|
|
1228
1228
|
className
|
|
1229
1229
|
),
|