managarten/packages/feedback/src
Till JS ab24db36dd fix(packages): cross-package broken imports + missing exports
Five unrelated packages each had a few imports pointing at the wrong
file or missing from their public surface. Grouped because none of
the individual fixes warrants its own commit and they all unblock
the same downstream consumer (apps/mana/apps/web type-check).

packages/help
  - HelpPage.svelte: `'../types.js'` and `'./content'` for
    HelpPageProps/HelpSection/SearchResult — neither path exists.
    Real homes are `../ui-types` (props) and `../search-types`
    (search shapes). Fix the imports.
  - HelpSearch.svelte: same `'../content'` typo for SearchResult →
    `'../search-types'`.
  - translations.ts: `'./types.js'` for HelpPageTranslations →
    `'./ui-types'`.
  - ui-types.ts: was importing SearchResult from `'./content'` but
    that module only exports content shapes. Split into two imports
    so HelpContent stays from content.ts and SearchResult comes from
    search-types.ts.

packages/feedback
  - FeedbackPage.svelte: imported `Feedback` and `CreateFeedbackInput`
    from `'./createFeedbackService'` but the service module only
    exports the service factory. Real homes are `'./feedback'`
    (Feedback) and `'./api'` (CreateFeedbackInput).
  - FeedbackForm.svelte: same `'./feedback'` typo for
    CreateFeedbackInput → `'./api'`.

packages/subscriptions
  - UsageCard / CostCard / pages/SubscriptionPage: all imported
    UsageData / CostItem from `'./plans'` but those types live in
    `'./usage'`. SubscriptionPage additionally had a relative-path
    bug — it's at `src/pages/`, not `src/`, so `./plans` resolved
    to `pages/plans` (nonexistent). Now imports `'../plans'` for
    plan types and `'../usage'` for usage/cost types.

packages/shared-ui
  - index.ts: re-exports the QuickInputItem family from
    `./quick-input` but had forgotten `HighlightPattern`. Added.
    Apps that build their own InputBar pattern config (e.g.
    mana/web/src/lib/quick-input/types.ts) need it as a public type.
  - PillNavigation.svelte: imported `SpotlightAction` and
    `ContentSearcher` from `./GlobalSpotlight.svelte` (a Svelte
    component file), which only re-exports the default. Both types
    live in `./types`. Move them to the existing types-import
    block; the GlobalSpotlight import becomes a plain default.

packages/shared-auth-ui
  - stores/createAuthStore.svelte.ts: imported AuthServiceAdapter /
    AuthResult / BaseUser from `'./types'` (nonexistent — the file
    is `'./store-types'`).

Net: -23 type errors. Zero behavior change.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-09 20:23:34 +02:00
..
api.ts refactor(packages): consolidate 3 feedback packages into @manacore/feedback 2026-03-28 16:27:11 +01:00
createFeedbackService.ts feat: rename ManaCore to Mana across entire codebase 2026-04-05 20:00:13 +02:00
feedback.ts refactor(packages): consolidate 3 feedback packages into @manacore/feedback 2026-03-28 16:27:11 +01:00
FeedbackCard.svelte refactor(packages): consolidate 3 feedback packages into @manacore/feedback 2026-03-28 16:27:11 +01:00
FeedbackForm.svelte fix(packages): cross-package broken imports + missing exports 2026-04-09 20:23:34 +02:00
FeedbackList.svelte refactor(packages): consolidate 3 feedback packages into @manacore/feedback 2026-03-28 16:27:11 +01:00
FeedbackPage.svelte fix(packages): cross-package broken imports + missing exports 2026-04-09 20:23:34 +02:00
index.ts feat: rename ManaCore to Mana across entire codebase 2026-04-05 20:00:13 +02:00
StatusBadge.svelte refactor(packages): consolidate 3 feedback packages into @manacore/feedback 2026-03-28 16:27:11 +01:00
types.ts chore: commit remaining changes from recent sessions 2026-03-28 17:54:51 +01:00
VoteButton.svelte refactor(packages): consolidate 3 feedback packages into @manacore/feedback 2026-03-28 16:27:11 +01:00