@magicx-eng/ai-autocomplete-react 0.8.0 → 0.8.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 +1 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -17,6 +17,7 @@ A React/TypeScript SDK that provides a guided AI-powered autocomplete experience
17
17
  - **IME-safe** — composition events are buffered so input text is committed once, after composition ends
18
18
  - **Client-side filtering** — instant substring filtering on every keystroke
19
19
  - **Option overrides** — inject or dynamically generate client-side options per suggestion type
20
+ - **Product strip (opt-in)** — plug in any platform's product search and the dropdown renders a horizontal row of product cards below the options; the SDK owns the UI, your integration owns only `fetch` and `transform`
20
21
  - **Controlled & uncontrolled** — works out of the box or integrates with external state
21
22
  - **Ref forwarding** — imperative `focus()`, `blur()`, `reset()`, and `setMode()` via ref
22
23
  - **Accessible** — ARIA combobox 1.2 pattern with `role="listbox"`, `aria-activedescendant`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@magicx-eng/ai-autocomplete-react",
3
- "version": "0.8.0",
3
+ "version": "0.8.1",
4
4
  "description": "AI Autocomplete React SDK — guided autocomplete with pill-based input and dropdown suggestions",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -29,7 +29,7 @@
29
29
  "react-dom": ">=17.0.0"
30
30
  },
31
31
  "dependencies": {
32
- "@magicx-eng/ai-autocomplete-vanilla": "0.8.0"
32
+ "@magicx-eng/ai-autocomplete-vanilla": "0.9.0"
33
33
  },
34
34
  "devDependencies": {
35
35
  "@figma/code-connect": "^1.4.7",