@redocly/replay 0.13.0-next.3 → 0.13.0-next.5
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/replay.cjs +620 -612
- package/dist/replay.d.ts +4 -4
- package/dist/replay.js +19575 -19717
- package/package.json +10 -10
package/dist/replay.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { FileResponse } from '@tauri-apps/plugin-dialog';
|
|
2
2
|
import { ImmutableObject } from '@hookstate/core';
|
|
3
|
-
import { JSX
|
|
3
|
+
import { JSX } from 'react/jsx-runtime';
|
|
4
4
|
import { NamedExoticComponent } from 'react';
|
|
5
5
|
import { ReactElement } from 'react';
|
|
6
6
|
|
|
@@ -47,7 +47,7 @@ declare type ClientCredentialsOAuthFlowsObject = {
|
|
|
47
47
|
|
|
48
48
|
declare type ConvertOperationFunction = (path: string, method: string, openAPI: any) => OpenAPIOperation | undefined;
|
|
49
49
|
|
|
50
|
-
export declare function EmbeddedReplay(props: ReplayAppProps):
|
|
50
|
+
export declare function EmbeddedReplay(props: ReplayAppProps): JSX.Element;
|
|
51
51
|
|
|
52
52
|
declare type GetOperationURLFunction = (operationId?: string, source?: Source) => string | undefined;
|
|
53
53
|
|
|
@@ -188,7 +188,7 @@ declare type PasswordOAuthFlowsObject = {
|
|
|
188
188
|
scopes: Record<string, string>;
|
|
189
189
|
};
|
|
190
190
|
|
|
191
|
-
export declare function Replay(props: ReplayAppProps):
|
|
191
|
+
export declare function Replay(props: ReplayAppProps): JSX.Element;
|
|
192
192
|
|
|
193
193
|
declare type ReplayAppProps = {
|
|
194
194
|
activeOperationId?: string;
|
|
@@ -205,7 +205,7 @@ export declare type ReplayOnChangeParams = {
|
|
|
205
205
|
}>;
|
|
206
206
|
};
|
|
207
207
|
|
|
208
|
-
export declare function ReplayOverlay({ onClose, onLoad, onRequestChange, ...props }: ReplayOverlayProps):
|
|
208
|
+
export declare function ReplayOverlay({ onClose, onLoad, onRequestChange, ...props }: ReplayOverlayProps): JSX.Element;
|
|
209
209
|
|
|
210
210
|
declare type ReplayOverlayProps = {
|
|
211
211
|
onClose: () => void;
|