@fakhrirafiki/theme-engine 0.4.1 → 0.4.2
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/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -4621,8 +4621,8 @@ var ColorBox = ({ color, className }) => {
|
|
|
4621
4621
|
return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
|
|
4622
4622
|
"div",
|
|
4623
4623
|
{
|
|
4624
|
-
className: (0, import_clsx2.clsx)("
|
|
4625
|
-
style: { backgroundColor: formatColor(color, "
|
|
4624
|
+
className: (0, import_clsx2.clsx)("theme-color-box", className),
|
|
4625
|
+
style: { backgroundColor: formatColor(color, "hex"), width: 12, height: 12 }
|
|
4626
4626
|
}
|
|
4627
4627
|
);
|
|
4628
4628
|
};
|
package/dist/index.mjs
CHANGED
|
@@ -4578,8 +4578,8 @@ var ColorBox = ({ color, className }) => {
|
|
|
4578
4578
|
return /* @__PURE__ */ jsx4(
|
|
4579
4579
|
"div",
|
|
4580
4580
|
{
|
|
4581
|
-
className: clsx2("
|
|
4582
|
-
style: { backgroundColor: formatColor(color, "
|
|
4581
|
+
className: clsx2("theme-color-box", className),
|
|
4582
|
+
style: { backgroundColor: formatColor(color, "hex"), width: 12, height: 12 }
|
|
4583
4583
|
}
|
|
4584
4584
|
);
|
|
4585
4585
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fakhrirafiki/theme-engine",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.2",
|
|
4
4
|
"description": "Elegant theming system with smooth transitions, custom presets, semantic accent colors, and complete shadcn/ui support for modern React applications",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|