@blocknote/ariakit 0.16.0 → 0.17.1
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/package.json
CHANGED
|
@@ -2,8 +2,11 @@
|
|
|
2
2
|
"name": "@blocknote/ariakit",
|
|
3
3
|
"homepage": "https://github.com/TypeCellOS/BlockNote",
|
|
4
4
|
"private": false,
|
|
5
|
+
"sideEffects": [
|
|
6
|
+
"*.css"
|
|
7
|
+
],
|
|
5
8
|
"license": "MPL-2.0",
|
|
6
|
-
"version": "0.
|
|
9
|
+
"version": "0.17.1",
|
|
7
10
|
"files": [
|
|
8
11
|
"dist",
|
|
9
12
|
"types",
|
|
@@ -49,8 +52,8 @@
|
|
|
49
52
|
},
|
|
50
53
|
"dependencies": {
|
|
51
54
|
"@ariakit/react": "^0.4.3",
|
|
52
|
-
"@blocknote/core": "^0.
|
|
53
|
-
"@blocknote/react": "^0.
|
|
55
|
+
"@blocknote/core": "^0.17.1",
|
|
56
|
+
"@blocknote/react": "^0.17.1",
|
|
54
57
|
"react": "^18",
|
|
55
58
|
"react-dom": "^18"
|
|
56
59
|
},
|
|
@@ -80,5 +83,5 @@
|
|
|
80
83
|
"access": "public",
|
|
81
84
|
"registry": "https://registry.npmjs.org/"
|
|
82
85
|
},
|
|
83
|
-
"gitHead": "
|
|
86
|
+
"gitHead": "8867e6411d6e698e667b7ac22697bcf76f763937"
|
|
84
87
|
}
|
package/src/index.tsx
CHANGED
|
@@ -11,12 +11,8 @@ import {
|
|
|
11
11
|
} from "@blocknote/react";
|
|
12
12
|
import { ComponentProps } from "react";
|
|
13
13
|
|
|
14
|
-
import { Form } from "./input/Form";
|
|
15
|
-
import {
|
|
16
|
-
import { GridSuggestionMenuEmptyItem } from "./suggestionMenu/gridSuggestionMenu/GridSuggestionMenuEmptyItem";
|
|
17
|
-
import { GridSuggestionMenuItem } from "./suggestionMenu/gridSuggestionMenu/GridSuggestionMenuItem";
|
|
18
|
-
import { GridSuggestionMenuLoader } from "./suggestionMenu/gridSuggestionMenu/GridSuggestionMenuLoader";
|
|
19
|
-
import { TextInput } from "./input/TextInput";
|
|
14
|
+
import { Form } from "./input/Form.js";
|
|
15
|
+
import { TextInput } from "./input/TextInput.js";
|
|
20
16
|
import {
|
|
21
17
|
Menu,
|
|
22
18
|
MenuDivider,
|
|
@@ -24,24 +20,28 @@ import {
|
|
|
24
20
|
MenuItem,
|
|
25
21
|
MenuLabel,
|
|
26
22
|
MenuTrigger,
|
|
27
|
-
} from "./menu/Menu";
|
|
28
|
-
import { Panel } from "./panel/Panel";
|
|
29
|
-
import { PanelButton } from "./panel/PanelButton";
|
|
30
|
-
import { PanelFileInput } from "./panel/PanelFileInput";
|
|
31
|
-
import { PanelTab } from "./panel/PanelTab";
|
|
32
|
-
import { PanelTextInput } from "./panel/PanelTextInput";
|
|
33
|
-
import { Popover, PopoverContent, PopoverTrigger } from "./popover/Popover";
|
|
34
|
-
import { SideMenu } from "./sideMenu/SideMenu";
|
|
35
|
-
import { SideMenuButton } from "./sideMenu/SideMenuButton";
|
|
36
|
-
import {
|
|
37
|
-
import {
|
|
38
|
-
import {
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
43
|
-
import {
|
|
44
|
-
import {
|
|
23
|
+
} from "./menu/Menu.js";
|
|
24
|
+
import { Panel } from "./panel/Panel.js";
|
|
25
|
+
import { PanelButton } from "./panel/PanelButton.js";
|
|
26
|
+
import { PanelFileInput } from "./panel/PanelFileInput.js";
|
|
27
|
+
import { PanelTab } from "./panel/PanelTab.js";
|
|
28
|
+
import { PanelTextInput } from "./panel/PanelTextInput.js";
|
|
29
|
+
import { Popover, PopoverContent, PopoverTrigger } from "./popover/Popover.js";
|
|
30
|
+
import { SideMenu } from "./sideMenu/SideMenu.js";
|
|
31
|
+
import { SideMenuButton } from "./sideMenu/SideMenuButton.js";
|
|
32
|
+
import { GridSuggestionMenu } from "./suggestionMenu/gridSuggestionMenu/GridSuggestionMenu.js";
|
|
33
|
+
import { GridSuggestionMenuEmptyItem } from "./suggestionMenu/gridSuggestionMenu/GridSuggestionMenuEmptyItem.js";
|
|
34
|
+
import { GridSuggestionMenuItem } from "./suggestionMenu/gridSuggestionMenu/GridSuggestionMenuItem.js";
|
|
35
|
+
import { GridSuggestionMenuLoader } from "./suggestionMenu/gridSuggestionMenu/GridSuggestionMenuLoader.js";
|
|
36
|
+
import { SuggestionMenu } from "./suggestionMenu/SuggestionMenu.js";
|
|
37
|
+
import { SuggestionMenuEmptyItem } from "./suggestionMenu/SuggestionMenuEmptyItem.js";
|
|
38
|
+
import { SuggestionMenuItem } from "./suggestionMenu/SuggestionMenuItem.js";
|
|
39
|
+
import { SuggestionMenuLabel } from "./suggestionMenu/SuggestionMenuLabel.js";
|
|
40
|
+
import { SuggestionMenuLoader } from "./suggestionMenu/SuggestionMenuLoader.js";
|
|
41
|
+
import { TableHandle } from "./tableHandle/TableHandle.js";
|
|
42
|
+
import { Toolbar } from "./toolbar/Toolbar.js";
|
|
43
|
+
import { ToolbarButton } from "./toolbar/ToolbarButton.js";
|
|
44
|
+
import { ToolbarSelect } from "./toolbar/ToolbarSelect.js";
|
|
45
45
|
|
|
46
46
|
import "./style.css";
|
|
47
47
|
|