reactjs-tiptap-editor 0.0.18 → 0.0.19
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
CHANGED
|
@@ -1651,11 +1651,6 @@ declare module '@tiptap/core' {
|
|
|
1651
1651
|
}
|
|
1652
1652
|
|
|
1653
1653
|
|
|
1654
|
-
declare namespace DropdownMenuShortcut {
|
|
1655
|
-
var displayName: string;
|
|
1656
|
-
}
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
1654
|
declare module '@tiptap/core' {
|
|
1660
1655
|
interface Commands<ReturnType> {
|
|
1661
1656
|
fontSize: {
|
|
@@ -1674,6 +1669,16 @@ declare module '@tiptap/core' {
|
|
|
1674
1669
|
}
|
|
1675
1670
|
|
|
1676
1671
|
|
|
1672
|
+
declare module '@tiptap/core' {
|
|
1673
|
+
interface Commands<ReturnType> {
|
|
1674
|
+
lineHeight: {
|
|
1675
|
+
setLineHeight: (lineHeight: string) => ReturnType;
|
|
1676
|
+
unsetLineHeight: () => ReturnType;
|
|
1677
|
+
};
|
|
1678
|
+
}
|
|
1679
|
+
}
|
|
1680
|
+
|
|
1681
|
+
|
|
1677
1682
|
declare module '@tiptap/core' {
|
|
1678
1683
|
interface Commands<ReturnType> {
|
|
1679
1684
|
indent: {
|
|
@@ -1692,9 +1697,27 @@ declare module '@tiptap/core' {
|
|
|
1692
1697
|
|
|
1693
1698
|
declare module '@tiptap/core' {
|
|
1694
1699
|
interface Commands<ReturnType> {
|
|
1695
|
-
|
|
1696
|
-
|
|
1697
|
-
|
|
1700
|
+
imageUpload: {
|
|
1701
|
+
setImageUpload: () => ReturnType;
|
|
1702
|
+
};
|
|
1703
|
+
}
|
|
1704
|
+
}
|
|
1705
|
+
|
|
1706
|
+
|
|
1707
|
+
declare module '@tiptap/core' {
|
|
1708
|
+
interface Commands<ReturnType> {
|
|
1709
|
+
videoUpload: {
|
|
1710
|
+
setVideoUpload: () => ReturnType;
|
|
1711
|
+
};
|
|
1712
|
+
}
|
|
1713
|
+
}
|
|
1714
|
+
|
|
1715
|
+
|
|
1716
|
+
declare module '@tiptap/core' {
|
|
1717
|
+
interface Commands<ReturnType> {
|
|
1718
|
+
tableCellBackground: {
|
|
1719
|
+
setTableCellBackground: (color: string) => ReturnType;
|
|
1720
|
+
unsetTableCellBackground: () => ReturnType;
|
|
1698
1721
|
};
|
|
1699
1722
|
}
|
|
1700
1723
|
}
|
|
@@ -1716,15 +1739,6 @@ declare module '@tiptap/core' {
|
|
|
1716
1739
|
}
|
|
1717
1740
|
|
|
1718
1741
|
|
|
1719
|
-
declare module '@tiptap/core' {
|
|
1720
|
-
interface Commands<ReturnType> {
|
|
1721
|
-
imageUpload: {
|
|
1722
|
-
setImageUpload: () => ReturnType;
|
|
1723
|
-
};
|
|
1724
|
-
}
|
|
1725
|
-
}
|
|
1726
|
-
|
|
1727
|
-
|
|
1728
1742
|
declare module '@tiptap/core' {
|
|
1729
1743
|
interface Commands<ReturnType> {
|
|
1730
1744
|
painter: {
|
|
@@ -1759,15 +1773,6 @@ declare module '@tiptap/core' {
|
|
|
1759
1773
|
}
|
|
1760
1774
|
|
|
1761
1775
|
|
|
1762
|
-
declare module '@tiptap/core' {
|
|
1763
|
-
interface Commands<ReturnType> {
|
|
1764
|
-
videoUpload: {
|
|
1765
|
-
setVideoUpload: () => ReturnType;
|
|
1766
|
-
};
|
|
1767
|
-
}
|
|
1768
|
-
}
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
1776
|
declare module '@tiptap/core' {
|
|
1772
1777
|
interface Commands<ReturnType> {
|
|
1773
1778
|
search: {
|
|
@@ -1782,11 +1787,15 @@ declare module '@tiptap/core' {
|
|
|
1782
1787
|
}
|
|
1783
1788
|
|
|
1784
1789
|
|
|
1790
|
+
declare namespace DropdownMenuShortcut {
|
|
1791
|
+
var displayName: string;
|
|
1792
|
+
}
|
|
1793
|
+
|
|
1794
|
+
|
|
1785
1795
|
declare module '@tiptap/core' {
|
|
1786
1796
|
interface Commands<ReturnType> {
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
unsetTableCellBackground: () => ReturnType;
|
|
1797
|
+
katex: {
|
|
1798
|
+
setKatex: (arg?: IKatexAttrs) => ReturnType;
|
|
1790
1799
|
};
|
|
1791
1800
|
}
|
|
1792
1801
|
}
|
|
@@ -1802,12 +1811,3 @@ declare module '@tiptap/core' {
|
|
|
1802
1811
|
};
|
|
1803
1812
|
}
|
|
1804
1813
|
}
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
declare module '@tiptap/core' {
|
|
1808
|
-
interface Commands<ReturnType> {
|
|
1809
|
-
katex: {
|
|
1810
|
-
setKatex: (arg?: IKatexAttrs) => ReturnType;
|
|
1811
|
-
};
|
|
1812
|
-
}
|
|
1813
|
-
}
|
package/lib/index.d.ts
CHANGED
|
@@ -1651,11 +1651,6 @@ declare module '@tiptap/core' {
|
|
|
1651
1651
|
}
|
|
1652
1652
|
|
|
1653
1653
|
|
|
1654
|
-
declare namespace DropdownMenuShortcut {
|
|
1655
|
-
var displayName: string;
|
|
1656
|
-
}
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
1654
|
declare module '@tiptap/core' {
|
|
1660
1655
|
interface Commands<ReturnType> {
|
|
1661
1656
|
fontSize: {
|
|
@@ -1674,6 +1669,16 @@ declare module '@tiptap/core' {
|
|
|
1674
1669
|
}
|
|
1675
1670
|
|
|
1676
1671
|
|
|
1672
|
+
declare module '@tiptap/core' {
|
|
1673
|
+
interface Commands<ReturnType> {
|
|
1674
|
+
lineHeight: {
|
|
1675
|
+
setLineHeight: (lineHeight: string) => ReturnType;
|
|
1676
|
+
unsetLineHeight: () => ReturnType;
|
|
1677
|
+
};
|
|
1678
|
+
}
|
|
1679
|
+
}
|
|
1680
|
+
|
|
1681
|
+
|
|
1677
1682
|
declare module '@tiptap/core' {
|
|
1678
1683
|
interface Commands<ReturnType> {
|
|
1679
1684
|
indent: {
|
|
@@ -1692,9 +1697,27 @@ declare module '@tiptap/core' {
|
|
|
1692
1697
|
|
|
1693
1698
|
declare module '@tiptap/core' {
|
|
1694
1699
|
interface Commands<ReturnType> {
|
|
1695
|
-
|
|
1696
|
-
|
|
1697
|
-
|
|
1700
|
+
imageUpload: {
|
|
1701
|
+
setImageUpload: () => ReturnType;
|
|
1702
|
+
};
|
|
1703
|
+
}
|
|
1704
|
+
}
|
|
1705
|
+
|
|
1706
|
+
|
|
1707
|
+
declare module '@tiptap/core' {
|
|
1708
|
+
interface Commands<ReturnType> {
|
|
1709
|
+
videoUpload: {
|
|
1710
|
+
setVideoUpload: () => ReturnType;
|
|
1711
|
+
};
|
|
1712
|
+
}
|
|
1713
|
+
}
|
|
1714
|
+
|
|
1715
|
+
|
|
1716
|
+
declare module '@tiptap/core' {
|
|
1717
|
+
interface Commands<ReturnType> {
|
|
1718
|
+
tableCellBackground: {
|
|
1719
|
+
setTableCellBackground: (color: string) => ReturnType;
|
|
1720
|
+
unsetTableCellBackground: () => ReturnType;
|
|
1698
1721
|
};
|
|
1699
1722
|
}
|
|
1700
1723
|
}
|
|
@@ -1716,15 +1739,6 @@ declare module '@tiptap/core' {
|
|
|
1716
1739
|
}
|
|
1717
1740
|
|
|
1718
1741
|
|
|
1719
|
-
declare module '@tiptap/core' {
|
|
1720
|
-
interface Commands<ReturnType> {
|
|
1721
|
-
imageUpload: {
|
|
1722
|
-
setImageUpload: () => ReturnType;
|
|
1723
|
-
};
|
|
1724
|
-
}
|
|
1725
|
-
}
|
|
1726
|
-
|
|
1727
|
-
|
|
1728
1742
|
declare module '@tiptap/core' {
|
|
1729
1743
|
interface Commands<ReturnType> {
|
|
1730
1744
|
painter: {
|
|
@@ -1759,15 +1773,6 @@ declare module '@tiptap/core' {
|
|
|
1759
1773
|
}
|
|
1760
1774
|
|
|
1761
1775
|
|
|
1762
|
-
declare module '@tiptap/core' {
|
|
1763
|
-
interface Commands<ReturnType> {
|
|
1764
|
-
videoUpload: {
|
|
1765
|
-
setVideoUpload: () => ReturnType;
|
|
1766
|
-
};
|
|
1767
|
-
}
|
|
1768
|
-
}
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
1776
|
declare module '@tiptap/core' {
|
|
1772
1777
|
interface Commands<ReturnType> {
|
|
1773
1778
|
search: {
|
|
@@ -1782,11 +1787,15 @@ declare module '@tiptap/core' {
|
|
|
1782
1787
|
}
|
|
1783
1788
|
|
|
1784
1789
|
|
|
1790
|
+
declare namespace DropdownMenuShortcut {
|
|
1791
|
+
var displayName: string;
|
|
1792
|
+
}
|
|
1793
|
+
|
|
1794
|
+
|
|
1785
1795
|
declare module '@tiptap/core' {
|
|
1786
1796
|
interface Commands<ReturnType> {
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
unsetTableCellBackground: () => ReturnType;
|
|
1797
|
+
katex: {
|
|
1798
|
+
setKatex: (arg?: IKatexAttrs) => ReturnType;
|
|
1790
1799
|
};
|
|
1791
1800
|
}
|
|
1792
1801
|
}
|
|
@@ -1802,12 +1811,3 @@ declare module '@tiptap/core' {
|
|
|
1802
1811
|
};
|
|
1803
1812
|
}
|
|
1804
1813
|
}
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
declare module '@tiptap/core' {
|
|
1808
|
-
interface Commands<ReturnType> {
|
|
1809
|
-
katex: {
|
|
1810
|
-
setKatex: (arg?: IKatexAttrs) => ReturnType;
|
|
1811
|
-
};
|
|
1812
|
-
}
|
|
1813
|
-
}
|