@kopexa/extension-table 17.1.10 → 17.1.11
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/{chunk-4JC7NB5Y.mjs → chunk-UALDJ6TN.mjs} +3 -3
- package/dist/extensions/table-handle-plugin.d.mts +1 -1
- package/dist/extensions/table-handle-plugin.d.ts +1 -1
- package/dist/index.mjs +14 -14
- package/dist/lib/table-utils.d.mts +1 -1
- package/dist/lib/table-utils.d.ts +1 -1
- package/dist/ui/table-handle-menu.mjs +2 -2
- package/dist/ui/table-handle.mjs +5 -5
- package/dist/ui/table-selection-overlay.mjs +2 -2
- package/package.json +9 -9
- package/dist/{chunk-LULO6UOC.mjs → chunk-DH44X2KR.mjs} +3 -3
- package/dist/{chunk-2NBDRVYL.mjs → chunk-MUBP3LCU.mjs} +3 -3
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import {
|
|
3
|
-
TableHandleMenu
|
|
4
|
-
} from "./chunk-LULO6UOC.mjs";
|
|
5
2
|
import {
|
|
6
3
|
useTableHandlePositioning
|
|
7
4
|
} from "./chunk-GBTQVIN5.mjs";
|
|
8
5
|
import {
|
|
9
6
|
useTableHandleState
|
|
10
7
|
} from "./chunk-GDEXPEW5.mjs";
|
|
8
|
+
import {
|
|
9
|
+
TableHandleMenu
|
|
10
|
+
} from "./chunk-DH44X2KR.mjs";
|
|
11
11
|
import {
|
|
12
12
|
colDragStart,
|
|
13
13
|
rowDragStart
|
package/dist/index.mjs
CHANGED
|
@@ -1,13 +1,4 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import {
|
|
3
|
-
TableHandle
|
|
4
|
-
} from "./chunk-4JC7NB5Y.mjs";
|
|
5
|
-
import "./chunk-LULO6UOC.mjs";
|
|
6
|
-
import {
|
|
7
|
-
TableSelectionOverlay
|
|
8
|
-
} from "./chunk-2NBDRVYL.mjs";
|
|
9
|
-
import "./chunk-G6GHC2WO.mjs";
|
|
10
|
-
import "./chunk-6FHFDGJO.mjs";
|
|
11
2
|
import {
|
|
12
3
|
TableCellHandleMenu
|
|
13
4
|
} from "./chunk-QI7CA4YV.mjs";
|
|
@@ -16,14 +7,24 @@ import {
|
|
|
16
7
|
TableAlignMenuItems,
|
|
17
8
|
TableAlignSubMenu
|
|
18
9
|
} from "./chunk-VQV757EG.mjs";
|
|
19
|
-
import "./chunk-VIBVRWS4.mjs";
|
|
20
10
|
import "./chunk-KTRZVXJC.mjs";
|
|
21
|
-
import
|
|
22
|
-
|
|
23
|
-
|
|
11
|
+
import {
|
|
12
|
+
TableHandle
|
|
13
|
+
} from "./chunk-UALDJ6TN.mjs";
|
|
24
14
|
import "./chunk-GBTQVIN5.mjs";
|
|
25
15
|
import "./chunk-GDEXPEW5.mjs";
|
|
16
|
+
import "./chunk-DH44X2KR.mjs";
|
|
17
|
+
import "./chunk-G6GHC2WO.mjs";
|
|
18
|
+
import "./chunk-6FHFDGJO.mjs";
|
|
19
|
+
import "./chunk-VIBVRWS4.mjs";
|
|
20
|
+
import "./chunk-ZVPJDJBO.mjs";
|
|
21
|
+
import "./chunk-CPDSPBS6.mjs";
|
|
26
22
|
import "./chunk-CD62W5C3.mjs";
|
|
23
|
+
import "./chunk-JQEUL3LT.mjs";
|
|
24
|
+
import {
|
|
25
|
+
TableSelectionOverlay
|
|
26
|
+
} from "./chunk-MUBP3LCU.mjs";
|
|
27
|
+
import "./chunk-J4VOSZCZ.mjs";
|
|
27
28
|
import {
|
|
28
29
|
messages
|
|
29
30
|
} from "./chunk-CN73TYHV.mjs";
|
|
@@ -41,7 +42,6 @@ import {
|
|
|
41
42
|
Table
|
|
42
43
|
} from "./chunk-JSUVBKCI.mjs";
|
|
43
44
|
import "./chunk-PTX5UYV6.mjs";
|
|
44
|
-
import "./chunk-J4VOSZCZ.mjs";
|
|
45
45
|
import "./chunk-WKV76XOR.mjs";
|
|
46
46
|
export {
|
|
47
47
|
Table,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Node } from '@tiptap/pm/model';
|
|
2
2
|
import { Transaction, EditorState, Command } from '@tiptap/pm/state';
|
|
3
|
-
import {
|
|
3
|
+
import { FindNodeResult, TableMap, Rect } from '@tiptap/pm/tables';
|
|
4
4
|
import { Editor } from '@tiptap/react';
|
|
5
5
|
|
|
6
6
|
type Orientation = "row" | "column";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Node } from '@tiptap/pm/model';
|
|
2
2
|
import { Transaction, EditorState, Command } from '@tiptap/pm/state';
|
|
3
|
-
import {
|
|
3
|
+
import { FindNodeResult, TableMap, Rect } from '@tiptap/pm/tables';
|
|
4
4
|
import { Editor } from '@tiptap/react';
|
|
5
5
|
|
|
6
6
|
type Orientation = "row" | "column";
|
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
import {
|
|
3
3
|
TableActionGroup,
|
|
4
4
|
TableHandleMenu
|
|
5
|
-
} from "../chunk-
|
|
5
|
+
} from "../chunk-DH44X2KR.mjs";
|
|
6
6
|
import "../chunk-G6GHC2WO.mjs";
|
|
7
7
|
import "../chunk-6FHFDGJO.mjs";
|
|
8
8
|
import "../chunk-VIBVRWS4.mjs";
|
|
9
|
-
import "../chunk-JQEUL3LT.mjs";
|
|
10
9
|
import "../chunk-ZVPJDJBO.mjs";
|
|
11
10
|
import "../chunk-CPDSPBS6.mjs";
|
|
12
11
|
import "../chunk-CD62W5C3.mjs";
|
|
12
|
+
import "../chunk-JQEUL3LT.mjs";
|
|
13
13
|
import "../chunk-CN73TYHV.mjs";
|
|
14
14
|
import "../chunk-3SWV7BGP.mjs";
|
|
15
15
|
import "../chunk-GQLZBIWF.mjs";
|
package/dist/ui/table-handle.mjs
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
TableHandle
|
|
4
|
-
} from "../chunk-
|
|
5
|
-
import "../chunk-
|
|
4
|
+
} from "../chunk-UALDJ6TN.mjs";
|
|
5
|
+
import "../chunk-GBTQVIN5.mjs";
|
|
6
|
+
import "../chunk-GDEXPEW5.mjs";
|
|
7
|
+
import "../chunk-DH44X2KR.mjs";
|
|
6
8
|
import "../chunk-G6GHC2WO.mjs";
|
|
7
9
|
import "../chunk-6FHFDGJO.mjs";
|
|
8
10
|
import "../chunk-VIBVRWS4.mjs";
|
|
9
|
-
import "../chunk-JQEUL3LT.mjs";
|
|
10
11
|
import "../chunk-ZVPJDJBO.mjs";
|
|
11
12
|
import "../chunk-CPDSPBS6.mjs";
|
|
12
|
-
import "../chunk-GBTQVIN5.mjs";
|
|
13
|
-
import "../chunk-GDEXPEW5.mjs";
|
|
14
13
|
import "../chunk-CD62W5C3.mjs";
|
|
14
|
+
import "../chunk-JQEUL3LT.mjs";
|
|
15
15
|
import "../chunk-CN73TYHV.mjs";
|
|
16
16
|
import "../chunk-3SWV7BGP.mjs";
|
|
17
17
|
import "../chunk-GQLZBIWF.mjs";
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
"use client";
|
|
3
3
|
import {
|
|
4
4
|
TableSelectionOverlay
|
|
5
|
-
} from "../chunk-
|
|
6
|
-
import "../chunk-5B5XIL2G.mjs";
|
|
5
|
+
} from "../chunk-MUBP3LCU.mjs";
|
|
7
6
|
import "../chunk-J4VOSZCZ.mjs";
|
|
7
|
+
import "../chunk-5B5XIL2G.mjs";
|
|
8
8
|
import "../chunk-WKV76XOR.mjs";
|
|
9
9
|
export {
|
|
10
10
|
TableSelectionOverlay
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kopexa/extension-table",
|
|
3
|
-
"version": "17.1.
|
|
3
|
+
"version": "17.1.11",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"extension-table"
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"motion": ">=12.23.6",
|
|
29
29
|
"react": ">=19.0.0-rc.0",
|
|
30
30
|
"react-dom": ">=19.0.0-rc.0",
|
|
31
|
-
"@kopexa/theme": "17.
|
|
31
|
+
"@kopexa/theme": "17.25.0"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@floating-ui/react": "^0.27.18",
|
|
@@ -36,13 +36,13 @@
|
|
|
36
36
|
"@tiptap/extension-table": "^3.20.0",
|
|
37
37
|
"@tiptap/pm": "^3.20.0",
|
|
38
38
|
"@tiptap/react": "^3.20.0",
|
|
39
|
-
"@kopexa/
|
|
40
|
-
"@kopexa/
|
|
41
|
-
"@kopexa/
|
|
42
|
-
"@kopexa/theme": "17.
|
|
43
|
-
"@kopexa/
|
|
44
|
-
"@kopexa/i18n": "17.
|
|
45
|
-
"@kopexa/
|
|
39
|
+
"@kopexa/dropdown-menu": "17.0.59",
|
|
40
|
+
"@kopexa/editor-utils": "17.2.0",
|
|
41
|
+
"@kopexa/icons": "17.7.24",
|
|
42
|
+
"@kopexa/theme": "17.25.0",
|
|
43
|
+
"@kopexa/react-utils": "17.1.1",
|
|
44
|
+
"@kopexa/i18n": "17.10.0",
|
|
45
|
+
"@kopexa/shared-utils": "17.0.59"
|
|
46
46
|
},
|
|
47
47
|
"clean-package": "../../../clean-package.config.json",
|
|
48
48
|
"module": "dist/index.mjs",
|
|
@@ -8,9 +8,6 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
useTableAddRowColumn
|
|
10
10
|
} from "./chunk-VIBVRWS4.mjs";
|
|
11
|
-
import {
|
|
12
|
-
useTableClearRowColumnContent
|
|
13
|
-
} from "./chunk-JQEUL3LT.mjs";
|
|
14
11
|
import {
|
|
15
12
|
useTableDeleteRowColumn
|
|
16
13
|
} from "./chunk-ZVPJDJBO.mjs";
|
|
@@ -20,6 +17,9 @@ import {
|
|
|
20
17
|
import {
|
|
21
18
|
useTableHeaderRowColumn
|
|
22
19
|
} from "./chunk-CD62W5C3.mjs";
|
|
20
|
+
import {
|
|
21
|
+
useTableClearRowColumnContent
|
|
22
|
+
} from "./chunk-JQEUL3LT.mjs";
|
|
23
23
|
import {
|
|
24
24
|
messages
|
|
25
25
|
} from "./chunk-CN73TYHV.mjs";
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
"use client";
|
|
2
|
+
import {
|
|
3
|
+
useResizeOverlay
|
|
4
|
+
} from "./chunk-J4VOSZCZ.mjs";
|
|
2
5
|
import {
|
|
3
6
|
domCellAround,
|
|
4
7
|
getTable,
|
|
5
8
|
rectEq
|
|
6
9
|
} from "./chunk-5B5XIL2G.mjs";
|
|
7
|
-
import {
|
|
8
|
-
useResizeOverlay
|
|
9
|
-
} from "./chunk-J4VOSZCZ.mjs";
|
|
10
10
|
|
|
11
11
|
// src/ui/table-selection-overlay.tsx
|
|
12
12
|
import { FloatingPortal, useFloating } from "@floating-ui/react";
|