@meowdown/react 0.13.0 → 0.15.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.
Files changed (2) hide show
  1. package/dist/style.css +4 -2
  2. package/package.json +2 -2
package/dist/style.css CHANGED
@@ -276,7 +276,8 @@
276
276
  white-space: nowrap;
277
277
  user-select: none;
278
278
  border: 1px solid var(--meowdown-border);
279
- background: light-dark(#fff, #18181b);
279
+ background: #fff;
280
+ background: var(--meowdown-autocomplete-bg, light-dark(#fff, #18181b));
280
281
  border-radius: .75rem;
281
282
  flex-direction: column;
282
283
  width: 100%;
@@ -310,7 +311,8 @@
310
311
  }
311
312
 
312
313
  &[data-highlighted] {
313
- background: light-dark(#f4f4f5, #27272a);
314
+ background: #f4f4f5;
315
+ background: var(--meowdown-autocomplete-highlight-bg, light-dark(#f4f4f5, #27272a));
314
316
  }
315
317
 
316
318
  & kbd {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@meowdown/react",
3
3
  "type": "module",
4
- "version": "0.13.0",
4
+ "version": "0.15.0",
5
5
  "license": "MIT",
6
6
  "repository": {
7
7
  "type": "git",
@@ -28,7 +28,7 @@
28
28
  "@prosekit/pm": "^0.1.19-beta.0",
29
29
  "@prosekit/react": "^0.8.0-beta.4",
30
30
  "clsx": "^2.1.1",
31
- "@meowdown/core": "0.13.0"
31
+ "@meowdown/core": "0.15.0"
32
32
  },
33
33
  "peerDependencies": {
34
34
  "react": "^19.0.0",