@veevarts/design-system 0.1.19 → 0.1.21
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 +11 -1
- package/dist/index.cjs +15 -98
- package/dist/index.js +8470 -14942
- package/dist/patterns/RichText/extensions/index.d.ts +3 -1
- package/dist/patterns/RichText/types/props.d.ts +2 -1
- package/package.json +20 -8
package/README.md
CHANGED
|
@@ -107,8 +107,18 @@ Opens at `http://localhost:5173`
|
|
|
107
107
|
|
|
108
108
|
### Install in your project
|
|
109
109
|
|
|
110
|
+
**Basic installation:**
|
|
110
111
|
```bash
|
|
111
|
-
npm install @veevarts/design-system @heroui/react framer-motion
|
|
112
|
+
npm install @veevarts/design-system @heroui/react framer-motion lucide-react
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
**If using RichTextArea component (additional TipTap dependencies):**
|
|
116
|
+
```bash
|
|
117
|
+
npm install @tiptap/react @tiptap/starter-kit @tiptap/pm \
|
|
118
|
+
@tiptap/extension-color @tiptap/extension-highlight \
|
|
119
|
+
@tiptap/extension-link @tiptap/extension-placeholder \
|
|
120
|
+
@tiptap/extension-task-item @tiptap/extension-task-list \
|
|
121
|
+
@tiptap/extension-text-align @tiptap/extension-underline
|
|
112
122
|
```
|
|
113
123
|
|
|
114
124
|
### Import components
|