reactjs-tiptap-editor 0.0.2 → 0.0.4

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.
@@ -0,0 +1,4 @@
1
+ interface IPropsDeleteColumn {
2
+ }
3
+ declare const DeleteColumn: (props: IPropsDeleteColumn) => import("react/jsx-runtime").JSX.Element;
4
+ export default DeleteColumn;
@@ -0,0 +1,4 @@
1
+ interface IPropsDeleteRow {
2
+ }
3
+ declare const DeleteRow: (props: IPropsDeleteRow) => import("react/jsx-runtime").JSX.Element;
4
+ export default DeleteRow;
@@ -0,0 +1,2 @@
1
+ declare const TableBubbleMenu: (props: any) => import("react/jsx-runtime").JSX.Element;
2
+ export default TableBubbleMenu;
@@ -1,6 +1,5 @@
1
- export { TableCell, type TableCellOptions } from './cell';
2
- export type { TableRowOptions } from '@tiptap/extension-table-row';
1
+ export { type TableRowOptions, TableRow } from '@tiptap/extension-table-row';
3
2
  export { Table, type TableOptions } from './table';
3
+ export { TableCell, type TableCellOptions } from '@tiptap/extension-table-cell';
4
+ export { TableHeader, type TableHeaderOptions } from '@tiptap/extension-table-header';
4
5
  export { TableCellBackground, type TableCellBackgroundOptions } from './cell-background';
5
- export { TableHeader, type TableHeaderOptions } from './header';
6
- export { TableRow } from './row';
@@ -1,8 +1,8 @@
1
+ import { TableCellOptions } from '@tiptap/extension-table-cell';
2
+ import { TableHeaderOptions } from '@tiptap/extension-table-header';
1
3
  import { TableRowOptions } from '@tiptap/extension-table-row';
2
4
  import { GeneralOptions } from '../../types';
3
- import { TableCellOptions } from './cell';
4
5
  import { TableCellBackgroundOptions } from './cell-background';
5
- import { TableHeaderOptions } from './header';
6
6
 
7
7
  export interface TableOptions extends GeneralOptions<TableOptions> {
8
8
  HTMLAttributes: Record<string, any>;