ritext 1.0.4 → 1.0.8

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.
Files changed (2) hide show
  1. package/dist/index.css +0 -3
  2. package/package.json +5 -7
package/dist/index.css CHANGED
@@ -226,9 +226,6 @@
226
226
  }
227
227
  }
228
228
  @layer utilities {
229
- .fixed {
230
- position: fixed;
231
- }
232
229
  .rounded-lg {
233
230
  border-radius: var(--radius-lg);
234
231
  }
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "ritext",
3
- "version": "1.0.4",
3
+ "version": "1.0.8",
4
4
  "description": "Ritext is a modern WYSIWYG rich text editor built with Tailwind CSS, powered by Tiptap. It offers a customizable UI and functional layer that lets you design your own editor controls and toolbars with clean, composable React components—no heavy UI, no extra dependencies beyond Tiptap.",
5
- "homepage": "https://react-color-pick-docs.vercel.app/",
5
+ "homepage": "https://ritext.vercel.app/",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist/index.mjs",
8
8
  "types": "dist/index.d.ts",
@@ -40,11 +40,10 @@
40
40
  ],
41
41
  "repository": {
42
42
  "type": "git",
43
- "directory": "https://github.com/siamahnaf/react-color-pick",
44
- "url": "https://github.com/siamahnaf/react-color-pick"
43
+ "directory": "https://github.com/siamahnaf/ritext",
44
+ "url": "https://github.com/siamahnaf/ritext"
45
45
  },
46
46
  "devDependencies": {
47
- "@changesets/cli": "^2.29.7",
48
47
  "@tailwindcss/postcss": "^4.1.16",
49
48
  "@types/node": "^24",
50
49
  "@types/react": "^19",
@@ -77,7 +76,6 @@
77
76
  },
78
77
  "scripts": {
79
78
  "build": "tsup src/index.ts --format cjs,esm --dts",
80
- "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
81
- "pub": "turbo run build && changeset version && changeset publish"
79
+ "dev": "tsup src/index.ts --format cjs,esm --dts --watch"
82
80
  }
83
81
  }