@ethisyscore/plugin-ui 1.15.0 → 1.17.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/dist/components/layout/index.cjs +130 -0
- package/dist/components/layout/index.cjs.map +1 -0
- package/dist/components/layout/index.d.cts +48 -0
- package/dist/components/layout/index.d.ts +48 -0
- package/dist/components/layout/index.js +127 -0
- package/dist/components/layout/index.js.map +1 -0
- package/dist/components/shared/index.cjs +186 -0
- package/dist/components/shared/index.cjs.map +1 -0
- package/dist/components/shared/index.d.cts +60 -0
- package/dist/components/shared/index.d.ts +60 -0
- package/dist/components/shared/index.js +183 -0
- package/dist/components/shared/index.js.map +1 -0
- package/dist/components/ui/index.cjs +229 -0
- package/dist/components/ui/index.cjs.map +1 -0
- package/dist/components/ui/index.d.cts +13 -0
- package/dist/components/ui/index.d.ts +13 -0
- package/dist/components/ui/index.js +12 -0
- package/dist/components/ui/index.js.map +1 -0
- package/dist/icons/index.cjs +43589 -0
- package/dist/icons/index.cjs.map +1 -0
- package/dist/icons/index.d.cts +1427 -0
- package/dist/icons/index.d.ts +1427 -0
- package/dist/icons/index.js +43115 -0
- package/dist/icons/index.js.map +1 -0
- package/dist/platform-react/index.cjs +246 -0
- package/dist/platform-react/index.cjs.map +1 -0
- package/dist/platform-react/index.d.cts +740 -0
- package/dist/platform-react/index.d.ts +740 -0
- package/dist/platform-react/index.js +229 -0
- package/dist/platform-react/index.js.map +1 -0
- package/package.json +40 -1
|
@@ -0,0 +1,740 @@
|
|
|
1
|
+
import * as react from 'react';
|
|
2
|
+
import { ComponentType, AnchorHTMLAttributes, ReactNode, MouseEvent } from 'react';
|
|
3
|
+
import * as _tanstack_react_query from '@tanstack/react-query';
|
|
4
|
+
import { QueryClient, UseQueryResult, UseQueryOptions, QueryKey } from '@tanstack/react-query';
|
|
5
|
+
import { PlatformReactPageProps } from '@ethisyscore/components-react';
|
|
6
|
+
import * as _tanstack_query_core from '@tanstack/query-core';
|
|
7
|
+
|
|
8
|
+
/** A view component resolved from the template manifest. Props are open. */
|
|
9
|
+
type ViewComponent = ComponentType<Record<string, unknown>>;
|
|
10
|
+
/**
|
|
11
|
+
* Static port of the monolith's gogo-ui adapter mechanism for PlatformReact.
|
|
12
|
+
*
|
|
13
|
+
* A monolith feature picks its adapter view at runtime via `import.meta.glob`;
|
|
14
|
+
* a PlatformReact page is a single self-contained ESM bundle where that glob is
|
|
15
|
+
* unavailable, so each page declares its view slice statically and provides it
|
|
16
|
+
* through this context. The shape is `manifest[module][viewName] = Component`.
|
|
17
|
+
*/
|
|
18
|
+
type TemplateManifest = Record<string, Partial<Record<string, ViewComponent>>>;
|
|
19
|
+
declare const TemplateContext: react.Context<TemplateManifest | null>;
|
|
20
|
+
|
|
21
|
+
interface DefinePlatformReactPluginPageOptions {
|
|
22
|
+
/** The page's static `useView` manifest slice (no `import.meta.glob` in a single-file bundle). */
|
|
23
|
+
manifest?: TemplateManifest;
|
|
24
|
+
/** Scoped style-root class wrapped around the page (e.g. `ethisys-<plugin>-root`). */
|
|
25
|
+
rootClassName: string;
|
|
26
|
+
/** Stable id for the injected `<style>` element (idempotent across pages). */
|
|
27
|
+
styleId: string;
|
|
28
|
+
/** The plugin's compiled CSS string (typically a `*.css?inline` import). */
|
|
29
|
+
css: string;
|
|
30
|
+
/** Override the per-page `QueryClient`. */
|
|
31
|
+
queryClient?: QueryClient;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Wraps a lifted page as a PlatformReact entry with the providers the monolith
|
|
35
|
+
* took for granted: react-query, the static `useView` manifest, and the scoped
|
|
36
|
+
* style root. The host already provides the MCP transport (it mounts pages
|
|
37
|
+
* inside its own runtime provider), so this adds only the in-page providers.
|
|
38
|
+
*/
|
|
39
|
+
declare function definePlatformReactPluginPage(Page: ComponentType<PlatformReactPageProps>, options: DefinePlatformReactPluginPageOptions): ComponentType<PlatformReactPageProps>;
|
|
40
|
+
interface PluginPageDefinerConfig {
|
|
41
|
+
/**
|
|
42
|
+
* The plugin's `useView` module key (e.g. `"timesheets"`). Each page's `views`
|
|
43
|
+
* are registered under it, so a page's `useView(module, name)` resolves them.
|
|
44
|
+
*/
|
|
45
|
+
module: string;
|
|
46
|
+
/** Scoped style-root class wrapped around every page (e.g. `ethisys-<plugin>-root`). */
|
|
47
|
+
rootClassName: string;
|
|
48
|
+
/** Stable id for the injected `<style>` element. */
|
|
49
|
+
styleId: string;
|
|
50
|
+
/** The plugin's compiled CSS string (typically a `*.css?inline` import). */
|
|
51
|
+
css: string;
|
|
52
|
+
/** Override the per-page `QueryClient`. */
|
|
53
|
+
queryClient?: QueryClient;
|
|
54
|
+
}
|
|
55
|
+
/**
|
|
56
|
+
* Builds a plugin-bound `definePluginPage(Page, views)` from one config, so a
|
|
57
|
+
* plugin writes the four plugin-specific values (module key, root class, style
|
|
58
|
+
* id, CSS) ONCE instead of in every page entry. Each surface entry then calls
|
|
59
|
+
* `definePluginPage(Page, { ViewName })`; the flat `views` map is wrapped into
|
|
60
|
+
* the `{ [module]: views }` manifest slice the page's `useView(module, name)`
|
|
61
|
+
* reads. The generic provider/manifest/style wrapping stays in
|
|
62
|
+
* {@link definePlatformReactPluginPage}.
|
|
63
|
+
*/
|
|
64
|
+
declare function createPluginPageDefiner(config: PluginPageDefinerConfig): (Page: ComponentType<PlatformReactPageProps>, views?: Record<string, ViewComponent>) => ComponentType<PlatformReactPageProps>;
|
|
65
|
+
|
|
66
|
+
/** Matches regular function components and `React.lazy` wrappers. */
|
|
67
|
+
declare function isComponent(value: unknown): value is ComponentType;
|
|
68
|
+
/**
|
|
69
|
+
* Builds a `useView` hook bound to a fallback component. The hook is a safe
|
|
70
|
+
* view accessor that never throws: it returns `manifest[module][viewName]` when
|
|
71
|
+
* present, or the supplied fallback when the manifest, module slice, or view is
|
|
72
|
+
* missing or is not a component.
|
|
73
|
+
*/
|
|
74
|
+
declare function createUseView(fallback: ComponentType<Record<string, unknown>>): (module: string, viewName: string) => ComponentType<Record<string, unknown>>;
|
|
75
|
+
/** Default `useView` bound to the built-in {@link MissingViewFallback}. */
|
|
76
|
+
declare const useView: (module: string, viewName: string) => ComponentType<Record<string, unknown>>;
|
|
77
|
+
|
|
78
|
+
/**
|
|
79
|
+
* Dependency-light fallback rendered when a view is not present in the current
|
|
80
|
+
* template manifest. Kept to plain elements + inline styles so the foundation
|
|
81
|
+
* package carries no UI-library dependency; plugins that want a branded
|
|
82
|
+
* fallback pass their own via {@link createUseView}.
|
|
83
|
+
*/
|
|
84
|
+
declare const MissingViewFallback: ComponentType<Record<string, unknown>>;
|
|
85
|
+
|
|
86
|
+
/** Dispatches an MCP tool call by name. The seam a lifted REST service binds to. */
|
|
87
|
+
type ToolInvoker = (toolName: string, args: unknown) => Promise<unknown>;
|
|
88
|
+
/**
|
|
89
|
+
* Base for service classes lifted from a monolith REST plane onto MCP.
|
|
90
|
+
*
|
|
91
|
+
* The monolith versions extend a REST base (`this.get`/`this.post` over axios).
|
|
92
|
+
* The plugin runtime exposes no imperative MCP transport — only the
|
|
93
|
+
* `useMcpTool` hook — so a `useXService()` hook composes per-tool invokers (see
|
|
94
|
+
* {@link useToolInvokerMap}) into a single {@link ToolInvoker} and constructs
|
|
95
|
+
* the class with it. Method bodies call `this.tool("<tool-name>", args)`.
|
|
96
|
+
*/
|
|
97
|
+
declare abstract class BaseMcpService {
|
|
98
|
+
private readonly invoker;
|
|
99
|
+
constructor(invoker: ToolInvoker);
|
|
100
|
+
protected tool<TRes>(name: string, args?: unknown): Promise<TRes>;
|
|
101
|
+
}
|
|
102
|
+
/**
|
|
103
|
+
* Thrown by a lifted service method whose monolith REST route has no MCP tool
|
|
104
|
+
* yet (typically because it needs client-side aggregation over a coarser tool).
|
|
105
|
+
*/
|
|
106
|
+
declare function notViaMcp(serviceName: string, method: string): never;
|
|
107
|
+
/** Imperative invoker for a single MCP tool (the hook's `.invoke`, stable across renders). */
|
|
108
|
+
declare function useToolInvoker<TReq, TRes>(toolName: string): (req: TReq) => Promise<TRes>;
|
|
109
|
+
/**
|
|
110
|
+
* Composes one {@link ToolInvoker} dispatching over every tool in `tools`, so a
|
|
111
|
+
* service class can call tools by name.
|
|
112
|
+
*
|
|
113
|
+
* Rules of hooks: `tools` MUST be a frozen, constant-length list (e.g. a
|
|
114
|
+
* module-level `as const` array) so the per-tool `useMcpTool` calls run in a
|
|
115
|
+
* stable order on every render. Passing a list whose length varies between
|
|
116
|
+
* renders is a violation and will break.
|
|
117
|
+
*/
|
|
118
|
+
declare function useToolInvokerMap(tools: readonly string[]): ToolInvoker;
|
|
119
|
+
|
|
120
|
+
/**
|
|
121
|
+
* Plugin shim for the monolith's `useAuthenticatedQuery`.
|
|
122
|
+
*
|
|
123
|
+
* In the host realm the MCP transport is already authenticated and scoped to
|
|
124
|
+
* the active organisation, so there is no auth gate to apply. The hook keeps
|
|
125
|
+
* the monolith's return shape (`isLoading` + `isAuthLoading`) so lifted data
|
|
126
|
+
* hooks and pages consume it unchanged — `isAuthLoading` is always `false`.
|
|
127
|
+
*/
|
|
128
|
+
interface AuthenticatedQueryResult<TData, TError> extends Omit<UseQueryResult<TData, TError>, "isLoading"> {
|
|
129
|
+
isLoading: boolean;
|
|
130
|
+
isAuthLoading: boolean;
|
|
131
|
+
}
|
|
132
|
+
declare function useAuthenticatedQuery<TQueryFnData = unknown, TError = Error, TData = TQueryFnData, TQueryKey extends QueryKey = QueryKey>(options: UseQueryOptions<TQueryFnData, TError, TData, TQueryKey>): AuthenticatedQueryResult<TData, TError>;
|
|
133
|
+
declare function useAuthenticatedQueries<TQueryFnData = unknown, TError = Error>(queries: UseQueryOptions<TQueryFnData, TError>[]): (unknown extends TQueryFnData | _tanstack_query_core.InitialDataFunction<TQueryFnData> ? UseQueryResult<unknown extends TQueryFnData ? TQueryFnData : TQueryFnData, unknown extends TError ? Error : TError> : (TQueryFnData extends (unknown extends TQueryFnData ? TQueryFnData : TQueryFnData) ? _tanstack_react_query.DefinedUseQueryResult<unknown extends TQueryFnData ? TQueryFnData : TQueryFnData, unknown extends TError ? Error : TError> : TQueryFnData extends () => infer TInitialDataResult ? unknown extends TInitialDataResult ? UseQueryResult<unknown extends TQueryFnData ? TQueryFnData : TQueryFnData, unknown extends TError ? Error : TError> : TInitialDataResult extends (unknown extends TQueryFnData ? TQueryFnData : TQueryFnData) ? _tanstack_react_query.DefinedUseQueryResult<unknown extends TQueryFnData ? TQueryFnData : TQueryFnData, unknown extends TError ? Error : TError> : UseQueryResult<unknown extends TQueryFnData ? TQueryFnData : TQueryFnData, unknown extends TError ? Error : TError> : UseQueryResult<unknown extends TQueryFnData ? TQueryFnData : TQueryFnData, unknown extends TError ? Error : TError>) | (_tanstack_query_core.InitialDataFunction<TQueryFnData> extends infer T ? T extends _tanstack_query_core.InitialDataFunction<TQueryFnData> ? T extends (unknown extends TQueryFnData ? TQueryFnData : TQueryFnData) ? _tanstack_react_query.DefinedUseQueryResult<unknown extends TQueryFnData ? TQueryFnData : TQueryFnData, unknown extends TError ? Error : TError> : T extends () => infer TInitialDataResult ? unknown extends TInitialDataResult ? UseQueryResult<unknown extends TQueryFnData ? TQueryFnData : TQueryFnData, unknown extends TError ? Error : TError> : TInitialDataResult extends (unknown extends TQueryFnData ? TQueryFnData : TQueryFnData) ? _tanstack_react_query.DefinedUseQueryResult<unknown extends TQueryFnData ? TQueryFnData : TQueryFnData, unknown extends TError ? Error : TError> : UseQueryResult<unknown extends TQueryFnData ? TQueryFnData : TQueryFnData, unknown extends TError ? Error : TError> : UseQueryResult<unknown extends TQueryFnData ? TQueryFnData : TQueryFnData, unknown extends TError ? Error : TError> : never : never))[];
|
|
134
|
+
|
|
135
|
+
/**
|
|
136
|
+
* Injects a plugin's compiled CSS into the host document once, keyed by a
|
|
137
|
+
* stable element id (idempotent across pages and re-mounts).
|
|
138
|
+
*
|
|
139
|
+
* Each PlatformReact page is a separate ESM bundle with no companion CSS asset
|
|
140
|
+
* the host would load, so the styles travel inside the bundle (typically via a
|
|
141
|
+
* `*.css?inline` import) and are mounted at runtime. Scope the CSS to a plugin
|
|
142
|
+
* root class (never `:root`) so it cannot override the host theme.
|
|
143
|
+
*/
|
|
144
|
+
declare function injectPluginStyles(id: string, css: string): void;
|
|
145
|
+
/** Component form of {@link injectPluginStyles}; renders nothing. */
|
|
146
|
+
declare function PluginStyleScope({ id, css }: {
|
|
147
|
+
id: string;
|
|
148
|
+
css: string;
|
|
149
|
+
}): null;
|
|
150
|
+
|
|
151
|
+
/**
|
|
152
|
+
* Minimal `react-router-dom` compatibility shim for lifted monolith code.
|
|
153
|
+
*
|
|
154
|
+
* A PlatformReact plugin has no client router — navigation is brokered to the
|
|
155
|
+
* host via {@link emitNavigation}, and route params come from the surface URL's
|
|
156
|
+
* trailing segment(s). {@link createReactRouterShim} returns a module-shaped
|
|
157
|
+
* object of the hooks/components lifted code expects; alias `react-router-dom`
|
|
158
|
+
* to a tiny file that re-exports this object's members so call sites resolve
|
|
159
|
+
* unchanged.
|
|
160
|
+
*
|
|
161
|
+
* `paramKeys` names the keys the single trailing path segment is exposed under,
|
|
162
|
+
* so a route like `/…/<page>/<value>` satisfies `useParams<{ id }>()` /
|
|
163
|
+
* `useParams<{ date }>()` regardless of which key the lifted code destructures.
|
|
164
|
+
*/
|
|
165
|
+
interface ReactRouterShimOptions {
|
|
166
|
+
/** Keys the trailing path segment is exposed under (default: `["id"]`). */
|
|
167
|
+
paramKeys?: readonly string[];
|
|
168
|
+
}
|
|
169
|
+
type LinkProps = AnchorHTMLAttributes<HTMLAnchorElement> & {
|
|
170
|
+
to: string;
|
|
171
|
+
children?: ReactNode;
|
|
172
|
+
};
|
|
173
|
+
declare function createReactRouterShim(options?: ReactRouterShimOptions): {
|
|
174
|
+
useNavigate: () => (to: string | number) => void;
|
|
175
|
+
useParams: <T extends Record<string, string | undefined> = Record<string, string | undefined>>() => T;
|
|
176
|
+
useSearchParams: () => [URLSearchParams, (next: URLSearchParams | Record<string, string>) => void];
|
|
177
|
+
useMatch: (_pattern: string) => {
|
|
178
|
+
params: Record<string, string | undefined>;
|
|
179
|
+
pathname: string;
|
|
180
|
+
} | null;
|
|
181
|
+
useLocation: () => {
|
|
182
|
+
pathname: string;
|
|
183
|
+
search: string;
|
|
184
|
+
hash: string;
|
|
185
|
+
state: null;
|
|
186
|
+
key: string;
|
|
187
|
+
};
|
|
188
|
+
Link: ({ to, children, onClick, ...rest }: LinkProps) => react.DetailedReactHTMLElement<{
|
|
189
|
+
download?: any;
|
|
190
|
+
href: string;
|
|
191
|
+
hrefLang?: string | undefined;
|
|
192
|
+
media?: string | undefined;
|
|
193
|
+
ping?: string | undefined;
|
|
194
|
+
target?: react.HTMLAttributeAnchorTarget | undefined;
|
|
195
|
+
type?: string | undefined;
|
|
196
|
+
referrerPolicy?: react.HTMLAttributeReferrerPolicy | undefined;
|
|
197
|
+
defaultChecked?: boolean | undefined;
|
|
198
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
|
199
|
+
suppressContentEditableWarning?: boolean | undefined;
|
|
200
|
+
suppressHydrationWarning?: boolean | undefined;
|
|
201
|
+
accessKey?: string | undefined;
|
|
202
|
+
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {});
|
|
203
|
+
autoFocus?: boolean | undefined;
|
|
204
|
+
className?: string | undefined;
|
|
205
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
206
|
+
contextMenu?: string | undefined;
|
|
207
|
+
dir?: string | undefined;
|
|
208
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
209
|
+
enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
|
|
210
|
+
hidden?: boolean | undefined;
|
|
211
|
+
id?: string | undefined;
|
|
212
|
+
lang?: string | undefined;
|
|
213
|
+
nonce?: string | undefined;
|
|
214
|
+
slot?: string | undefined;
|
|
215
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
216
|
+
style?: react.CSSProperties | undefined;
|
|
217
|
+
tabIndex?: number | undefined;
|
|
218
|
+
title?: string | undefined;
|
|
219
|
+
translate?: "yes" | "no" | undefined;
|
|
220
|
+
radioGroup?: string | undefined;
|
|
221
|
+
role?: react.AriaRole | undefined;
|
|
222
|
+
about?: string | undefined;
|
|
223
|
+
content?: string | undefined;
|
|
224
|
+
datatype?: string | undefined;
|
|
225
|
+
inlist?: any;
|
|
226
|
+
prefix?: string | undefined;
|
|
227
|
+
property?: string | undefined;
|
|
228
|
+
rel?: string | undefined;
|
|
229
|
+
resource?: string | undefined;
|
|
230
|
+
rev?: string | undefined;
|
|
231
|
+
typeof?: string | undefined;
|
|
232
|
+
vocab?: string | undefined;
|
|
233
|
+
autoCorrect?: string | undefined;
|
|
234
|
+
autoSave?: string | undefined;
|
|
235
|
+
color?: string | undefined;
|
|
236
|
+
itemProp?: string | undefined;
|
|
237
|
+
itemScope?: boolean | undefined;
|
|
238
|
+
itemType?: string | undefined;
|
|
239
|
+
itemID?: string | undefined;
|
|
240
|
+
itemRef?: string | undefined;
|
|
241
|
+
results?: number | undefined;
|
|
242
|
+
security?: string | undefined;
|
|
243
|
+
unselectable?: "on" | "off" | undefined;
|
|
244
|
+
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
245
|
+
is?: string | undefined;
|
|
246
|
+
exportparts?: string | undefined;
|
|
247
|
+
part?: string | undefined;
|
|
248
|
+
"aria-activedescendant"?: string | undefined;
|
|
249
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
250
|
+
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
|
|
251
|
+
"aria-braillelabel"?: string | undefined;
|
|
252
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
253
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
254
|
+
"aria-checked"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
255
|
+
"aria-colcount"?: number | undefined;
|
|
256
|
+
"aria-colindex"?: number | undefined;
|
|
257
|
+
"aria-colindextext"?: string | undefined;
|
|
258
|
+
"aria-colspan"?: number | undefined;
|
|
259
|
+
"aria-controls"?: string | undefined;
|
|
260
|
+
"aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined;
|
|
261
|
+
"aria-describedby"?: string | undefined;
|
|
262
|
+
"aria-description"?: string | undefined;
|
|
263
|
+
"aria-details"?: string | undefined;
|
|
264
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
265
|
+
"aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined;
|
|
266
|
+
"aria-errormessage"?: string | undefined;
|
|
267
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
268
|
+
"aria-flowto"?: string | undefined;
|
|
269
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
270
|
+
"aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined;
|
|
271
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
272
|
+
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
|
273
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
274
|
+
"aria-label"?: string | undefined;
|
|
275
|
+
"aria-labelledby"?: string | undefined;
|
|
276
|
+
"aria-level"?: number | undefined;
|
|
277
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
278
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
279
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
280
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
281
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
282
|
+
"aria-owns"?: string | undefined;
|
|
283
|
+
"aria-placeholder"?: string | undefined;
|
|
284
|
+
"aria-posinset"?: number | undefined;
|
|
285
|
+
"aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
286
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
287
|
+
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
|
|
288
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
289
|
+
"aria-roledescription"?: string | undefined;
|
|
290
|
+
"aria-rowcount"?: number | undefined;
|
|
291
|
+
"aria-rowindex"?: number | undefined;
|
|
292
|
+
"aria-rowindextext"?: string | undefined;
|
|
293
|
+
"aria-rowspan"?: number | undefined;
|
|
294
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
295
|
+
"aria-setsize"?: number | undefined;
|
|
296
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
297
|
+
"aria-valuemax"?: number | undefined;
|
|
298
|
+
"aria-valuemin"?: number | undefined;
|
|
299
|
+
"aria-valuenow"?: number | undefined;
|
|
300
|
+
"aria-valuetext"?: string | undefined;
|
|
301
|
+
dangerouslySetInnerHTML?: {
|
|
302
|
+
__html: string | TrustedHTML;
|
|
303
|
+
} | undefined;
|
|
304
|
+
onCopy?: react.ClipboardEventHandler<HTMLAnchorElement> | undefined;
|
|
305
|
+
onCopyCapture?: react.ClipboardEventHandler<HTMLAnchorElement> | undefined;
|
|
306
|
+
onCut?: react.ClipboardEventHandler<HTMLAnchorElement> | undefined;
|
|
307
|
+
onCutCapture?: react.ClipboardEventHandler<HTMLAnchorElement> | undefined;
|
|
308
|
+
onPaste?: react.ClipboardEventHandler<HTMLAnchorElement> | undefined;
|
|
309
|
+
onPasteCapture?: react.ClipboardEventHandler<HTMLAnchorElement> | undefined;
|
|
310
|
+
onCompositionEnd?: react.CompositionEventHandler<HTMLAnchorElement> | undefined;
|
|
311
|
+
onCompositionEndCapture?: react.CompositionEventHandler<HTMLAnchorElement> | undefined;
|
|
312
|
+
onCompositionStart?: react.CompositionEventHandler<HTMLAnchorElement> | undefined;
|
|
313
|
+
onCompositionStartCapture?: react.CompositionEventHandler<HTMLAnchorElement> | undefined;
|
|
314
|
+
onCompositionUpdate?: react.CompositionEventHandler<HTMLAnchorElement> | undefined;
|
|
315
|
+
onCompositionUpdateCapture?: react.CompositionEventHandler<HTMLAnchorElement> | undefined;
|
|
316
|
+
onFocus?: react.FocusEventHandler<HTMLAnchorElement> | undefined;
|
|
317
|
+
onFocusCapture?: react.FocusEventHandler<HTMLAnchorElement> | undefined;
|
|
318
|
+
onBlur?: react.FocusEventHandler<HTMLAnchorElement> | undefined;
|
|
319
|
+
onBlurCapture?: react.FocusEventHandler<HTMLAnchorElement> | undefined;
|
|
320
|
+
onChange?: react.FormEventHandler<HTMLAnchorElement> | undefined;
|
|
321
|
+
onChangeCapture?: react.FormEventHandler<HTMLAnchorElement> | undefined;
|
|
322
|
+
onBeforeInput?: react.InputEventHandler<HTMLAnchorElement> | undefined;
|
|
323
|
+
onBeforeInputCapture?: react.FormEventHandler<HTMLAnchorElement> | undefined;
|
|
324
|
+
onInput?: react.FormEventHandler<HTMLAnchorElement> | undefined;
|
|
325
|
+
onInputCapture?: react.FormEventHandler<HTMLAnchorElement> | undefined;
|
|
326
|
+
onReset?: react.FormEventHandler<HTMLAnchorElement> | undefined;
|
|
327
|
+
onResetCapture?: react.FormEventHandler<HTMLAnchorElement> | undefined;
|
|
328
|
+
onSubmit?: react.FormEventHandler<HTMLAnchorElement> | undefined;
|
|
329
|
+
onSubmitCapture?: react.FormEventHandler<HTMLAnchorElement> | undefined;
|
|
330
|
+
onInvalid?: react.FormEventHandler<HTMLAnchorElement> | undefined;
|
|
331
|
+
onInvalidCapture?: react.FormEventHandler<HTMLAnchorElement> | undefined;
|
|
332
|
+
onLoad?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
333
|
+
onLoadCapture?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
334
|
+
onError?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
335
|
+
onErrorCapture?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
336
|
+
onKeyDown?: react.KeyboardEventHandler<HTMLAnchorElement> | undefined;
|
|
337
|
+
onKeyDownCapture?: react.KeyboardEventHandler<HTMLAnchorElement> | undefined;
|
|
338
|
+
onKeyPress?: react.KeyboardEventHandler<HTMLAnchorElement> | undefined;
|
|
339
|
+
onKeyPressCapture?: react.KeyboardEventHandler<HTMLAnchorElement> | undefined;
|
|
340
|
+
onKeyUp?: react.KeyboardEventHandler<HTMLAnchorElement> | undefined;
|
|
341
|
+
onKeyUpCapture?: react.KeyboardEventHandler<HTMLAnchorElement> | undefined;
|
|
342
|
+
onAbort?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
343
|
+
onAbortCapture?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
344
|
+
onCanPlay?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
345
|
+
onCanPlayCapture?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
346
|
+
onCanPlayThrough?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
347
|
+
onCanPlayThroughCapture?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
348
|
+
onDurationChange?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
349
|
+
onDurationChangeCapture?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
350
|
+
onEmptied?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
351
|
+
onEmptiedCapture?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
352
|
+
onEncrypted?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
353
|
+
onEncryptedCapture?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
354
|
+
onEnded?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
355
|
+
onEndedCapture?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
356
|
+
onLoadedData?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
357
|
+
onLoadedDataCapture?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
358
|
+
onLoadedMetadata?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
359
|
+
onLoadedMetadataCapture?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
360
|
+
onLoadStart?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
361
|
+
onLoadStartCapture?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
362
|
+
onPause?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
363
|
+
onPauseCapture?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
364
|
+
onPlay?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
365
|
+
onPlayCapture?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
366
|
+
onPlaying?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
367
|
+
onPlayingCapture?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
368
|
+
onProgress?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
369
|
+
onProgressCapture?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
370
|
+
onRateChange?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
371
|
+
onRateChangeCapture?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
372
|
+
onSeeked?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
373
|
+
onSeekedCapture?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
374
|
+
onSeeking?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
375
|
+
onSeekingCapture?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
376
|
+
onStalled?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
377
|
+
onStalledCapture?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
378
|
+
onSuspend?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
379
|
+
onSuspendCapture?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
380
|
+
onTimeUpdate?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
381
|
+
onTimeUpdateCapture?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
382
|
+
onVolumeChange?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
383
|
+
onVolumeChangeCapture?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
384
|
+
onWaiting?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
385
|
+
onWaitingCapture?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
386
|
+
onAuxClick?: react.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
387
|
+
onAuxClickCapture?: react.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
388
|
+
onClickCapture?: react.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
389
|
+
onContextMenu?: react.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
390
|
+
onContextMenuCapture?: react.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
391
|
+
onDoubleClick?: react.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
392
|
+
onDoubleClickCapture?: react.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
393
|
+
onDrag?: react.DragEventHandler<HTMLAnchorElement> | undefined;
|
|
394
|
+
onDragCapture?: react.DragEventHandler<HTMLAnchorElement> | undefined;
|
|
395
|
+
onDragEnd?: react.DragEventHandler<HTMLAnchorElement> | undefined;
|
|
396
|
+
onDragEndCapture?: react.DragEventHandler<HTMLAnchorElement> | undefined;
|
|
397
|
+
onDragEnter?: react.DragEventHandler<HTMLAnchorElement> | undefined;
|
|
398
|
+
onDragEnterCapture?: react.DragEventHandler<HTMLAnchorElement> | undefined;
|
|
399
|
+
onDragExit?: react.DragEventHandler<HTMLAnchorElement> | undefined;
|
|
400
|
+
onDragExitCapture?: react.DragEventHandler<HTMLAnchorElement> | undefined;
|
|
401
|
+
onDragLeave?: react.DragEventHandler<HTMLAnchorElement> | undefined;
|
|
402
|
+
onDragLeaveCapture?: react.DragEventHandler<HTMLAnchorElement> | undefined;
|
|
403
|
+
onDragOver?: react.DragEventHandler<HTMLAnchorElement> | undefined;
|
|
404
|
+
onDragOverCapture?: react.DragEventHandler<HTMLAnchorElement> | undefined;
|
|
405
|
+
onDragStart?: react.DragEventHandler<HTMLAnchorElement> | undefined;
|
|
406
|
+
onDragStartCapture?: react.DragEventHandler<HTMLAnchorElement> | undefined;
|
|
407
|
+
onDrop?: react.DragEventHandler<HTMLAnchorElement> | undefined;
|
|
408
|
+
onDropCapture?: react.DragEventHandler<HTMLAnchorElement> | undefined;
|
|
409
|
+
onMouseDown?: react.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
410
|
+
onMouseDownCapture?: react.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
411
|
+
onMouseEnter?: react.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
412
|
+
onMouseLeave?: react.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
413
|
+
onMouseMove?: react.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
414
|
+
onMouseMoveCapture?: react.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
415
|
+
onMouseOut?: react.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
416
|
+
onMouseOutCapture?: react.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
417
|
+
onMouseOver?: react.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
418
|
+
onMouseOverCapture?: react.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
419
|
+
onMouseUp?: react.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
420
|
+
onMouseUpCapture?: react.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
421
|
+
onSelect?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
422
|
+
onSelectCapture?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
423
|
+
onTouchCancel?: react.TouchEventHandler<HTMLAnchorElement> | undefined;
|
|
424
|
+
onTouchCancelCapture?: react.TouchEventHandler<HTMLAnchorElement> | undefined;
|
|
425
|
+
onTouchEnd?: react.TouchEventHandler<HTMLAnchorElement> | undefined;
|
|
426
|
+
onTouchEndCapture?: react.TouchEventHandler<HTMLAnchorElement> | undefined;
|
|
427
|
+
onTouchMove?: react.TouchEventHandler<HTMLAnchorElement> | undefined;
|
|
428
|
+
onTouchMoveCapture?: react.TouchEventHandler<HTMLAnchorElement> | undefined;
|
|
429
|
+
onTouchStart?: react.TouchEventHandler<HTMLAnchorElement> | undefined;
|
|
430
|
+
onTouchStartCapture?: react.TouchEventHandler<HTMLAnchorElement> | undefined;
|
|
431
|
+
onPointerDown?: react.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
432
|
+
onPointerDownCapture?: react.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
433
|
+
onPointerMove?: react.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
434
|
+
onPointerMoveCapture?: react.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
435
|
+
onPointerUp?: react.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
436
|
+
onPointerUpCapture?: react.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
437
|
+
onPointerCancel?: react.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
438
|
+
onPointerCancelCapture?: react.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
439
|
+
onPointerEnter?: react.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
440
|
+
onPointerLeave?: react.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
441
|
+
onPointerOver?: react.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
442
|
+
onPointerOverCapture?: react.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
443
|
+
onPointerOut?: react.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
444
|
+
onPointerOutCapture?: react.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
445
|
+
onGotPointerCapture?: react.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
446
|
+
onGotPointerCaptureCapture?: react.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
447
|
+
onLostPointerCapture?: react.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
448
|
+
onLostPointerCaptureCapture?: react.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
449
|
+
onScroll?: react.UIEventHandler<HTMLAnchorElement> | undefined;
|
|
450
|
+
onScrollCapture?: react.UIEventHandler<HTMLAnchorElement> | undefined;
|
|
451
|
+
onWheel?: react.WheelEventHandler<HTMLAnchorElement> | undefined;
|
|
452
|
+
onWheelCapture?: react.WheelEventHandler<HTMLAnchorElement> | undefined;
|
|
453
|
+
onAnimationStart?: react.AnimationEventHandler<HTMLAnchorElement> | undefined;
|
|
454
|
+
onAnimationStartCapture?: react.AnimationEventHandler<HTMLAnchorElement> | undefined;
|
|
455
|
+
onAnimationEnd?: react.AnimationEventHandler<HTMLAnchorElement> | undefined;
|
|
456
|
+
onAnimationEndCapture?: react.AnimationEventHandler<HTMLAnchorElement> | undefined;
|
|
457
|
+
onAnimationIteration?: react.AnimationEventHandler<HTMLAnchorElement> | undefined;
|
|
458
|
+
onAnimationIterationCapture?: react.AnimationEventHandler<HTMLAnchorElement> | undefined;
|
|
459
|
+
onTransitionEnd?: react.TransitionEventHandler<HTMLAnchorElement> | undefined;
|
|
460
|
+
onTransitionEndCapture?: react.TransitionEventHandler<HTMLAnchorElement> | undefined;
|
|
461
|
+
onClick: (e: MouseEvent<HTMLAnchorElement>) => void;
|
|
462
|
+
}, HTMLElement>;
|
|
463
|
+
NavLink: ({ to, children, onClick, ...rest }: LinkProps) => react.DetailedReactHTMLElement<{
|
|
464
|
+
download?: any;
|
|
465
|
+
href: string;
|
|
466
|
+
hrefLang?: string | undefined;
|
|
467
|
+
media?: string | undefined;
|
|
468
|
+
ping?: string | undefined;
|
|
469
|
+
target?: react.HTMLAttributeAnchorTarget | undefined;
|
|
470
|
+
type?: string | undefined;
|
|
471
|
+
referrerPolicy?: react.HTMLAttributeReferrerPolicy | undefined;
|
|
472
|
+
defaultChecked?: boolean | undefined;
|
|
473
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
|
474
|
+
suppressContentEditableWarning?: boolean | undefined;
|
|
475
|
+
suppressHydrationWarning?: boolean | undefined;
|
|
476
|
+
accessKey?: string | undefined;
|
|
477
|
+
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {});
|
|
478
|
+
autoFocus?: boolean | undefined;
|
|
479
|
+
className?: string | undefined;
|
|
480
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
481
|
+
contextMenu?: string | undefined;
|
|
482
|
+
dir?: string | undefined;
|
|
483
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
484
|
+
enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
|
|
485
|
+
hidden?: boolean | undefined;
|
|
486
|
+
id?: string | undefined;
|
|
487
|
+
lang?: string | undefined;
|
|
488
|
+
nonce?: string | undefined;
|
|
489
|
+
slot?: string | undefined;
|
|
490
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
491
|
+
style?: react.CSSProperties | undefined;
|
|
492
|
+
tabIndex?: number | undefined;
|
|
493
|
+
title?: string | undefined;
|
|
494
|
+
translate?: "yes" | "no" | undefined;
|
|
495
|
+
radioGroup?: string | undefined;
|
|
496
|
+
role?: react.AriaRole | undefined;
|
|
497
|
+
about?: string | undefined;
|
|
498
|
+
content?: string | undefined;
|
|
499
|
+
datatype?: string | undefined;
|
|
500
|
+
inlist?: any;
|
|
501
|
+
prefix?: string | undefined;
|
|
502
|
+
property?: string | undefined;
|
|
503
|
+
rel?: string | undefined;
|
|
504
|
+
resource?: string | undefined;
|
|
505
|
+
rev?: string | undefined;
|
|
506
|
+
typeof?: string | undefined;
|
|
507
|
+
vocab?: string | undefined;
|
|
508
|
+
autoCorrect?: string | undefined;
|
|
509
|
+
autoSave?: string | undefined;
|
|
510
|
+
color?: string | undefined;
|
|
511
|
+
itemProp?: string | undefined;
|
|
512
|
+
itemScope?: boolean | undefined;
|
|
513
|
+
itemType?: string | undefined;
|
|
514
|
+
itemID?: string | undefined;
|
|
515
|
+
itemRef?: string | undefined;
|
|
516
|
+
results?: number | undefined;
|
|
517
|
+
security?: string | undefined;
|
|
518
|
+
unselectable?: "on" | "off" | undefined;
|
|
519
|
+
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
520
|
+
is?: string | undefined;
|
|
521
|
+
exportparts?: string | undefined;
|
|
522
|
+
part?: string | undefined;
|
|
523
|
+
"aria-activedescendant"?: string | undefined;
|
|
524
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
525
|
+
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
|
|
526
|
+
"aria-braillelabel"?: string | undefined;
|
|
527
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
528
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
529
|
+
"aria-checked"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
530
|
+
"aria-colcount"?: number | undefined;
|
|
531
|
+
"aria-colindex"?: number | undefined;
|
|
532
|
+
"aria-colindextext"?: string | undefined;
|
|
533
|
+
"aria-colspan"?: number | undefined;
|
|
534
|
+
"aria-controls"?: string | undefined;
|
|
535
|
+
"aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined;
|
|
536
|
+
"aria-describedby"?: string | undefined;
|
|
537
|
+
"aria-description"?: string | undefined;
|
|
538
|
+
"aria-details"?: string | undefined;
|
|
539
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
540
|
+
"aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined;
|
|
541
|
+
"aria-errormessage"?: string | undefined;
|
|
542
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
543
|
+
"aria-flowto"?: string | undefined;
|
|
544
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
545
|
+
"aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined;
|
|
546
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
547
|
+
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
|
548
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
549
|
+
"aria-label"?: string | undefined;
|
|
550
|
+
"aria-labelledby"?: string | undefined;
|
|
551
|
+
"aria-level"?: number | undefined;
|
|
552
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
553
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
554
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
555
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
556
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
557
|
+
"aria-owns"?: string | undefined;
|
|
558
|
+
"aria-placeholder"?: string | undefined;
|
|
559
|
+
"aria-posinset"?: number | undefined;
|
|
560
|
+
"aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
561
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
562
|
+
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
|
|
563
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
564
|
+
"aria-roledescription"?: string | undefined;
|
|
565
|
+
"aria-rowcount"?: number | undefined;
|
|
566
|
+
"aria-rowindex"?: number | undefined;
|
|
567
|
+
"aria-rowindextext"?: string | undefined;
|
|
568
|
+
"aria-rowspan"?: number | undefined;
|
|
569
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
570
|
+
"aria-setsize"?: number | undefined;
|
|
571
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
572
|
+
"aria-valuemax"?: number | undefined;
|
|
573
|
+
"aria-valuemin"?: number | undefined;
|
|
574
|
+
"aria-valuenow"?: number | undefined;
|
|
575
|
+
"aria-valuetext"?: string | undefined;
|
|
576
|
+
dangerouslySetInnerHTML?: {
|
|
577
|
+
__html: string | TrustedHTML;
|
|
578
|
+
} | undefined;
|
|
579
|
+
onCopy?: react.ClipboardEventHandler<HTMLAnchorElement> | undefined;
|
|
580
|
+
onCopyCapture?: react.ClipboardEventHandler<HTMLAnchorElement> | undefined;
|
|
581
|
+
onCut?: react.ClipboardEventHandler<HTMLAnchorElement> | undefined;
|
|
582
|
+
onCutCapture?: react.ClipboardEventHandler<HTMLAnchorElement> | undefined;
|
|
583
|
+
onPaste?: react.ClipboardEventHandler<HTMLAnchorElement> | undefined;
|
|
584
|
+
onPasteCapture?: react.ClipboardEventHandler<HTMLAnchorElement> | undefined;
|
|
585
|
+
onCompositionEnd?: react.CompositionEventHandler<HTMLAnchorElement> | undefined;
|
|
586
|
+
onCompositionEndCapture?: react.CompositionEventHandler<HTMLAnchorElement> | undefined;
|
|
587
|
+
onCompositionStart?: react.CompositionEventHandler<HTMLAnchorElement> | undefined;
|
|
588
|
+
onCompositionStartCapture?: react.CompositionEventHandler<HTMLAnchorElement> | undefined;
|
|
589
|
+
onCompositionUpdate?: react.CompositionEventHandler<HTMLAnchorElement> | undefined;
|
|
590
|
+
onCompositionUpdateCapture?: react.CompositionEventHandler<HTMLAnchorElement> | undefined;
|
|
591
|
+
onFocus?: react.FocusEventHandler<HTMLAnchorElement> | undefined;
|
|
592
|
+
onFocusCapture?: react.FocusEventHandler<HTMLAnchorElement> | undefined;
|
|
593
|
+
onBlur?: react.FocusEventHandler<HTMLAnchorElement> | undefined;
|
|
594
|
+
onBlurCapture?: react.FocusEventHandler<HTMLAnchorElement> | undefined;
|
|
595
|
+
onChange?: react.FormEventHandler<HTMLAnchorElement> | undefined;
|
|
596
|
+
onChangeCapture?: react.FormEventHandler<HTMLAnchorElement> | undefined;
|
|
597
|
+
onBeforeInput?: react.InputEventHandler<HTMLAnchorElement> | undefined;
|
|
598
|
+
onBeforeInputCapture?: react.FormEventHandler<HTMLAnchorElement> | undefined;
|
|
599
|
+
onInput?: react.FormEventHandler<HTMLAnchorElement> | undefined;
|
|
600
|
+
onInputCapture?: react.FormEventHandler<HTMLAnchorElement> | undefined;
|
|
601
|
+
onReset?: react.FormEventHandler<HTMLAnchorElement> | undefined;
|
|
602
|
+
onResetCapture?: react.FormEventHandler<HTMLAnchorElement> | undefined;
|
|
603
|
+
onSubmit?: react.FormEventHandler<HTMLAnchorElement> | undefined;
|
|
604
|
+
onSubmitCapture?: react.FormEventHandler<HTMLAnchorElement> | undefined;
|
|
605
|
+
onInvalid?: react.FormEventHandler<HTMLAnchorElement> | undefined;
|
|
606
|
+
onInvalidCapture?: react.FormEventHandler<HTMLAnchorElement> | undefined;
|
|
607
|
+
onLoad?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
608
|
+
onLoadCapture?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
609
|
+
onError?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
610
|
+
onErrorCapture?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
611
|
+
onKeyDown?: react.KeyboardEventHandler<HTMLAnchorElement> | undefined;
|
|
612
|
+
onKeyDownCapture?: react.KeyboardEventHandler<HTMLAnchorElement> | undefined;
|
|
613
|
+
onKeyPress?: react.KeyboardEventHandler<HTMLAnchorElement> | undefined;
|
|
614
|
+
onKeyPressCapture?: react.KeyboardEventHandler<HTMLAnchorElement> | undefined;
|
|
615
|
+
onKeyUp?: react.KeyboardEventHandler<HTMLAnchorElement> | undefined;
|
|
616
|
+
onKeyUpCapture?: react.KeyboardEventHandler<HTMLAnchorElement> | undefined;
|
|
617
|
+
onAbort?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
618
|
+
onAbortCapture?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
619
|
+
onCanPlay?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
620
|
+
onCanPlayCapture?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
621
|
+
onCanPlayThrough?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
622
|
+
onCanPlayThroughCapture?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
623
|
+
onDurationChange?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
624
|
+
onDurationChangeCapture?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
625
|
+
onEmptied?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
626
|
+
onEmptiedCapture?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
627
|
+
onEncrypted?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
628
|
+
onEncryptedCapture?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
629
|
+
onEnded?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
630
|
+
onEndedCapture?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
631
|
+
onLoadedData?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
632
|
+
onLoadedDataCapture?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
633
|
+
onLoadedMetadata?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
634
|
+
onLoadedMetadataCapture?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
635
|
+
onLoadStart?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
636
|
+
onLoadStartCapture?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
637
|
+
onPause?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
638
|
+
onPauseCapture?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
639
|
+
onPlay?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
640
|
+
onPlayCapture?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
641
|
+
onPlaying?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
642
|
+
onPlayingCapture?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
643
|
+
onProgress?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
644
|
+
onProgressCapture?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
645
|
+
onRateChange?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
646
|
+
onRateChangeCapture?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
647
|
+
onSeeked?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
648
|
+
onSeekedCapture?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
649
|
+
onSeeking?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
650
|
+
onSeekingCapture?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
651
|
+
onStalled?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
652
|
+
onStalledCapture?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
653
|
+
onSuspend?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
654
|
+
onSuspendCapture?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
655
|
+
onTimeUpdate?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
656
|
+
onTimeUpdateCapture?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
657
|
+
onVolumeChange?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
658
|
+
onVolumeChangeCapture?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
659
|
+
onWaiting?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
660
|
+
onWaitingCapture?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
661
|
+
onAuxClick?: react.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
662
|
+
onAuxClickCapture?: react.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
663
|
+
onClickCapture?: react.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
664
|
+
onContextMenu?: react.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
665
|
+
onContextMenuCapture?: react.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
666
|
+
onDoubleClick?: react.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
667
|
+
onDoubleClickCapture?: react.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
668
|
+
onDrag?: react.DragEventHandler<HTMLAnchorElement> | undefined;
|
|
669
|
+
onDragCapture?: react.DragEventHandler<HTMLAnchorElement> | undefined;
|
|
670
|
+
onDragEnd?: react.DragEventHandler<HTMLAnchorElement> | undefined;
|
|
671
|
+
onDragEndCapture?: react.DragEventHandler<HTMLAnchorElement> | undefined;
|
|
672
|
+
onDragEnter?: react.DragEventHandler<HTMLAnchorElement> | undefined;
|
|
673
|
+
onDragEnterCapture?: react.DragEventHandler<HTMLAnchorElement> | undefined;
|
|
674
|
+
onDragExit?: react.DragEventHandler<HTMLAnchorElement> | undefined;
|
|
675
|
+
onDragExitCapture?: react.DragEventHandler<HTMLAnchorElement> | undefined;
|
|
676
|
+
onDragLeave?: react.DragEventHandler<HTMLAnchorElement> | undefined;
|
|
677
|
+
onDragLeaveCapture?: react.DragEventHandler<HTMLAnchorElement> | undefined;
|
|
678
|
+
onDragOver?: react.DragEventHandler<HTMLAnchorElement> | undefined;
|
|
679
|
+
onDragOverCapture?: react.DragEventHandler<HTMLAnchorElement> | undefined;
|
|
680
|
+
onDragStart?: react.DragEventHandler<HTMLAnchorElement> | undefined;
|
|
681
|
+
onDragStartCapture?: react.DragEventHandler<HTMLAnchorElement> | undefined;
|
|
682
|
+
onDrop?: react.DragEventHandler<HTMLAnchorElement> | undefined;
|
|
683
|
+
onDropCapture?: react.DragEventHandler<HTMLAnchorElement> | undefined;
|
|
684
|
+
onMouseDown?: react.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
685
|
+
onMouseDownCapture?: react.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
686
|
+
onMouseEnter?: react.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
687
|
+
onMouseLeave?: react.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
688
|
+
onMouseMove?: react.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
689
|
+
onMouseMoveCapture?: react.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
690
|
+
onMouseOut?: react.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
691
|
+
onMouseOutCapture?: react.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
692
|
+
onMouseOver?: react.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
693
|
+
onMouseOverCapture?: react.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
694
|
+
onMouseUp?: react.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
695
|
+
onMouseUpCapture?: react.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
696
|
+
onSelect?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
697
|
+
onSelectCapture?: react.ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
698
|
+
onTouchCancel?: react.TouchEventHandler<HTMLAnchorElement> | undefined;
|
|
699
|
+
onTouchCancelCapture?: react.TouchEventHandler<HTMLAnchorElement> | undefined;
|
|
700
|
+
onTouchEnd?: react.TouchEventHandler<HTMLAnchorElement> | undefined;
|
|
701
|
+
onTouchEndCapture?: react.TouchEventHandler<HTMLAnchorElement> | undefined;
|
|
702
|
+
onTouchMove?: react.TouchEventHandler<HTMLAnchorElement> | undefined;
|
|
703
|
+
onTouchMoveCapture?: react.TouchEventHandler<HTMLAnchorElement> | undefined;
|
|
704
|
+
onTouchStart?: react.TouchEventHandler<HTMLAnchorElement> | undefined;
|
|
705
|
+
onTouchStartCapture?: react.TouchEventHandler<HTMLAnchorElement> | undefined;
|
|
706
|
+
onPointerDown?: react.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
707
|
+
onPointerDownCapture?: react.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
708
|
+
onPointerMove?: react.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
709
|
+
onPointerMoveCapture?: react.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
710
|
+
onPointerUp?: react.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
711
|
+
onPointerUpCapture?: react.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
712
|
+
onPointerCancel?: react.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
713
|
+
onPointerCancelCapture?: react.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
714
|
+
onPointerEnter?: react.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
715
|
+
onPointerLeave?: react.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
716
|
+
onPointerOver?: react.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
717
|
+
onPointerOverCapture?: react.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
718
|
+
onPointerOut?: react.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
719
|
+
onPointerOutCapture?: react.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
720
|
+
onGotPointerCapture?: react.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
721
|
+
onGotPointerCaptureCapture?: react.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
722
|
+
onLostPointerCapture?: react.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
723
|
+
onLostPointerCaptureCapture?: react.PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
724
|
+
onScroll?: react.UIEventHandler<HTMLAnchorElement> | undefined;
|
|
725
|
+
onScrollCapture?: react.UIEventHandler<HTMLAnchorElement> | undefined;
|
|
726
|
+
onWheel?: react.WheelEventHandler<HTMLAnchorElement> | undefined;
|
|
727
|
+
onWheelCapture?: react.WheelEventHandler<HTMLAnchorElement> | undefined;
|
|
728
|
+
onAnimationStart?: react.AnimationEventHandler<HTMLAnchorElement> | undefined;
|
|
729
|
+
onAnimationStartCapture?: react.AnimationEventHandler<HTMLAnchorElement> | undefined;
|
|
730
|
+
onAnimationEnd?: react.AnimationEventHandler<HTMLAnchorElement> | undefined;
|
|
731
|
+
onAnimationEndCapture?: react.AnimationEventHandler<HTMLAnchorElement> | undefined;
|
|
732
|
+
onAnimationIteration?: react.AnimationEventHandler<HTMLAnchorElement> | undefined;
|
|
733
|
+
onAnimationIterationCapture?: react.AnimationEventHandler<HTMLAnchorElement> | undefined;
|
|
734
|
+
onTransitionEnd?: react.TransitionEventHandler<HTMLAnchorElement> | undefined;
|
|
735
|
+
onTransitionEndCapture?: react.TransitionEventHandler<HTMLAnchorElement> | undefined;
|
|
736
|
+
onClick: (e: MouseEvent<HTMLAnchorElement>) => void;
|
|
737
|
+
}, HTMLElement>;
|
|
738
|
+
};
|
|
739
|
+
|
|
740
|
+
export { type AuthenticatedQueryResult, BaseMcpService, type DefinePlatformReactPluginPageOptions, MissingViewFallback, type PluginPageDefinerConfig, PluginStyleScope, type ReactRouterShimOptions, TemplateContext, type TemplateManifest, type ToolInvoker, type ViewComponent, createPluginPageDefiner, createReactRouterShim, createUseView, definePlatformReactPluginPage, injectPluginStyles, isComponent, notViaMcp, useAuthenticatedQueries, useAuthenticatedQuery, useToolInvoker, useToolInvokerMap, useView };
|