@mcp-native/react-native 0.6.0 → 0.8.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.
- package/README.md +77 -44
- package/dist/component-adapters.d.ts +201 -3
- package/dist/component-adapters.d.ts.map +1 -1
- package/dist/component-adapters.js +143 -0
- package/dist/component-adapters.js.map +1 -1
- package/dist/index.d.ts +40 -8
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +721 -24
- package/dist/index.js.map +1 -1
- package/dist/v1.d.ts +65 -0
- package/dist/v1.d.ts.map +1 -1
- package/dist/v1.js +876 -12
- package/dist/v1.js.map +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
|
|
17
17
|
`@mcp-native/react-native` converts a surface already validated by `@mcp-native/a2ui` into a trusted render plan and mounts it with components supplied by the host application. Servers provide data and declared actions—not JavaScript modules, component implementations, or arbitrary component names.
|
|
18
18
|
|
|
19
|
-
The renderer is an internal platform layer, not proof of complete A2UI v1.0 conformance. The custom `0.1` surface remains available only through deprecated migration APIs, while the v1.0 adapter converts the
|
|
19
|
+
The renderer is an internal platform layer, not proof of complete A2UI v1.0 conformance. The custom `0.1` surface remains available only through deprecated migration APIs, while the v1.0 adapter converts the complete pinned basic catalog, including bounded dynamic lists and policy-gated media, into the same host-owned `NativeElement` boundary. Exactly negotiated local host extensions use a separate closed registration boundary. See the [feature-scoped conformance profile](https://github.com/pablospaniard/mcp-native/blob/main/docs/a2ui-v1-conformance.md).
|
|
20
20
|
|
|
21
21
|
## Install
|
|
22
22
|
|
|
@@ -24,7 +24,7 @@ The renderer is an internal platform layer, not proof of complete A2UI v1.0 conf
|
|
|
24
24
|
npm install @mcp-native/react-native react react-native
|
|
25
25
|
```
|
|
26
26
|
|
|
27
|
-
`@mcp-native/a2ui` and `@mcp-native/core` are installed as dependencies. React is a peer dependency. React Native is an optional peer because the renderer does not import it or choose a platform implementation; a native host supplies its locally bundled components.
|
|
27
|
+
`@mcp-native/a2ui` and `@mcp-native/core` are installed as dependencies. React is a peer dependency. React Native `>=0.86.0 <1` is an optional peer because the renderer does not import it or choose a platform implementation; a native host supplies its locally bundled components.
|
|
28
28
|
|
|
29
29
|
## Quick start
|
|
30
30
|
|
|
@@ -101,7 +101,20 @@ const surface = store.get("profile");
|
|
|
101
101
|
const plan = surface && createA2uiV1NativeRenderPlan(surface, policy);
|
|
102
102
|
```
|
|
103
103
|
|
|
104
|
-
The adapter maps `Row`, `Column`, static or dynamic `List`, and `Card` to `View`; `Text` to `Text`; `Button` with a `Text` child to `Button`; and `TextField` to `TextInput`. Dynamic lists expand one validated template component per bound array item and remain inside the 1,024-node plan limit. The adapter resolves absolute and item-relative JSON Pointer values
|
|
104
|
+
The adapter maps `Row`, `Column`, static or dynamic `List`, and `Card` to `View`; `Text` to `Text`; `Button` with a `Text` child to `Button`; and `TextField` to `TextInput`. Optional host slots implement `Image`, `Icon`, `Divider`, `CheckBox`, `ChoicePicker`, `Slider`, `DateTimeInput`, `Tabs`, and `Modal`. Dynamic lists expand one validated template component per bound array item and remain inside the 1,024-node plan limit. The adapter resolves absolute and item-relative JSON Pointer values; translates relative typed bindings into absolute renderer-local pointers; evaluates bounded formatting, boolean, validation, and `@index` functions; maps supported layout and variants to owned props; and preserves event context and explicit accessibility fields. At the mounted boundary, components receive closed roles and state, hidden controls are excluded, and text scaling stays enabled. Supported checks expose `invalid`/`validationMessages`; invalid buttons cannot resolve or dispatch an event or local URL action. Main-axis `stretch` and negative weight, which React Native flex layout cannot represent faithfully, fail closed.
|
|
105
|
+
|
|
106
|
+
The complete catalog is exactly `AudioPlayer`, `Button`, `Card`, `CheckBox`, `ChoicePicker`, `Column`, `DateTimeInput`, `Divider`, `Icon`, `Image`, `List`, `Modal`, `Row`, `Slider`, `Tabs`, `Text`, `TextField`, and `Video`. Use `getA2uiV1NativeSupportedComponentNames(catalog, { imagePolicy, mediaPolicy })` when building host capability metadata: the four base primitives imply the seven structural/text/input names, each optional slot adds only its matching A2UI name, `Image` additionally requires the image policy, and both media slots require the media policy. A missing slot or required policy fails closed before mounting.
|
|
107
|
+
|
|
108
|
+
`Video` and `AudioPlayer` receive only a canonical URL, explicitly selected semantic/accessibility
|
|
109
|
+
fields, and a complete host grant for origins, redirects, MIME types, bytes, autoplay, background
|
|
110
|
+
playback, external routes, and activation. The installed player must enforce that grant. Expanded
|
|
111
|
+
plans allow at most 16 media instances and 2 GiB of total granted transfer bytes. Video posters use
|
|
112
|
+
the separate image policy.
|
|
113
|
+
|
|
114
|
+
Namespaced local components use `createNativeHostExtensionRegistration` plus a negotiated opaque
|
|
115
|
+
registry and an exact `hostExtensionPolicy` grant. Advertise their catalog IDs with
|
|
116
|
+
`getA2uiV1NativeSupportedHostExtensionCatalogIds` only after the local registration and policy are
|
|
117
|
+
installed. See the [media and extension guide](../../docs/media-and-host-extensions.md).
|
|
105
118
|
|
|
106
119
|
These mappings have automated host-boundary coverage. The [Expo Go integration PoC
|
|
107
120
|
policy](../../docs/native-accessibility-testing.md) defines the shared surface and the independent
|
|
@@ -109,7 +122,9 @@ app-per-library approach for platform and component-library validation. The [aut
|
|
|
109
122
|
repeatable Node.js render-plan budgets and fixed-seed generated-input coverage.
|
|
110
123
|
|
|
111
124
|
For release/platform testing, `npm run native:host:prepare` generates an official temporary React
|
|
112
|
-
Native
|
|
125
|
+
Native host at the package's exact tested boundaries: current latest `0.87.1` and declared minimum
|
|
126
|
+
`0.86.0`. Each host installs local package tarballs and the pinned accessibility,
|
|
127
|
+
complete-catalog, media, and Codegen/Fabric extension fixtures.
|
|
113
128
|
The [Expo Go integration PoC policy](../../docs/native-accessibility-testing.md) documents the
|
|
114
129
|
non-blocking app-level compatibility work. Generated hosts remain automated package fixtures and do
|
|
115
130
|
not establish support for a component library.
|
|
@@ -152,7 +167,7 @@ const components: NativeComponentCatalog = {
|
|
|
152
167
|
};
|
|
153
168
|
```
|
|
154
169
|
|
|
155
|
-
`createNativeViewAdapter`, `createNativeTextAdapter`, and `
|
|
170
|
+
`createNativeViewAdapter`, `createNativeTextAdapter`, `createNativeTextInputAdapter`, `createNativeImageAdapter`, `createNativeIconAdapter`, `createNativeDividerAdapter`, `createNativeCheckBoxAdapter`, `createNativeChoicePickerAdapter`, `createNativeSliderAdapter`, `createNativeDateTimeInputAdapter`, `createNativeTabsAdapter`, and `createNativeModalAdapter` provide the same typed boundary for the other semantics. This supports wrappers around libraries such as Expo UI or Gluestack without coupling MCP Native to them. These helpers do not create new wire-level components. Mapper functions and target components are trusted application code; server input never selects an import, mapper, or unchecked target prop.
|
|
156
171
|
|
|
157
172
|
For richer local presentation, provide optional closed variant slots alongside the base primitives:
|
|
158
173
|
|
|
@@ -172,13 +187,14 @@ const components: NativeComponentCatalog = {
|
|
|
172
187
|
number: NumericInput,
|
|
173
188
|
obscured: PasswordInput,
|
|
174
189
|
},
|
|
190
|
+
Image: { avatar: AvatarImage, mediumFeature: FeatureImage },
|
|
191
|
+
ChoicePicker: { multipleSelection: MultiSelect, mutuallyExclusive: RadioSelect },
|
|
175
192
|
},
|
|
176
193
|
};
|
|
177
194
|
```
|
|
178
195
|
|
|
179
196
|
Each override receives the same explicitly selected primitive props as its base component. Missing
|
|
180
|
-
entries fall back to
|
|
181
|
-
defaults (`body`, `default`, and `shortText`). The renderer consumes structural and style hints while
|
|
197
|
+
entries fall back to their base component; omitted A2UI hints select their pinned defaults. The renderer consumes structural and style hints while
|
|
182
198
|
choosing a local component and never forwards `variant`, a server-provided style object, or an
|
|
183
199
|
arbitrary native prop. Hosts can combine variant slots with the typed adapter helpers when a design
|
|
184
200
|
system uses a different prop API. Variant slots apply only to `A2uiV1NativeSurface`; the custom `0.1`
|
|
@@ -186,7 +202,7 @@ system uses a different prop API. Variant slots apply only to `A2uiV1NativeSurfa
|
|
|
186
202
|
|
|
187
203
|
Create adapter components and the catalog at module scope, as above, or memoize them with stable dependencies. Each factory call intentionally creates a new React component type; calling one during every host render would remount that catalog entry and discard its component-local state. Generated adapters include descriptive React DevTools display names.
|
|
188
204
|
|
|
189
|
-
Use `A2uiV1NativeSurface` to mount
|
|
205
|
+
Use `A2uiV1NativeSurface` to mount the installed subset with typed renderer-local state and official action envelopes:
|
|
190
206
|
|
|
191
207
|
```tsx
|
|
192
208
|
import { A2uiV1NativeSurface } from "@mcp-native/react-native";
|
|
@@ -211,48 +227,65 @@ import { Linking } from "react-native";
|
|
|
211
227
|
/>;
|
|
212
228
|
```
|
|
213
229
|
|
|
214
|
-
Bound `TextField` changes update an owned local data model
|
|
230
|
+
Bound `TextField`, `CheckBox`, `ChoicePicker`, `Slider`, and `DateTimeInput` changes update an owned local data model with their exact string, boolean, string-array, number, or date/time-string type and rerender dependent output immediately; they do not call the agent on every edit. Equivalent fresh store snapshots preserve those edits, while accepted agent data-model updates reset them. Repeated template buttons retain a renderer-only instance key, so pressing one resolves its user message, supported renderer functions, `@index`, and context again against the correct item in the latest local model while the official wire `sourceComponentId` remains the catalog component ID. The action is timestamped, reconstructed as finite JSON, and validated against the pinned official renderer-to-agent action schema. The callback receives the local data model only when the surface explicitly sets `sendDataModel: true`; otherwise its second argument is omitted. The host callback owns transport delivery and permission or consent boundaries.
|
|
231
|
+
|
|
232
|
+
`Image` additionally requires `imagePolicy`. During render-plan construction, the synchronous callback receives an HTTP(S) URL after canonicalization and must return `false` or an exact grant containing allowed redirect origins, maximum redirects, transfer bytes, decoded width, height and pixels, plus `default` or `no-store` cache mode. The renderer validates and freezes that grant, then passes it to the installed image component as `resourcePolicy`. The image component must enforce every field before and during loading; a permissive platform image primitive is not sufficient merely because it accepts a URI. Credentials, non-HTTP(S) schemes, malformed origins, oversized URLs, invalid grants, and denied requests fail closed. One expanded plan permits at most 64 images, 100 MiB of total granted transfer bytes, and 268,435,456 total granted decoded pixels. The image-count check runs before the host policy, preventing a large component graph from amplifying authorization callbacks. Event and `openUrl` reconstruction revalidates server-controlled image URLs but does not invoke image authorization again.
|
|
233
|
+
|
|
234
|
+
`Icon` accepts only the exported `A2UI_V1_NATIVE_ICON_NAMES` semantic set and requires a host-owned mapping. SVG paths, module or font names, arbitrary glyphs, and platform symbols from the server are rejected. `Tabs` owns only its selected index. `Modal` owns open/closed state and requires a `Button` trigger; activating it opens local content and still resolves the declared Button action. The installed modal owns focus entry/trapping, escape or platform-back dismissal through `onRequestClose`, and restoration to its trigger. Dismissal emits no agent action.
|
|
215
235
|
|
|
216
236
|
`openUrl` is a local Button action, not an agent event. The host must allow the function name in the catalog policy and provide both `openUrlPolicy` and `onOpenUrl`. The adapter re-resolves the URL against current local state during the originating press, canonicalizes it, rejects non-HTTP(S), relative, credential-bearing, whitespace-containing, control-containing, Unicode-format-containing, or oversized values, and invokes the opener only when the synchronous policy returns exactly `true`. Invalid initial server values reject the surface; temporary invalid renderer-local text edits instead disable the affected Button until the value becomes valid, and strict resolution runs again before an enabled press can reach host policy. No URL handler is imported or called by this package. Each URL is capped at 8,192 UTF-16 code units and one expanded pass is capped at 1,048,576 URL code units.
|
|
217
237
|
|
|
218
|
-
Renderer functions other than `formatString`, `formatNumber`, `formatCurrency`, `formatDate`, `pluralize`, `required`, `regex`, `length`, `numeric`, `email`, `and`, `or`, `not`, template-scoped `@index`, and local Button action `openUrl`, nested inline catalogs,
|
|
238
|
+
Renderer functions other than `formatString`, `formatNumber`, `formatCurrency`, `formatDate`, `pluralize`, `required`, `regex`, `length`, `numeric`, `email`, `and`, `or`, `not`, template-scoped `@index`, and local Button action `openUrl`, nested inline catalogs, unnegotiated extensions, and unknown components fail closed. Number and currency formatting uses `Intl.NumberFormat`, date formatting uses `Intl.DateTimeFormat`, and cardinal plural selection uses `Intl.PluralRules` with the required `other` fallback. `required` follows the pinned reference behavior for null, empty strings, and empty arrays. `length` and `numeric` use inclusive, ordered bounds, and `email` uses the pinned basic check with a 320-code-unit input cap. Agent-supplied `regex` is limited to 256 UTF-16 code units, a 4,096-code-unit input, repeats no larger than 4,096, no groups, alternation, backreferences, or Unicode property escapes, and at most one variable repeat; inputs over the cap fail the check, while unsupported or malformed patterns reject the surface. Expanded plans evaluate at most 10,000 renderer checks per pass. Each combined validation accessibility output is capped at 65,536 UTF-16 code units before construction, with at most 1,048,576 such output code units across one expanded pass. `formatDate` accepts finite Unix seconds or milliseconds, their numeric string forms, RFC 3339 timestamps, and strict `yyyy-MM-dd` dates. Absolute numeric magnitudes greater than `10,000,000,000` are milliseconds; all others are seconds. It supports the pinned catalog's `yy`, `yyyy`, `M`, `MM`, `MMM`, `MMMM`, `d`, `dd`, `E`, `EEEE`, `h`, `hh`, `H`, `HH`, `mm`, `ss`, and `a` token subset plus quoted literals; `h` and `hh` require `a`, other pattern letters fail closed, and one pattern may contain at most 128 tokens. The host may supply one validated, runtime-supported BCP 47 `locale` to the mounted surface, render-plan options, event-resolution options, and URL-resolution options, or omit it to use the runtime locale. A date-only `yyyy-MM-dd` value is a calendar date interpreted at midnight in the runtime time zone. An RFC 3339 value is an instant whose declared offset is applied before it is formatted in that runtime time zone. Agent-controlled decimal precision is restricted to an integer from 0 through 100, currency must appear in ISO 4217 List One published 2026-01-01, dynamic values resolve with strict types, formatter construction failures are controlled parse errors, and formatter caches live only for one bounded render, event-resolution, or URL-resolution pass. Expanded plans are capped at 1,024 nodes, 10,000 interpolations, and 1,048,576 formatted UTF-16 code units so repeated references or large bound arrays cannot amplify a small component graph into unbounded work; each formatted result also retains the shared 65,536-code-unit string limit.
|
|
219
239
|
|
|
220
240
|
## Public API
|
|
221
241
|
|
|
222
|
-
| Export
|
|
223
|
-
|
|
|
224
|
-
| `McpNativeSurface`
|
|
225
|
-
| `A2uiV1NativeSurface`
|
|
226
|
-
| `useMcpNativeActionDispatcher`
|
|
227
|
-
| `useNativeRenderPlan`
|
|
228
|
-
| `createNativeRenderPlan`
|
|
229
|
-
| `createA2uiV1NativeRenderPlan`
|
|
230
|
-
| `resolveA2uiV1NativeEvent`
|
|
231
|
-
| `resolveA2uiV1NativeOpenUrl`
|
|
232
|
-
| `A2UI_V1_NATIVE_COMPONENT_NAMES`
|
|
233
|
-
| `
|
|
234
|
-
| `
|
|
235
|
-
| `
|
|
236
|
-
| `
|
|
237
|
-
| `
|
|
238
|
-
| `
|
|
239
|
-
| `
|
|
240
|
-
| `
|
|
241
|
-
| `
|
|
242
|
-
| `
|
|
243
|
-
| `
|
|
244
|
-
| `
|
|
245
|
-
| `
|
|
246
|
-
| `
|
|
247
|
-
| `
|
|
248
|
-
| `
|
|
249
|
-
| `
|
|
250
|
-
| `
|
|
251
|
-
| `
|
|
252
|
-
| `
|
|
253
|
-
| `
|
|
254
|
-
|
|
255
|
-
|
|
242
|
+
| Export | Purpose |
|
|
243
|
+
| ------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- |
|
|
244
|
+
| `McpNativeSurface` | Mounts a validated surface using the host's component catalog. |
|
|
245
|
+
| `A2uiV1NativeSurface` | Mounts the supported v1 subset with local bindings and official action-envelope callbacks. |
|
|
246
|
+
| `useMcpNativeActionDispatcher` | Adapts asynchronous runtime dispatch into a stable event callback with required error handling. |
|
|
247
|
+
| `useNativeRenderPlan` | Memoizes a trusted render plan for a validated surface identity. |
|
|
248
|
+
| `createNativeRenderPlan` | Converts a validated `A2uiSurface` into a `NativeElement` tree. |
|
|
249
|
+
| `createA2uiV1NativeRenderPlan` | Revalidates and adapts the supported v1 subset into a trusted `NativeElement` tree. |
|
|
250
|
+
| `resolveA2uiV1NativeEvent` | Revalidates and resolves one reachable static or template-instance event against the latest local model. |
|
|
251
|
+
| `resolveA2uiV1NativeOpenUrl` | Revalidates and resolves one reachable HTTP(S) URL action against the latest local model. |
|
|
252
|
+
| `A2UI_V1_NATIVE_COMPONENT_NAMES` | Exact basic-catalog component names implemented by the current native adapter. |
|
|
253
|
+
| `getA2uiV1NativeSupportedComponentNames` | Exact advertisable intersection derived from installed and policy-ready basic-catalog slots. |
|
|
254
|
+
| `getA2uiV1NativeSupportedHostExtensionCatalogIds` | Exact extension catalogs backed by an opaque registry, local registration, and policy. |
|
|
255
|
+
| `A2UI_V1_NATIVE_ICON_NAMES` | Pinned semantic names accepted by the native icon boundary. |
|
|
256
|
+
| `A2UI_V1_NATIVE_MAX_RENDER_NODES` | Bound on expanded v1 render-plan nodes. |
|
|
257
|
+
| `A2UI_V1_NATIVE_MAX_OPEN_URL_LENGTH` | Per-action bound on canonical HTTP(S) URL length. |
|
|
258
|
+
| `A2UI_V1_NATIVE_MAX_IMAGE_URL_LENGTH` | Per-image bound on canonical HTTP(S) URL length. |
|
|
259
|
+
| `A2UI_V1_NATIVE_MAX_IMAGES` | Surface-wide bound on reachable expanded image instances. |
|
|
260
|
+
| `A2UI_V1_NATIVE_MAX_TOTAL_IMAGE_BYTES` | Surface-wide bound on the sum of granted image transfer-byte budgets. |
|
|
261
|
+
| `A2UI_V1_NATIVE_MAX_TOTAL_IMAGE_PIXELS` | Surface-wide bound on the sum of granted decoded-pixel budgets. |
|
|
262
|
+
| `A2UI_V1_NATIVE_MAX_MEDIA` | Surface-wide bound on reachable expanded media instances. |
|
|
263
|
+
| `A2UI_V1_NATIVE_MAX_TOTAL_MEDIA_BYTES` | Surface-wide bound on the sum of granted media transfer-byte budgets. |
|
|
264
|
+
| `A2uiV1NativeEventDescriptor` | Resolved trusted-plan event data used by mounted dispatch or custom hosts. |
|
|
265
|
+
| `A2uiV1NativeOpenUrlDescriptor` | Canonical URL plus surface, component, and optional template-instance identity. |
|
|
266
|
+
| `A2uiV1NativeRenderPlanOptions` | Optional local model/locale plus required-when-used image, media, and extension policies. |
|
|
267
|
+
| `A2uiV1NativeEventResolutionOptions` | Optional template instance key and matching host-owned BCP 47 locale. |
|
|
268
|
+
| `A2uiV1NativeOpenUrlResolutionOptions` | Optional template instance key and matching host-owned BCP 47 locale for URL resolution. |
|
|
269
|
+
| `A2uiV1NativeActionHandler` | Host callback receiving the validated action envelope and, when opted in, the local data model. |
|
|
270
|
+
| `A2uiV1NativeOpenUrlPolicy` | Synchronous host predicate authorizing one canonical URL during its Button press. |
|
|
271
|
+
| `A2uiV1NativeOpenUrlHandler` | Host-owned callback that opens an authorized URL through a platform API. |
|
|
272
|
+
| `A2uiV1NativeImagePolicy` / `Grant` | Deny-by-default image authorization callback and exact resource budgets. |
|
|
273
|
+
| `A2uiV1NativeMediaPolicy` / `Grant` | Deny-by-default media authorization callback and exact resource/playback budgets. |
|
|
274
|
+
| `A2uiV1NativeHostExtensionPolicy` | Exact resource/permission grant for one validated local extension instance. |
|
|
275
|
+
| `createNativeHostExtensionRegistration` | Opaque binding from one parsed local manifest to one locally imported component and prop mapper. |
|
|
276
|
+
| `NativeComponentCatalog` | Four required base primitives, optional closed basic-catalog slots, and opaque local extension registrations. |
|
|
277
|
+
| `NativeComponentVariants` | Optional overrides for supported structure and pinned style hints, with base fallbacks. |
|
|
278
|
+
| `Native*Variant` types | Closed view, text, button, text-input, image, and choice-picker variant keys. |
|
|
279
|
+
| `NativeAccessibilityRole` | Renderer-derived closed role union for supported semantics. |
|
|
280
|
+
| `NativeAccessibilityState` | Renderer-derived checked, disabled, expanded, and selected state subset. |
|
|
281
|
+
| `createNative*Adapter` helpers | Typed mappings from trusted semantic props into locally bundled component-library APIs. |
|
|
282
|
+
| `NativeComponentPropMapper` | Generic mapper type used by all host component adapter helpers. |
|
|
283
|
+
| `NativeActionHandler` | Synchronous handler for a validated declared action. |
|
|
284
|
+
| `NativeBindingChangeHandler` | Handler receiving a validated binding name and the next text value. |
|
|
285
|
+
| `McpNativeActionDispatcherOptions` | Required action error callback and optional result callback. |
|
|
286
|
+
| `NativeElement` / `NativeComponentName` | Serializable trusted-plan node and its fixed component-name union. |
|
|
287
|
+
|
|
288
|
+
## Legacy `0.1` mappings
|
|
256
289
|
|
|
257
290
|
| Surface node | Native component | Host props and event behavior |
|
|
258
291
|
| ------------ | ---------------- | ----------------------------------------------------------------------------------------- |
|
|
@@ -1,7 +1,12 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
1
|
+
import type { A2uiV1HostExtensionManifest } from "@mcp-native/a2ui";
|
|
2
|
+
import type { JsonObject } from "@mcp-native/core";
|
|
3
|
+
import { type ComponentType, type ReactElement, type ReactNode } from "react";
|
|
4
|
+
export type NativeAccessibilityRole = "adjustable" | "button" | "checkbox" | "image" | "radio" | "tab" | "text";
|
|
3
5
|
export interface NativeAccessibilityState {
|
|
4
|
-
readonly
|
|
6
|
+
readonly checked?: boolean;
|
|
7
|
+
readonly disabled?: boolean;
|
|
8
|
+
readonly expanded?: boolean;
|
|
9
|
+
readonly selected?: boolean;
|
|
5
10
|
}
|
|
6
11
|
export interface NativeAccessibilityProps {
|
|
7
12
|
readonly accessible?: boolean;
|
|
@@ -50,6 +55,137 @@ export interface NativeTextInputComponentProps extends NativeAccessibilityProps
|
|
|
50
55
|
readonly validationMessages?: readonly string[];
|
|
51
56
|
readonly value?: string;
|
|
52
57
|
}
|
|
58
|
+
export type NativeImageFit = "contain" | "cover" | "fill" | "none" | "scaleDown";
|
|
59
|
+
export type NativeImageVariant = "avatar" | "header" | "icon" | "largeFeature" | "mediumFeature" | "smallFeature";
|
|
60
|
+
export interface NativeImageResourcePolicy {
|
|
61
|
+
readonly allowedRedirectOrigins: readonly string[];
|
|
62
|
+
readonly cacheMode: "default" | "no-store";
|
|
63
|
+
readonly maximumBytes: number;
|
|
64
|
+
readonly maximumDecodedHeight: number;
|
|
65
|
+
readonly maximumDecodedPixels: number;
|
|
66
|
+
readonly maximumDecodedWidth: number;
|
|
67
|
+
readonly maximumRedirects: number;
|
|
68
|
+
}
|
|
69
|
+
export interface NativeImageComponentProps extends NativeAccessibilityProps {
|
|
70
|
+
readonly accessible: boolean;
|
|
71
|
+
readonly accessibilityLabel?: string;
|
|
72
|
+
readonly accessibilityRole: "image";
|
|
73
|
+
readonly fit: NativeImageFit;
|
|
74
|
+
readonly resourcePolicy: NativeImageResourcePolicy;
|
|
75
|
+
readonly uri: string;
|
|
76
|
+
}
|
|
77
|
+
export interface NativeMediaResourcePolicy {
|
|
78
|
+
readonly sourceOrigin: string;
|
|
79
|
+
readonly allowedRedirectOrigins: readonly string[];
|
|
80
|
+
readonly allowedMimeTypes: readonly string[];
|
|
81
|
+
readonly maximumBytes: number;
|
|
82
|
+
readonly maximumRedirects: number;
|
|
83
|
+
readonly allowsAutoplay: boolean;
|
|
84
|
+
readonly allowsBackgroundPlayback: boolean;
|
|
85
|
+
readonly allowsExternalRoutes: boolean;
|
|
86
|
+
readonly requiresUserActivation: boolean;
|
|
87
|
+
}
|
|
88
|
+
export interface NativeVideoComponentProps extends NativeAccessibilityProps {
|
|
89
|
+
readonly accessible: boolean;
|
|
90
|
+
readonly accessibilityLabel: string;
|
|
91
|
+
readonly accessibilityRole: "image";
|
|
92
|
+
readonly uri: string;
|
|
93
|
+
readonly posterUri?: string;
|
|
94
|
+
readonly posterResourcePolicy?: NativeImageResourcePolicy;
|
|
95
|
+
readonly resourcePolicy: NativeMediaResourcePolicy;
|
|
96
|
+
}
|
|
97
|
+
export interface NativeAudioPlayerComponentProps extends NativeAccessibilityProps {
|
|
98
|
+
readonly accessible: boolean;
|
|
99
|
+
readonly accessibilityLabel: string;
|
|
100
|
+
readonly accessibilityRole: "button";
|
|
101
|
+
readonly description?: string;
|
|
102
|
+
readonly uri: string;
|
|
103
|
+
readonly resourcePolicy: NativeMediaResourcePolicy;
|
|
104
|
+
}
|
|
105
|
+
export declare const A2UI_V1_NATIVE_ICON_NAMES: readonly ["accountCircle", "add", "arrowBack", "arrowForward", "attachFile", "calendarToday", "call", "camera", "check", "close", "delete", "download", "edit", "event", "error", "fastForward", "favorite", "favoriteOff", "folder", "help", "home", "info", "locationOn", "lock", "lockOpen", "mail", "menu", "moreVert", "moreHoriz", "notificationsOff", "notifications", "pause", "payment", "person", "phone", "photo", "play", "print", "refresh", "rewind", "search", "send", "settings", "share", "shoppingCart", "skipNext", "skipPrevious", "star", "starHalf", "starOff", "stop", "upload", "visibility", "visibilityOff", "volumeDown", "volumeMute", "volumeOff", "volumeUp", "warning"];
|
|
106
|
+
export type NativeIconName = (typeof A2UI_V1_NATIVE_ICON_NAMES)[number];
|
|
107
|
+
export interface NativeIconComponentProps extends NativeAccessibilityProps {
|
|
108
|
+
readonly accessible: boolean;
|
|
109
|
+
readonly accessibilityLabel?: string;
|
|
110
|
+
readonly accessibilityRole: "image";
|
|
111
|
+
readonly name: NativeIconName;
|
|
112
|
+
}
|
|
113
|
+
export interface NativeDividerComponentProps extends NativeAccessibilityProps {
|
|
114
|
+
readonly accessible: false;
|
|
115
|
+
readonly axis: "horizontal" | "vertical";
|
|
116
|
+
}
|
|
117
|
+
export interface NativeCheckBoxComponentProps extends NativeAccessibilityProps {
|
|
118
|
+
readonly accessible: boolean;
|
|
119
|
+
readonly accessibilityLabel: string;
|
|
120
|
+
readonly accessibilityRole: "checkbox";
|
|
121
|
+
readonly accessibilityState: NativeAccessibilityState;
|
|
122
|
+
readonly invalid?: boolean;
|
|
123
|
+
readonly label: string;
|
|
124
|
+
readonly onValueChange?: (value: boolean) => void;
|
|
125
|
+
readonly validationMessages?: readonly string[];
|
|
126
|
+
readonly value: boolean;
|
|
127
|
+
}
|
|
128
|
+
export type NativeChoicePickerVariant = "multipleSelection" | "mutuallyExclusive";
|
|
129
|
+
export type NativeChoicePickerDisplayStyle = "checkbox" | "chips";
|
|
130
|
+
export interface NativeChoicePickerOption {
|
|
131
|
+
readonly label: string;
|
|
132
|
+
readonly value: string;
|
|
133
|
+
}
|
|
134
|
+
export interface NativeChoicePickerComponentProps extends NativeAccessibilityProps {
|
|
135
|
+
readonly accessible: boolean;
|
|
136
|
+
readonly accessibilityLabel: string;
|
|
137
|
+
readonly displayStyle: NativeChoicePickerDisplayStyle;
|
|
138
|
+
readonly filterable: boolean;
|
|
139
|
+
readonly invalid?: boolean;
|
|
140
|
+
readonly label?: string;
|
|
141
|
+
readonly onValueChange?: (value: readonly string[]) => void;
|
|
142
|
+
readonly options: readonly NativeChoicePickerOption[];
|
|
143
|
+
readonly validationMessages?: readonly string[];
|
|
144
|
+
readonly value: readonly string[];
|
|
145
|
+
readonly variant: NativeChoicePickerVariant;
|
|
146
|
+
}
|
|
147
|
+
export interface NativeSliderComponentProps extends NativeAccessibilityProps {
|
|
148
|
+
readonly accessible: boolean;
|
|
149
|
+
readonly accessibilityLabel: string;
|
|
150
|
+
readonly accessibilityRole: "adjustable";
|
|
151
|
+
readonly invalid?: boolean;
|
|
152
|
+
readonly label?: string;
|
|
153
|
+
readonly maximumValue: number;
|
|
154
|
+
readonly minimumValue: number;
|
|
155
|
+
readonly onValueChange?: (value: number) => void;
|
|
156
|
+
readonly step?: number;
|
|
157
|
+
readonly validationMessages?: readonly string[];
|
|
158
|
+
readonly value: number;
|
|
159
|
+
}
|
|
160
|
+
export interface NativeDateTimeInputComponentProps extends NativeAccessibilityProps {
|
|
161
|
+
readonly accessible: boolean;
|
|
162
|
+
readonly accessibilityLabel: string;
|
|
163
|
+
readonly enableDate: boolean;
|
|
164
|
+
readonly enableTime: boolean;
|
|
165
|
+
readonly invalid?: boolean;
|
|
166
|
+
readonly label?: string;
|
|
167
|
+
readonly maximum?: string;
|
|
168
|
+
readonly minimum?: string;
|
|
169
|
+
readonly onValueChange?: (value: string) => void;
|
|
170
|
+
readonly validationMessages?: readonly string[];
|
|
171
|
+
readonly value: string;
|
|
172
|
+
}
|
|
173
|
+
export interface NativeTabItem {
|
|
174
|
+
readonly content: ReactNode;
|
|
175
|
+
readonly title: string;
|
|
176
|
+
}
|
|
177
|
+
export interface NativeTabsComponentProps extends NativeAccessibilityProps {
|
|
178
|
+
readonly accessible: boolean;
|
|
179
|
+
readonly onSelect: (index: number) => void;
|
|
180
|
+
readonly selectedIndex: number;
|
|
181
|
+
readonly tabs: readonly NativeTabItem[];
|
|
182
|
+
}
|
|
183
|
+
export interface NativeModalComponentProps extends NativeAccessibilityProps {
|
|
184
|
+
readonly content: ReactNode;
|
|
185
|
+
readonly onRequestClose: () => void;
|
|
186
|
+
readonly open: boolean;
|
|
187
|
+
readonly trigger: ReactNode;
|
|
188
|
+
}
|
|
53
189
|
export type NativeViewVariant = "card" | "column" | "list" | "row";
|
|
54
190
|
export type NativeTextVariant = "body" | "caption";
|
|
55
191
|
export type NativeButtonVariant = "borderless" | "default" | "primary";
|
|
@@ -63,6 +199,8 @@ export interface NativeComponentVariants {
|
|
|
63
199
|
readonly Text?: Partial<Record<NativeTextVariant, ComponentType<NativeTextComponentProps>>>;
|
|
64
200
|
readonly Button?: Partial<Record<NativeButtonVariant, ComponentType<NativeButtonComponentProps>>>;
|
|
65
201
|
readonly TextInput?: Partial<Record<NativeTextInputVariant, ComponentType<NativeTextInputComponentProps>>>;
|
|
202
|
+
readonly Image?: Partial<Record<NativeImageVariant, ComponentType<NativeImageComponentProps>>>;
|
|
203
|
+
readonly ChoicePicker?: Partial<Record<NativeChoicePickerVariant, ComponentType<NativeChoicePickerComponentProps>>>;
|
|
66
204
|
}
|
|
67
205
|
/** Locally bundled components chosen by the host application. */
|
|
68
206
|
export interface NativeComponentCatalog {
|
|
@@ -70,9 +208,39 @@ export interface NativeComponentCatalog {
|
|
|
70
208
|
readonly Text: ComponentType<NativeTextComponentProps>;
|
|
71
209
|
readonly Button: ComponentType<NativeButtonComponentProps>;
|
|
72
210
|
readonly TextInput: ComponentType<NativeTextInputComponentProps>;
|
|
211
|
+
readonly Image?: ComponentType<NativeImageComponentProps>;
|
|
212
|
+
readonly Icon?: ComponentType<NativeIconComponentProps>;
|
|
213
|
+
readonly Divider?: ComponentType<NativeDividerComponentProps>;
|
|
214
|
+
readonly CheckBox?: ComponentType<NativeCheckBoxComponentProps>;
|
|
215
|
+
readonly ChoicePicker?: ComponentType<NativeChoicePickerComponentProps>;
|
|
216
|
+
readonly Slider?: ComponentType<NativeSliderComponentProps>;
|
|
217
|
+
readonly DateTimeInput?: ComponentType<NativeDateTimeInputComponentProps>;
|
|
218
|
+
readonly Tabs?: ComponentType<NativeTabsComponentProps>;
|
|
219
|
+
readonly Modal?: ComponentType<NativeModalComponentProps>;
|
|
220
|
+
readonly Video?: ComponentType<NativeVideoComponentProps>;
|
|
221
|
+
readonly AudioPlayer?: ComponentType<NativeAudioPlayerComponentProps>;
|
|
222
|
+
/** Locally compiled semantic extensions created only by the registration helper below. */
|
|
223
|
+
readonly hostExtensions?: readonly NativeHostExtensionRegistration[];
|
|
73
224
|
/** Optional semantic/style variants; omitted entries fall back to the base primitive. */
|
|
74
225
|
readonly variants?: NativeComponentVariants;
|
|
75
226
|
}
|
|
227
|
+
export interface NativeHostExtensionCapabilityGrant {
|
|
228
|
+
readonly permissions: readonly string[];
|
|
229
|
+
readonly resources: readonly string[];
|
|
230
|
+
}
|
|
231
|
+
export interface NativeHostExtensionEventOptions {
|
|
232
|
+
readonly userActivated: boolean;
|
|
233
|
+
}
|
|
234
|
+
export interface NativeHostExtensionComponentProps extends NativeAccessibilityProps {
|
|
235
|
+
readonly semanticProps: JsonObject;
|
|
236
|
+
readonly capabilityGrant: NativeHostExtensionCapabilityGrant;
|
|
237
|
+
readonly onEvent: (name: string, payload: JsonObject, options: NativeHostExtensionEventOptions) => void;
|
|
238
|
+
}
|
|
239
|
+
/** Opaque registration for one locally imported React Native or Fabric component. */
|
|
240
|
+
export interface NativeHostExtensionRegistration {
|
|
241
|
+
readonly manifest: A2uiV1HostExtensionManifest;
|
|
242
|
+
readonly manifestFingerprint: string;
|
|
243
|
+
}
|
|
76
244
|
/** Maps renderer-selected primitive props into one locally bundled host component. */
|
|
77
245
|
export type NativeComponentPropMapper<TrustedProps extends object, HostProps extends object> = (props: TrustedProps) => HostProps;
|
|
78
246
|
/** Adapts trusted MCP Native view props to a host design-system component. */
|
|
@@ -83,4 +251,34 @@ export declare function createNativeTextAdapter<HostProps extends object>(compon
|
|
|
83
251
|
export declare function createNativeButtonAdapter<HostProps extends object>(component: ComponentType<HostProps>, mapProps: NativeComponentPropMapper<NativeButtonComponentProps, HostProps>): ComponentType<NativeButtonComponentProps>;
|
|
84
252
|
/** Adapts trusted MCP Native text-input props to a host design-system component. */
|
|
85
253
|
export declare function createNativeTextInputAdapter<HostProps extends object>(component: ComponentType<HostProps>, mapProps: NativeComponentPropMapper<NativeTextInputComponentProps, HostProps>): ComponentType<NativeTextInputComponentProps>;
|
|
254
|
+
/** Adapts trusted MCP Native image props to a host image component. */
|
|
255
|
+
export declare function createNativeImageAdapter<HostProps extends object>(component: ComponentType<HostProps>, mapProps: NativeComponentPropMapper<NativeImageComponentProps, HostProps>): ComponentType<NativeImageComponentProps>;
|
|
256
|
+
/** Adapts a complete, policy-bearing video source to one local media component. */
|
|
257
|
+
export declare function createNativeVideoAdapter<HostProps extends object>(component: ComponentType<HostProps>, mapProps: NativeComponentPropMapper<NativeVideoComponentProps, HostProps>): ComponentType<NativeVideoComponentProps>;
|
|
258
|
+
/** Adapts a complete, policy-bearing audio source to one local media component. */
|
|
259
|
+
export declare function createNativeAudioPlayerAdapter<HostProps extends object>(component: ComponentType<HostProps>, mapProps: NativeComponentPropMapper<NativeAudioPlayerComponentProps, HostProps>): ComponentType<NativeAudioPlayerComponentProps>;
|
|
260
|
+
/**
|
|
261
|
+
* Registers one locally imported semantic native component. The mapper receives only validated
|
|
262
|
+
* semantic props, a closed capability grant, accessibility fields, and a validated event seam.
|
|
263
|
+
*/
|
|
264
|
+
export declare function createNativeHostExtensionRegistration<HostProps extends object>(manifestInput: unknown, component: ComponentType<HostProps>, mapProps: NativeComponentPropMapper<NativeHostExtensionComponentProps, HostProps>): NativeHostExtensionRegistration;
|
|
265
|
+
export declare function isNativeHostExtensionRegistration(value: unknown): value is NativeHostExtensionRegistration;
|
|
266
|
+
/** Internal renderer seam for an opaque, helper-created local registration. */
|
|
267
|
+
export declare function renderNativeHostExtensionRegistration(registration: NativeHostExtensionRegistration, props: NativeHostExtensionComponentProps, key: string): ReactElement;
|
|
268
|
+
/** Adapts a pinned semantic icon name to a host icon component. */
|
|
269
|
+
export declare function createNativeIconAdapter<HostProps extends object>(component: ComponentType<HostProps>, mapProps: NativeComponentPropMapper<NativeIconComponentProps, HostProps>): ComponentType<NativeIconComponentProps>;
|
|
270
|
+
/** Adapts a trusted divider axis to a host divider component. */
|
|
271
|
+
export declare function createNativeDividerAdapter<HostProps extends object>(component: ComponentType<HostProps>, mapProps: NativeComponentPropMapper<NativeDividerComponentProps, HostProps>): ComponentType<NativeDividerComponentProps>;
|
|
272
|
+
/** Adapts trusted checkbox props to a host checkbox component. */
|
|
273
|
+
export declare function createNativeCheckBoxAdapter<HostProps extends object>(component: ComponentType<HostProps>, mapProps: NativeComponentPropMapper<NativeCheckBoxComponentProps, HostProps>): ComponentType<NativeCheckBoxComponentProps>;
|
|
274
|
+
/** Adapts trusted choice-picker props to a host selection component. */
|
|
275
|
+
export declare function createNativeChoicePickerAdapter<HostProps extends object>(component: ComponentType<HostProps>, mapProps: NativeComponentPropMapper<NativeChoicePickerComponentProps, HostProps>): ComponentType<NativeChoicePickerComponentProps>;
|
|
276
|
+
/** Adapts trusted bounded slider props to a host slider component. */
|
|
277
|
+
export declare function createNativeSliderAdapter<HostProps extends object>(component: ComponentType<HostProps>, mapProps: NativeComponentPropMapper<NativeSliderComponentProps, HostProps>): ComponentType<NativeSliderComponentProps>;
|
|
278
|
+
/** Adapts trusted ISO date/time props to a host date/time component. */
|
|
279
|
+
export declare function createNativeDateTimeInputAdapter<HostProps extends object>(component: ComponentType<HostProps>, mapProps: NativeComponentPropMapper<NativeDateTimeInputComponentProps, HostProps>): ComponentType<NativeDateTimeInputComponentProps>;
|
|
280
|
+
/** Adapts trusted tab titles and rendered content to a host tabs component. */
|
|
281
|
+
export declare function createNativeTabsAdapter<HostProps extends object>(component: ComponentType<HostProps>, mapProps: NativeComponentPropMapper<NativeTabsComponentProps, HostProps>): ComponentType<NativeTabsComponentProps>;
|
|
282
|
+
/** Adapts trusted modal state and rendered regions to a host modal component. */
|
|
283
|
+
export declare function createNativeModalAdapter<HostProps extends object>(component: ComponentType<HostProps>, mapProps: NativeComponentPropMapper<NativeModalComponentProps, HostProps>): ComponentType<NativeModalComponentProps>;
|
|
86
284
|
//# sourceMappingURL=component-adapters.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"component-adapters.d.ts","sourceRoot":"","sources":["../src/component-adapters.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"component-adapters.d.ts","sourceRoot":"","sources":["../src/component-adapters.ts"],"names":[],"mappings":"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"}
|