@byline/admin 3.0.0 → 3.0.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.
@@ -20,7 +20,7 @@ export interface SourceLocaleBadgeProps {
20
20
  * NOTE: currently rendered for *every* document so the anchor is visible during
21
21
  * development. The intended end state is to show it only when `locale` differs
22
22
  * from the system's current default content locale (a normal single-default
23
- * install then shows nothing). See docs/DEFAULT-LOCALE-SWITCHING.md (Slice 6).
23
+ * install then shows nothing). See docs/I18N.md.
24
24
  *
25
25
  * Stable override handle: `.byline-source-locale-badge`.
26
26
  */
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@byline/admin",
3
3
  "private": false,
4
4
  "license": "MPL-2.0",
5
- "version": "3.0.0",
5
+ "version": "3.0.1",
6
6
  "engines": {
7
7
  "node": ">=20.9.0"
8
8
  },
@@ -147,10 +147,10 @@
147
147
  "uuid": "^14.0.0",
148
148
  "zod": "^4.4.3",
149
149
  "zod-form-data": "^3.0.1",
150
- "@byline/core": "3.0.0",
151
- "@byline/i18n": "3.0.0",
152
- "@byline/auth": "3.0.0",
153
- "@byline/ui": "3.0.0"
150
+ "@byline/auth": "3.0.1",
151
+ "@byline/core": "3.0.1",
152
+ "@byline/i18n": "3.0.1",
153
+ "@byline/ui": "3.0.1"
154
154
  },
155
155
  "peerDependencies": {
156
156
  "react": "^19.0.0",
@@ -14,7 +14,7 @@ import { reconcileLocaleState } from './available-locales-reconcile.js'
14
14
  * The widget's reconciliation is expressed purely as Checkbox intent +
15
15
  * disabled state — no per-row text. `reconcileLocaleState` is the pure heart
16
16
  * of that mapping; the four cells below are the full truth table from
17
- * docs/AVAILABLE-LOCALES.md.
17
+ * docs/I18N.md.
18
18
  */
19
19
  describe('reconcileLocaleState', () => {
20
20
  it('ledger-complete + advertised → green, enabled (advertised & complete)', () => {
@@ -675,7 +675,7 @@ const FormContent = ({
675
675
  {/* Source-locale anchor indicator removed pending heading-layout work.
676
676
  To re-enable: render `<SourceLocaleBadge locale={sourceLocale} />`
677
677
  here from `initialData.sourceLocale` (mismatch-only is the intended
678
- end state). See docs/DEFAULT-LOCALE-SWITCHING.md (Slice 6). */}
678
+ end state). See docs/I18N.md. */}
679
679
  {headerSlot}
680
680
  </div>
681
681
  <div className={cx('byline-form-status-bar', styles['status-bar'])}>
@@ -27,7 +27,7 @@ export interface SourceLocaleBadgeProps {
27
27
  * NOTE: currently rendered for *every* document so the anchor is visible during
28
28
  * development. The intended end state is to show it only when `locale` differs
29
29
  * from the system's current default content locale (a normal single-default
30
- * install then shows nothing). See docs/DEFAULT-LOCALE-SWITCHING.md (Slice 6).
30
+ * install then shows nothing). See docs/I18N.md.
31
31
  *
32
32
  * Stable override handle: `.byline-source-locale-badge`.
33
33
  */