frappe-ui 0.0.88 → 0.0.89

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "frappe-ui",
3
- "version": "0.0.88",
3
+ "version": "0.0.89",
4
4
  "description": "A set of components and utilities for rapid UI development",
5
5
  "main": "./src/index.js",
6
6
  "scripts": {
@@ -35,6 +35,7 @@
35
35
  "@tiptap/extension-table-row": "^2.0.0-beta.22",
36
36
  "@tiptap/extension-text-align": "^2.0.0-beta.31",
37
37
  "@tiptap/extension-text-style": "^2.0.0-beta.202",
38
+ "@tiptap/extension-typography": "^2.0.0-beta.202",
38
39
  "@tiptap/starter-kit": "^2.0.0-beta.191",
39
40
  "@tiptap/suggestion": "^2.0.0-beta.195",
40
41
  "@tiptap/vue-3": "^2.0.0-beta.96",
@@ -28,6 +28,7 @@ import TableRow from '@tiptap/extension-table-row'
28
28
  import Image from './image-extension'
29
29
  import Video from './video-extension'
30
30
  import Link from '@tiptap/extension-link'
31
+ import Typography from '@tiptap/extension-typography'
31
32
  import TextStyle from '@tiptap/extension-text-style'
32
33
  import Highlight from '@tiptap/extension-highlight'
33
34
  import { Color } from '@tiptap/extension-color'
@@ -137,6 +138,7 @@ export default {
137
138
  TableRow,
138
139
  TableHeader,
139
140
  TableCell,
141
+ Typography,
140
142
  TextAlign.configure({
141
143
  types: ['heading', 'paragraph'],
142
144
  }),