@fileverse-dev/ddoc 2.0.3 → 2.0.4-patch-2

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@fileverse-dev/ddoc",
3
3
  "private": false,
4
4
  "description": "DDoc",
5
- "version": "2.0.3",
5
+ "version": "2.0.4-patch-2",
6
6
  "main": "dist/index.es.js",
7
7
  "module": "dist/index.es.js",
8
8
  "exports": {
@@ -28,7 +28,7 @@
28
28
  "dependencies": {
29
29
  "@_ueberdosis/prosemirror-tables": "^1.1.3",
30
30
  "@aarkue/tiptap-math-extension": "^1.3.3",
31
- "@fileverse/ui": "^4.1.1-patch-4",
31
+ "@fileverse/ui": "^4.1.2",
32
32
  "@radix-ui/react-focus-scope": "^1.1.0",
33
33
  "@radix-ui/react-popover": "^1.0.7",
34
34
  "@tippyjs/react": "^4.2.6",
@@ -47,6 +47,8 @@
47
47
  "@tiptap/extension-link": "^2.5.4",
48
48
  "@tiptap/extension-list-item": "^2.5.4",
49
49
  "@tiptap/extension-placeholder": "^2.5.4",
50
+ "@tiptap/extension-subscript": "^2.5.4",
51
+ "@tiptap/extension-superscript": "^2.5.4",
50
52
  "@tiptap/extension-task-item": "^2.5.4",
51
53
  "@tiptap/extension-task-list": "^2.5.4",
52
54
  "@tiptap/extension-text-align": "^2.5.4",
@@ -63,7 +65,6 @@
63
65
  "ethers": "^6.13.1",
64
66
  "framer-motion": "^11.2.12",
65
67
  "katex": "^0.16.11",
66
- "lucide-react": "^0.379.0",
67
68
  "markdown-it-footnote": "^4.0.0",
68
69
  "platform": "^1.3.6",
69
70
  "prosemirror-model": "^1.21.0",
@@ -1,8 +0,0 @@
1
- import { icons } from 'lucide-react';
2
-
3
- export type IconProps = {
4
- name: keyof typeof icons;
5
- className?: string;
6
- strokeWidth?: number;
7
- };
8
- export declare const Icon: import('react').MemoExoticComponent<({ name, className, strokeWidth }: IconProps) => import("react/jsx-runtime").JSX.Element | null>;