@abduljebar/text-editor 1.0.1 → 1.0.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 +1 -1
- package/package.json +6 -3
package/dist/index.js
CHANGED
|
@@ -325,7 +325,7 @@ const un = ({
|
|
|
325
325
|
return /* @__PURE__ */ m.jsxs("div", { className: "flex flex-wrap justify-between items-center p-3 bg-gray-50 border-b border-gray-200", children: [
|
|
326
326
|
/* @__PURE__ */ m.jsx("div", { className: "flex flex-wrap items-center gap-1", children: d.map((l, g) => {
|
|
327
327
|
if ("separator" in l)
|
|
328
|
-
return /* @__PURE__ */ m.jsx("div", { className: "w-px h-6 bg-gray-300 mx-2" }, g);
|
|
328
|
+
return /* @__PURE__ */ m.jsx("div", { className: "w-px h-6 bg-gray-300 mx-2 inline" }, g);
|
|
329
329
|
const p = i.includes(l.command);
|
|
330
330
|
return /* @__PURE__ */ m.jsx(
|
|
331
331
|
"button",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abduljebar/text-editor",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "A professional React text editor with export, save, and validation features",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -65,6 +65,9 @@
|
|
|
65
65
|
"vite-plugin-dts": "^4.5.4"
|
|
66
66
|
},
|
|
67
67
|
"dependencies": {
|
|
68
|
-
"
|
|
68
|
+
"@tailwindcss/vite": "^4.1.14",
|
|
69
|
+
"lucide-react": "^0.544.0",
|
|
70
|
+
"react": "^19.2.0",
|
|
71
|
+
"react-dom": "^19.2.0"
|
|
69
72
|
}
|
|
70
|
-
}
|
|
73
|
+
}
|