@zjlab-fe/data-hub-ui 0.5.14 → 0.5.16

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 (25) hide show
  1. package/dist/types/components/tip-tap/actions/action-image.d.ts +4 -0
  2. package/dist/types/components/tip-tap/actions/action-link.d.ts +5 -0
  3. package/dist/types/components/tip-tap/actions/action-list.d.ts +4 -0
  4. package/dist/types/components/tip-tap/actions/action-table.d.ts +4 -0
  5. package/dist/types/components/tip-tap/actions/bold-italic-strike-underline.d.ts +4 -0
  6. package/dist/types/components/tip-tap/actions/code-quote-horizontalRule.d.ts +4 -0
  7. package/dist/types/components/tip-tap/actions/link-modifier.d.ts +4 -0
  8. package/dist/types/components/tip-tap/actions/paragraph-headings.d.ts +13 -0
  9. package/dist/types/components/tip-tap/actions/text-aligment.d.ts +4 -0
  10. package/dist/types/components/tip-tap/actions/undo-redo.d.ts +4 -0
  11. package/dist/types/components/tip-tap/extensions/drop-handler.d.ts +2 -0
  12. package/dist/types/components/tip-tap/extensions/font-size.d.ts +20 -0
  13. package/dist/types/components/tip-tap/extensions/index.d.ts +2 -2
  14. package/dist/types/components/tip-tap/extensions/patse-handler.d.ts +3 -0
  15. package/dist/types/components/tip-tap/menus/bubble-menu.d.ts +7 -0
  16. package/dist/types/components/tip-tap/menus/fixed-menu.d.ts +9 -0
  17. package/dist/types/components/tip-tap/menus/link-floating-menu.d.ts +6 -0
  18. package/dist/types/components/tip-tap/menus/paragraph-floating-menu.d.ts +6 -0
  19. package/dist/types/components/tip-tap/utils/add-image-to-editor.d.ts +2 -0
  20. package/dist/types/components/tip-tap/utils/markdown-detector.d.ts +33 -0
  21. package/dist/types/components/tip-tap/utils/parse-markdown.d.ts +2 -0
  22. package/es/index.js +1 -1
  23. package/lib/index.js +1 -1
  24. package/package.json +20 -19
  25. package/tailwind.config.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zjlab-fe/data-hub-ui",
3
- "version": "0.5.14",
3
+ "version": "0.5.16",
4
4
  "main": "lib/index.js",
5
5
  "module": "es/index.js",
6
6
  "types": "dist/types/index.d.ts",
@@ -22,6 +22,7 @@
22
22
  "@babel/preset-react": "^7.24.7",
23
23
  "@babel/preset-typescript": "^7.25.7",
24
24
  "@jest/globals": "^29.7.0",
25
+ "@tailwindcss/typography": "^0.5.16",
25
26
  "@testing-library/dom": "^10.4.0",
26
27
  "@testing-library/react": "^16.0.1",
27
28
  "@types/filesystem": "^0.0.36",
@@ -71,24 +72,24 @@
71
72
  "dependencies": {
72
73
  "@ant-design/icons": "^5.3.7",
73
74
  "@codesandbox/sandpack-react": "^2.19.9",
74
- "@tiptap/core": "^3.1.0",
75
- "@tiptap/extension-code-block-lowlight": "^3.1.0",
76
- "@tiptap/extension-color": "^3.1.0",
77
- "@tiptap/extension-floating-menu": "^3.1.0",
78
- "@tiptap/extension-highlight": "^3.1.0",
79
- "@tiptap/extension-image": "^3.1.0",
80
- "@tiptap/extension-link": "^3.1.0",
81
- "@tiptap/extension-list-item": "^3.1.0",
82
- "@tiptap/extension-table": "^3.1.0",
83
- "@tiptap/extension-table-cell": "^3.1.0",
84
- "@tiptap/extension-table-header": "^3.1.0",
85
- "@tiptap/extension-table-row": "^3.1.0",
86
- "@tiptap/extension-text-align": "^3.1.0",
87
- "@tiptap/extension-text-style": "^3.1.0",
88
- "@tiptap/extension-underline": "^3.1.0",
89
- "@tiptap/pm": "^3.1.0",
90
- "@tiptap/react": "^3.1.0",
91
- "@tiptap/starter-kit": "^3.1.0",
75
+ "@tiptap/core": "^2.25.0",
76
+ "@tiptap/extension-code-block-lowlight": "^2.25.0",
77
+ "@tiptap/extension-color": "^2.25.0",
78
+ "@tiptap/extension-floating-menu": "^2.25.0",
79
+ "@tiptap/extension-highlight": "^2.25.0",
80
+ "@tiptap/extension-image": "^2.25.0",
81
+ "@tiptap/extension-link": "^2.25.0",
82
+ "@tiptap/extension-list-item": "^2.25.0",
83
+ "@tiptap/extension-table": "^2.25.0",
84
+ "@tiptap/extension-table-cell": "^2.25.0",
85
+ "@tiptap/extension-table-header": "^2.25.0",
86
+ "@tiptap/extension-table-row": "^2.25.0",
87
+ "@tiptap/extension-text-align": "^2.25.0",
88
+ "@tiptap/extension-text-style": "^2.25.0",
89
+ "@tiptap/extension-underline": "^2.25.0",
90
+ "@tiptap/pm": "^2.25.0",
91
+ "@tiptap/react": "^2.25.0",
92
+ "@tiptap/starter-kit": "^2.25.0",
92
93
  "@zjlab-fe/util": "^0.0.8",
93
94
  "antd": "^5.19.2",
94
95
  "arrow-js-ffi": "^0.4.2",
@@ -49,4 +49,4 @@ export const theme = {
49
49
  },
50
50
  },
51
51
  };
52
- export const plugins = [];
52
+ export const plugins = [require('@tailwindcss/typography')];