@immediately-run/omnibox 0.2.0 → 0.2.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.
Files changed (2) hide show
  1. package/README.md +7 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -16,8 +16,13 @@ box.
16
16
  sources; the package ranks and orders the app candidates (name > repo >
17
17
  blurb > category) but imports no consumer records. An app-row chip comes
18
18
  back through `renderChip` — chips are site components with site data types.
19
- An `<Omnibox>` with no `hits` is the launch grammar only — the Home app's
20
- shape.
19
+ Doc rows come back through `renderDoc(hit, anchorProps)`: render your own
20
+ in-app link and spread `anchorProps` so the combobox contract (highlight,
21
+ Enter walk) survives. The fallback is a plain `<a href>` whose href is real
22
+ and resolvable — but on-host a plain click navigates the sandboxed frame
23
+ instead of routing the app, so a consumer rendering inside the frame should
24
+ always supply `renderDoc`. An `<Omnibox>` with no `hits` is the launch
25
+ grammar only — the Home app's shape.
21
26
 
22
27
  ## Peer dependencies
23
28
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@immediately-run/omnibox",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "The front door's omnibox: one list-autocomplete combobox that runs a repo by URL or tuple and searches a consumer's app directory and docs (the launch grammar always; the hit sources injected). Shared by landing-page and the Home app so there is one component and one grammar (R3-512, R3-530).",
5
5
  "license": "MIT",
6
6
  "repository": {