@docen/extensions 0.0.8 → 0.0.9

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/dist/types.d.cts CHANGED
@@ -326,9 +326,9 @@ interface TableRowNode extends JSONContent {
326
326
  interface TableCellNode extends JSONContent {
327
327
  type: "tableCell";
328
328
  attrs?: {
329
- colSpan?: number;
330
- rowSpan?: number;
331
- colWidth?: number[] | null;
329
+ colspan?: number;
330
+ rowspan?: number;
331
+ colwidth?: number[] | null;
332
332
  backgroundColor?: string | null;
333
333
  verticalAlign?: "top" | "middle" | "bottom" | null;
334
334
  borderTop?: TableCellBorder | null;
@@ -341,9 +341,9 @@ interface TableCellNode extends JSONContent {
341
341
  interface TableHeaderNode extends JSONContent {
342
342
  type: "tableHeader";
343
343
  attrs?: {
344
- colSpan?: number;
345
- rowSpan?: number;
346
- colWidth?: number[] | null;
344
+ colspan?: number;
345
+ rowspan?: number;
346
+ colwidth?: number[] | null;
347
347
  backgroundColor?: string | null;
348
348
  verticalAlign?: "top" | "middle" | "bottom" | null;
349
349
  borderTop?: TableCellBorder | null;
package/dist/types.d.mts CHANGED
@@ -326,9 +326,9 @@ interface TableRowNode extends JSONContent {
326
326
  interface TableCellNode extends JSONContent {
327
327
  type: "tableCell";
328
328
  attrs?: {
329
- colSpan?: number;
330
- rowSpan?: number;
331
- colWidth?: number[] | null;
329
+ colspan?: number;
330
+ rowspan?: number;
331
+ colwidth?: number[] | null;
332
332
  backgroundColor?: string | null;
333
333
  verticalAlign?: "top" | "middle" | "bottom" | null;
334
334
  borderTop?: TableCellBorder | null;
@@ -341,9 +341,9 @@ interface TableCellNode extends JSONContent {
341
341
  interface TableHeaderNode extends JSONContent {
342
342
  type: "tableHeader";
343
343
  attrs?: {
344
- colSpan?: number;
345
- rowSpan?: number;
346
- colWidth?: number[] | null;
344
+ colspan?: number;
345
+ rowspan?: number;
346
+ colwidth?: number[] | null;
347
347
  backgroundColor?: string | null;
348
348
  verticalAlign?: "top" | "middle" | "bottom" | null;
349
349
  borderTop?: TableCellBorder | null;
package/dist/types.d.ts CHANGED
@@ -326,9 +326,9 @@ interface TableRowNode extends JSONContent {
326
326
  interface TableCellNode extends JSONContent {
327
327
  type: "tableCell";
328
328
  attrs?: {
329
- colSpan?: number;
330
- rowSpan?: number;
331
- colWidth?: number[] | null;
329
+ colspan?: number;
330
+ rowspan?: number;
331
+ colwidth?: number[] | null;
332
332
  backgroundColor?: string | null;
333
333
  verticalAlign?: "top" | "middle" | "bottom" | null;
334
334
  borderTop?: TableCellBorder | null;
@@ -341,9 +341,9 @@ interface TableCellNode extends JSONContent {
341
341
  interface TableHeaderNode extends JSONContent {
342
342
  type: "tableHeader";
343
343
  attrs?: {
344
- colSpan?: number;
345
- rowSpan?: number;
346
- colWidth?: number[] | null;
344
+ colspan?: number;
345
+ rowspan?: number;
346
+ colwidth?: number[] | null;
347
347
  backgroundColor?: string | null;
348
348
  verticalAlign?: "top" | "middle" | "bottom" | null;
349
349
  borderTop?: TableCellBorder | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@docen/extensions",
3
- "version": "0.0.8",
3
+ "version": "0.0.9",
4
4
  "description": "Collection of TipTap extensions with TypeScript type definitions for Docen",
5
5
  "keywords": [
6
6
  "docen",
@@ -48,7 +48,7 @@
48
48
  }
49
49
  },
50
50
  "dependencies": {
51
- "@tiptap/extension-mathematics": "^3.15.3"
51
+ "@tiptap/extension-mathematics": "3.15.3"
52
52
  },
53
53
  "devDependencies": {
54
54
  "@tiptap/core": "3.15.3",
@@ -75,9 +75,6 @@
75
75
  "@tiptap/extension-subscript": "3.15.3",
76
76
  "@tiptap/extension-superscript": "3.15.3",
77
77
  "@tiptap/extension-table": "3.15.3",
78
- "@tiptap/extension-table-cell": "3.15.3",
79
- "@tiptap/extension-table-header": "3.15.3",
80
- "@tiptap/extension-table-row": "3.15.3",
81
78
  "@tiptap/extension-task-item": "3.15.3",
82
79
  "@tiptap/extension-task-list": "3.15.3",
83
80
  "@tiptap/extension-text": "3.15.3",