@byline/ui 3.14.0 → 3.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.
@@ -464,12 +464,12 @@
464
464
  color: var(--text);
465
465
  }
466
466
 
467
- ::selection {
467
+ ::selection, mark {
468
468
  background-color: var(--theme-600);
469
469
  color: #fff;
470
470
  }
471
471
 
472
- .dark ::selection, [data-theme="dark"] ::selection {
472
+ .dark ::selection, .dark mark, [data-theme="dark"] ::selection {
473
473
  background-color: var(--theme-200);
474
474
  color: var(--gray-900);
475
475
  }
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "private": false,
4
4
  "type": "module",
5
5
  "license": "MPL-2.0",
6
- "version": "3.14.0",
6
+ "version": "3.15.0",
7
7
  "engines": {
8
8
  "node": ">=20.9.0"
9
9
  },
@@ -62,7 +62,7 @@
62
62
  "npm-run-all": "^4.1.5",
63
63
  "react-day-picker": "^10.0.1",
64
64
  "zod": "^4.4.3",
65
- "@byline/core": "3.14.0"
65
+ "@byline/core": "3.15.0"
66
66
  },
67
67
  "peerDependencies": {
68
68
  "react": "^19.0.0",
@@ -29,13 +29,15 @@
29
29
  }
30
30
 
31
31
  /* Default (light mode) */
32
- ::selection {
32
+ ::selection,
33
+ mark {
33
34
  background-color: var(--theme-600);
34
35
  color: white;
35
36
  }
36
37
 
37
38
  /* Dark mode — .dark/[data-theme="dark"] is typically on <html>, outside scope */
38
39
  .dark ::selection,
40
+ .dark mark,
39
41
  [data-theme="dark"] ::selection {
40
42
  background-color: var(--theme-200);
41
43
  color: var(--gray-900);