@npm-questionpro/wick-ui-editor 2.0.0-next.9 → 2.1.0-rc.1
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 +61 -23
- package/dist/html.d.ts +1 -0
- package/dist/sanitize-BZ0U7q7z.js +213 -0
- package/dist/style.css +1 -1
- package/dist/wick-ui-editor/es/html.js +88 -0
- package/dist/wick-ui-editor/es/index.js +803 -845
- package/package.json +17 -23
- package/dist/html-Ccb8eKR4.js +0 -7158
- package/dist/standalone-DSxjHhed.js +0 -3574
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@npm-questionpro/wick-ui-editor",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.1.0-rc.1",
|
|
4
4
|
"description": "Wick Editor is a powerful and intuitive content editing component built with React. It provides a rich set of features for creating and managing content, making it ideal for applications that require dynamic and interactive content creation.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -28,6 +28,10 @@
|
|
|
28
28
|
"types": "./dist/index.d.ts",
|
|
29
29
|
"import": "./dist/wick-ui-editor/es/index.js"
|
|
30
30
|
},
|
|
31
|
+
"./html": {
|
|
32
|
+
"types": "./dist/html.d.ts",
|
|
33
|
+
"import": "./dist/wick-ui-editor/es/html.js"
|
|
34
|
+
},
|
|
31
35
|
"./dist/style.css": "./dist/style.css"
|
|
32
36
|
},
|
|
33
37
|
"sideEffects": [
|
|
@@ -37,10 +41,12 @@
|
|
|
37
41
|
"dist"
|
|
38
42
|
],
|
|
39
43
|
"private": false,
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"prettier": "^3.8.3",
|
|
46
|
+
"shiki": "^4.0.2"
|
|
47
|
+
},
|
|
40
48
|
"peerDependencies": {
|
|
41
|
-
"@
|
|
42
|
-
"@npm-questionpro/wick-ui-lib": ">= 2.0.0",
|
|
43
|
-
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
49
|
+
"@base-ui/react": "^1.0.0",
|
|
44
50
|
"@tiptap/extension-image": "^3.14.0",
|
|
45
51
|
"@tiptap/extension-list": "^3.14.0",
|
|
46
52
|
"@tiptap/extension-subscript": "^3.14.0",
|
|
@@ -51,14 +57,12 @@
|
|
|
51
57
|
"@tiptap/pm": "^3.14.0",
|
|
52
58
|
"@tiptap/react": "^3.14.0",
|
|
53
59
|
"@tiptap/starter-kit": "^3.14.0",
|
|
54
|
-
"clsx": "^2.1.1",
|
|
55
60
|
"dompurify": "^3.3.1",
|
|
56
|
-
"react": "
|
|
57
|
-
"react-dom": "
|
|
58
|
-
"shiki": "^4.0.2"
|
|
61
|
+
"react": ">=18.0.0 <20.0.0",
|
|
62
|
+
"react-dom": ">=18.0.0 <20.0.0"
|
|
59
63
|
},
|
|
60
64
|
"devDependencies": {
|
|
61
|
-
"@
|
|
65
|
+
"@base-ui/react": "^1.0.0",
|
|
62
66
|
"@storybook/react-vite": "^10.4.0",
|
|
63
67
|
"@testing-library/dom": "^10.4.1",
|
|
64
68
|
"@testing-library/jest-dom": "^6.9.1",
|
|
@@ -81,36 +85,26 @@
|
|
|
81
85
|
"@vitest/coverage-v8": "^4.1.8",
|
|
82
86
|
"@vitest/ui": "^4.1.8",
|
|
83
87
|
"autoprefixer": "^10.4.22",
|
|
84
|
-
"clsx": "^2.1.1",
|
|
85
88
|
"cssnano": "^7.1.2",
|
|
86
89
|
"eslint": "^10.4.1",
|
|
87
90
|
"jsdom": "^26.1.0",
|
|
88
91
|
"postcss": "^8.5.6",
|
|
89
|
-
"prettier": "^3.8.3",
|
|
90
92
|
"react": "^19.0.0",
|
|
91
93
|
"react-dom": "^19.0.0",
|
|
92
|
-
"stylelint": "^16.3.1",
|
|
93
94
|
"typescript": "^6.0.3",
|
|
94
95
|
"typescript-eslint": "^8.60.0",
|
|
95
96
|
"vite": "^8.0.15",
|
|
96
97
|
"vite-bundle-analyzer": "^0.22.3",
|
|
97
98
|
"vite-plugin-dts": "^4.5.4",
|
|
98
99
|
"vitest": "^4.1.8",
|
|
99
|
-
"@npm-questionpro/wick-ui-lib": "2.
|
|
100
|
+
"@npm-questionpro/wick-ui-lib": "2.1.0-rc.1",
|
|
100
101
|
"@npm-questionpro/wick-ui-eslint-config": "1.0.0",
|
|
101
|
-
"@
|
|
102
|
-
"@npm-questionpro/wick-ui-prettier-config": "1.0.0",
|
|
103
|
-
"@wick-ui/tsconfig": "1.0.0",
|
|
104
|
-
"@npm-questionpro/wick-ui-stylelint-config": "1.0.0"
|
|
102
|
+
"@wick-ui/tsconfig": "1.0.0"
|
|
105
103
|
},
|
|
106
|
-
"prettier": "@npm-questionpro/wick-ui-prettier-config",
|
|
107
104
|
"scripts": {
|
|
108
105
|
"build": "tsc --noEmit && vite build",
|
|
109
|
-
"lint": "eslint ./src --fix
|
|
110
|
-
"lint:
|
|
111
|
-
"lint:ci": "tsc --noEmit && eslint --max-warnings 0 ./src && stylelint 'src/**/*.css'",
|
|
112
|
-
"format": "prettier --write .",
|
|
113
|
-
"format:ci": "prettier --check .",
|
|
106
|
+
"lint": "eslint ./src --fix",
|
|
107
|
+
"lint:ci": "tsc --noEmit && eslint --max-warnings 0 ./src",
|
|
114
108
|
"test": "vitest run",
|
|
115
109
|
"test:watch": "vitest",
|
|
116
110
|
"test:ui": "vitest --ui",
|