@blocknote/ariakit 0.41.0 → 0.42.0

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
@@ -11,7 +11,7 @@
11
11
  "directory": "packages/ariakit"
12
12
  },
13
13
  "license": "MPL-2.0",
14
- "version": "0.41.0",
14
+ "version": "0.42.0",
15
15
  "files": [
16
16
  "dist",
17
17
  "types",
@@ -50,20 +50,20 @@
50
50
  },
51
51
  "dependencies": {
52
52
  "@ariakit/react": "^0.4.19",
53
- "@blocknote/core": "0.41.0",
54
- "@blocknote/react": "0.41.0"
53
+ "@blocknote/core": "0.42.0",
54
+ "@blocknote/react": "0.42.0"
55
55
  },
56
56
  "devDependencies": {
57
- "@types/react": "^19.1.0",
58
- "@types/react-dom": "^19.1.0",
59
- "@vitejs/plugin-react": "^4.3.1",
60
- "eslint": "^8.10.0",
61
- "react": "^19.1.0",
62
- "react-dom": "^19.1.0",
63
- "rimraf": "^5.0.5",
64
- "rollup-plugin-webpack-stats": "^0.2.2",
65
- "typescript": "^5.3.3",
66
- "vite": "^5.3.4",
57
+ "@types/react": "^19.2.2",
58
+ "@types/react-dom": "^19.2.2",
59
+ "@vitejs/plugin-react": "^4.7.0",
60
+ "eslint": "^8.57.1",
61
+ "react": "^19.2.0",
62
+ "react-dom": "^19.2.0",
63
+ "rimraf": "^5.0.10",
64
+ "rollup-plugin-webpack-stats": "^0.2.6",
65
+ "typescript": "^5.9.3",
66
+ "vite": "^5.4.20",
67
67
  "vite-plugin-eslint": "^1.8.1",
68
68
  "vite-plugin-externalize-deps": "^0.8.0"
69
69
  },
@@ -58,6 +58,7 @@ export const Comment = forwardRef<
58
58
  actions,
59
59
  children,
60
60
  edited,
61
+ emojiPickerOpen, // Unused
61
62
  ...rest
62
63
  } = props;
63
64
 
package/src/style.css CHANGED
@@ -38,6 +38,10 @@
38
38
  inset 0 1px 1px 1px var(--shadow);
39
39
  }
40
40
 
41
+ .bn-ak-popover {
42
+ z-index: 10000;
43
+ }
44
+
41
45
  .bn-toolbar .bn-ak-popover {
42
46
  gap: 0.5rem;
43
47
  }
@@ -6,4 +6,5 @@ export declare const Comment: import("react").ForwardRefExoticComponent<{
6
6
  edited: boolean;
7
7
  actions?: import("react").ReactNode;
8
8
  showActions?: boolean | "hover";
9
+ emojiPickerOpen?: boolean;
9
10
  } & import("react").RefAttributes<HTMLDivElement>>;