@npm-questionpro/wick-ui-lib 1.18.0 → 1.20.0
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/src/components/editor/WuEditor.d.ts +9 -0
- package/dist/src/components/editor/WuEditor.test.d.ts +1 -0
- package/dist/src/components/editor/index.d.ts +2 -0
- package/dist/src/components/editor/partials/ImageModal.d.ts +1 -0
- package/dist/src/components/editor/partials/LinkModal.d.ts +9 -0
- package/dist/src/components/editor/partials/Menubar.d.ts +1 -0
- package/dist/src/components/editor/partials/TablePopover.d.ts +1 -0
- package/dist/src/components/editor/partials/config.d.ts +2 -0
- package/dist/src/components/editor/partials/fontFamily.d.ts +1 -0
- package/dist/src/components/editor/partials/helper.d.ts +3 -0
- package/dist/src/components/editor/partials/toolbarItems.d.ts +20 -0
- package/dist/src/components/editor/partials/wuEditorContext.d.ts +13 -0
- package/dist/src/components/typography/WuTypography.d.ts +2 -3
- package/dist/src/components/useTranslation/WuTranslation.test.d.ts +1 -0
- package/dist/src/components/useTranslation/WuTranslationContext.d.ts +2 -0
- package/dist/src/components/useTranslation/WuTranslationProvider.d.ts +6 -0
- package/dist/src/components/useTranslation/index.d.ts +4 -0
- package/dist/src/components/useTranslation/types/index.d.ts +8 -0
- package/dist/src/components/useTranslation/useTranslationContext.d.ts +3 -0
- package/dist/src/index.d.ts +3 -1
- package/dist/style.css +1 -1
- package/dist/wick-ui-lib/es/index.js +2998 -2273
- package/dist/wick-ui-lib/umd/index.js +7 -7
- package/package.json +18 -2
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@npm-questionpro/wick-ui-lib",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.20.0",
|
|
5
5
|
"description": "A React component library by QuestionPro for building web applications with ease",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"react",
|
|
@@ -38,6 +38,7 @@
|
|
|
38
38
|
],
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@base-ui-components/react": "1.0.0-beta.4",
|
|
41
|
+
"@floating-ui/react": "^0.27.16",
|
|
41
42
|
"@npm-questionpro/wick-ui-icon": "^8.0.2",
|
|
42
43
|
"@radix-ui/react-accordion": "^1.2.12",
|
|
43
44
|
"@radix-ui/react-avatar": "^1.1.11",
|
|
@@ -96,7 +97,20 @@
|
|
|
96
97
|
"react-dom": ">= 18 < 20",
|
|
97
98
|
"react-transition-group": "^4.4.5",
|
|
98
99
|
"react-virtuoso": "^4.12.3",
|
|
99
|
-
"tailwind-merge": "^2.6.0"
|
|
100
|
+
"tailwind-merge": "^2.6.0",
|
|
101
|
+
"@tiptap/extension-code": "^3.13.0",
|
|
102
|
+
"@tiptap/extension-image": "^3.13.0",
|
|
103
|
+
"@tiptap/extension-link": "^3.12.0",
|
|
104
|
+
"@tiptap/extension-list": "^3.13.0",
|
|
105
|
+
"@tiptap/extension-subscript": "^3.11.0",
|
|
106
|
+
"@tiptap/extension-superscript": "^3.11.0",
|
|
107
|
+
"@tiptap/extension-table": "^3.13.0",
|
|
108
|
+
"@tiptap/extension-text-align": "^3.11.1",
|
|
109
|
+
"@tiptap/extension-text-style": "^3.13.0",
|
|
110
|
+
"@tiptap/extension-typography": "^3.11.0",
|
|
111
|
+
"@tiptap/pm": "^3.11.0",
|
|
112
|
+
"@tiptap/react": "^3.11.0",
|
|
113
|
+
"@tiptap/starter-kit": "^3.11.0"
|
|
100
114
|
},
|
|
101
115
|
"devDependencies": {
|
|
102
116
|
"@eslint/js": "^9.39.1",
|
|
@@ -105,6 +119,7 @@
|
|
|
105
119
|
"@storybook/addon-docs": "10.1.5",
|
|
106
120
|
"@storybook/addon-links": "10.1.5",
|
|
107
121
|
"@storybook/react-vite": "10.1.5",
|
|
122
|
+
"@tailwindcss/typography": "^0.5.19",
|
|
108
123
|
"@testing-library/dom": "^10.4.1",
|
|
109
124
|
"@testing-library/jest-dom": "^6.9.1",
|
|
110
125
|
"@testing-library/react": "^16.3.0",
|
|
@@ -132,6 +147,7 @@
|
|
|
132
147
|
"postcss": "^8.5.6",
|
|
133
148
|
"prettier": "^3.7.4",
|
|
134
149
|
"prettier-plugin-tailwindcss": "^0.6.14",
|
|
150
|
+
"sass-embedded": "^1.93.3",
|
|
135
151
|
"storybook": "10.1.5",
|
|
136
152
|
"tailwindcss": "^3.4.18",
|
|
137
153
|
"tailwindcss-animate": "^1.0.7",
|