reactjs-tiptap-editor 0.0.14 → 0.0.15
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/lib/index.d.cts +15 -15
- package/lib/index.d.ts +15 -15
- package/lib/style.css +1 -1
- package/package.json +4 -3
package/lib/index.d.cts
CHANGED
|
@@ -1646,11 +1646,6 @@ declare module '@tiptap/core' {
|
|
|
1646
1646
|
}
|
|
1647
1647
|
|
|
1648
1648
|
|
|
1649
|
-
declare namespace DropdownMenuShortcut {
|
|
1650
|
-
var displayName: string;
|
|
1651
|
-
}
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
1649
|
declare module '@tiptap/core' {
|
|
1655
1650
|
interface Commands<ReturnType> {
|
|
1656
1651
|
fontSize: {
|
|
@@ -1722,9 +1717,8 @@ declare module '@tiptap/core' {
|
|
|
1722
1717
|
|
|
1723
1718
|
declare module '@tiptap/core' {
|
|
1724
1719
|
interface Commands<ReturnType> {
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
unsetTableCellBackground: () => ReturnType;
|
|
1720
|
+
painter: {
|
|
1721
|
+
setPainter: (marks: Mark[]) => ReturnType;
|
|
1728
1722
|
};
|
|
1729
1723
|
}
|
|
1730
1724
|
}
|
|
@@ -1732,8 +1726,9 @@ declare module '@tiptap/core' {
|
|
|
1732
1726
|
|
|
1733
1727
|
declare module '@tiptap/core' {
|
|
1734
1728
|
interface Commands<ReturnType> {
|
|
1735
|
-
|
|
1736
|
-
|
|
1729
|
+
tableCellBackground: {
|
|
1730
|
+
setTableCellBackground: (color: string) => ReturnType;
|
|
1731
|
+
unsetTableCellBackground: () => ReturnType;
|
|
1737
1732
|
};
|
|
1738
1733
|
}
|
|
1739
1734
|
}
|
|
@@ -1741,8 +1736,9 @@ declare module '@tiptap/core' {
|
|
|
1741
1736
|
|
|
1742
1737
|
declare module '@tiptap/core' {
|
|
1743
1738
|
interface Commands<ReturnType> {
|
|
1744
|
-
|
|
1745
|
-
|
|
1739
|
+
columns: {
|
|
1740
|
+
setColumns: () => ReturnType;
|
|
1741
|
+
setLayout: (layout: ColumnLayout) => ReturnType;
|
|
1746
1742
|
};
|
|
1747
1743
|
}
|
|
1748
1744
|
}
|
|
@@ -1750,9 +1746,8 @@ declare module '@tiptap/core' {
|
|
|
1750
1746
|
|
|
1751
1747
|
declare module '@tiptap/core' {
|
|
1752
1748
|
interface Commands<ReturnType> {
|
|
1753
|
-
|
|
1754
|
-
|
|
1755
|
-
setLayout: (layout: ColumnLayout) => ReturnType;
|
|
1749
|
+
videoUpload: {
|
|
1750
|
+
setVideoUpload: () => ReturnType;
|
|
1756
1751
|
};
|
|
1757
1752
|
}
|
|
1758
1753
|
}
|
|
@@ -1806,3 +1801,8 @@ declare module '@tiptap/core' {
|
|
|
1806
1801
|
};
|
|
1807
1802
|
}
|
|
1808
1803
|
}
|
|
1804
|
+
|
|
1805
|
+
|
|
1806
|
+
declare namespace DropdownMenuShortcut {
|
|
1807
|
+
var displayName: string;
|
|
1808
|
+
}
|
package/lib/index.d.ts
CHANGED
|
@@ -1646,11 +1646,6 @@ declare module '@tiptap/core' {
|
|
|
1646
1646
|
}
|
|
1647
1647
|
|
|
1648
1648
|
|
|
1649
|
-
declare namespace DropdownMenuShortcut {
|
|
1650
|
-
var displayName: string;
|
|
1651
|
-
}
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
1649
|
declare module '@tiptap/core' {
|
|
1655
1650
|
interface Commands<ReturnType> {
|
|
1656
1651
|
fontSize: {
|
|
@@ -1722,9 +1717,8 @@ declare module '@tiptap/core' {
|
|
|
1722
1717
|
|
|
1723
1718
|
declare module '@tiptap/core' {
|
|
1724
1719
|
interface Commands<ReturnType> {
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
unsetTableCellBackground: () => ReturnType;
|
|
1720
|
+
painter: {
|
|
1721
|
+
setPainter: (marks: Mark[]) => ReturnType;
|
|
1728
1722
|
};
|
|
1729
1723
|
}
|
|
1730
1724
|
}
|
|
@@ -1732,8 +1726,9 @@ declare module '@tiptap/core' {
|
|
|
1732
1726
|
|
|
1733
1727
|
declare module '@tiptap/core' {
|
|
1734
1728
|
interface Commands<ReturnType> {
|
|
1735
|
-
|
|
1736
|
-
|
|
1729
|
+
tableCellBackground: {
|
|
1730
|
+
setTableCellBackground: (color: string) => ReturnType;
|
|
1731
|
+
unsetTableCellBackground: () => ReturnType;
|
|
1737
1732
|
};
|
|
1738
1733
|
}
|
|
1739
1734
|
}
|
|
@@ -1741,8 +1736,9 @@ declare module '@tiptap/core' {
|
|
|
1741
1736
|
|
|
1742
1737
|
declare module '@tiptap/core' {
|
|
1743
1738
|
interface Commands<ReturnType> {
|
|
1744
|
-
|
|
1745
|
-
|
|
1739
|
+
columns: {
|
|
1740
|
+
setColumns: () => ReturnType;
|
|
1741
|
+
setLayout: (layout: ColumnLayout) => ReturnType;
|
|
1746
1742
|
};
|
|
1747
1743
|
}
|
|
1748
1744
|
}
|
|
@@ -1750,9 +1746,8 @@ declare module '@tiptap/core' {
|
|
|
1750
1746
|
|
|
1751
1747
|
declare module '@tiptap/core' {
|
|
1752
1748
|
interface Commands<ReturnType> {
|
|
1753
|
-
|
|
1754
|
-
|
|
1755
|
-
setLayout: (layout: ColumnLayout) => ReturnType;
|
|
1749
|
+
videoUpload: {
|
|
1750
|
+
setVideoUpload: () => ReturnType;
|
|
1756
1751
|
};
|
|
1757
1752
|
}
|
|
1758
1753
|
}
|
|
@@ -1806,3 +1801,8 @@ declare module '@tiptap/core' {
|
|
|
1806
1801
|
};
|
|
1807
1802
|
}
|
|
1808
1803
|
}
|
|
1804
|
+
|
|
1805
|
+
|
|
1806
|
+
declare namespace DropdownMenuShortcut {
|
|
1807
|
+
var displayName: string;
|
|
1808
|
+
}
|