@stainless-api/docs-ui 0.1.0-beta.31 → 0.1.0-beta.33
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/{breadcrumbs-D2C-ipke.d.ts → breadcrumbs-BWIz-BrA.d.ts} +2 -2
- package/dist/{component-generics-CGwo6qAl.d.ts → component-generics-BLXXX1dz.d.ts} +2 -2
- package/dist/components/breadcrumbs.d.ts +1 -1
- package/dist/components/chat.d.ts +3 -3
- package/dist/components/icons.d.ts +10 -10
- package/dist/components/index.d.ts +9 -9
- package/dist/components/method.d.ts +1 -1
- package/dist/components/primitives.d.ts +1 -1
- package/dist/components/properties.d.ts +1 -1
- package/dist/components/sdk.d.ts +2 -2
- package/dist/components/sidebar.d.ts +1 -1
- package/dist/components/snippets.d.ts +3 -3
- package/dist/contexts/component-generics.d.ts +1 -1
- package/dist/contexts/component-types.d.ts +10 -10
- package/dist/contexts/component.d.ts +13 -13
- package/dist/contexts/docs.d.ts +1 -1
- package/dist/contexts/index.d.ts +17 -17
- package/dist/contexts/markdown.d.ts +1 -1
- package/dist/contexts/navigation.d.ts +2 -2
- package/dist/contexts/search.d.ts +3 -3
- package/dist/contexts/use-components.d.ts +9 -9
- package/dist/{docs-C5sBbvz9.d.ts → docs-CeAqG2cp.d.ts} +3 -3
- package/dist/{index-Cx9sLoAB.d.ts → index-DQjgSp7S.d.ts} +6 -6
- package/dist/{index-BZvOzjGA.d.ts → index-DfX9K3qH.d.ts} +7 -7
- package/dist/{index-Cwjt4PqJ.d.ts → index-lRJ6GzAM.d.ts} +26 -26
- package/dist/index.d.ts +17 -17
- package/dist/languages/go.d.ts +10 -10
- package/dist/languages/http.d.ts +10 -10
- package/dist/languages/index.d.ts +10 -10
- package/dist/languages/java.d.ts +10 -10
- package/dist/languages/python.d.ts +10 -10
- package/dist/languages/ruby.d.ts +10 -10
- package/dist/languages/typescript.d.ts +10 -10
- package/dist/markdown/index.d.ts +3 -3
- package/dist/markdown/utils.d.ts +3 -3
- package/dist/{markdown-CswQW7Au.d.ts → markdown-B2ACIydo.d.ts} +2 -2
- package/dist/{method-D0-gsw3H.d.ts → method-BP_Mz4r_.d.ts} +7 -7
- package/dist/{navigation-Bc58Zt6l.d.ts → navigation-DQcsuSnT.d.ts} +3 -3
- package/dist/{primitives-DKSwbXPi.d.ts → primitives-DZjozImK.d.ts} +9 -9
- package/dist/{properties-4IkL0IVR.d.ts → properties-DtGXYw8M.d.ts} +4 -4
- package/dist/{routing-ByeZ2P3d.d.ts → routing-CHvzedJA.d.ts} +1 -1
- package/dist/routing.d.ts +1 -1
- package/dist/{sdk-D1acaxlr.d.ts → sdk-CUDyIYiV.d.ts} +14 -14
- package/dist/search/index.d.ts +2 -2
- package/dist/search/providers/algolia.d.ts +2 -2
- package/dist/search/providers/fuse.d.ts +2 -2
- package/dist/search/providers/pagefind.d.ts +2 -2
- package/dist/search/providers/walker.d.ts +2 -2
- package/dist/search/types.d.ts +2 -2
- package/dist/{search-BwZ0UK72.d.ts → search-xIU7N2Yv.d.ts} +3 -3
- package/dist/{sidebar-rqdLbjBO.d.ts → sidebar-D3AJHVyb.d.ts} +5 -5
- package/dist/{snippets-Coq_j3S0.d.ts → snippets-8uy93yC6.d.ts} +7 -7
- package/dist/styles/main.css +6 -0
- package/dist/{types-BKUIuYYk.d.ts → types-fEIVKcbt.d.ts} +1 -1
- package/dist/{utils-NYMx28lc.d.ts → utils-DYoSclrR.d.ts} +2 -2
- package/package.json +2 -4
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React$1 from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime54 from "react/jsx-runtime";
|
|
3
3
|
import * as SDKJSON from "@stainless/sdk-json";
|
|
4
4
|
|
|
5
5
|
//#region src/components/sidebar.d.ts
|
|
@@ -12,25 +12,25 @@ declare function SidebarExpander({
|
|
|
12
12
|
open,
|
|
13
13
|
summary,
|
|
14
14
|
children
|
|
15
|
-
}: SidebarExpanderProps):
|
|
15
|
+
}: SidebarExpanderProps): react_jsx_runtime54.JSX.Element;
|
|
16
16
|
type SidebarMethodProps = {
|
|
17
17
|
method: SDKJSON.Method;
|
|
18
18
|
};
|
|
19
19
|
declare function SidebarMethod({
|
|
20
20
|
method
|
|
21
|
-
}: SidebarMethodProps):
|
|
21
|
+
}: SidebarMethodProps): react_jsx_runtime54.JSX.Element;
|
|
22
22
|
type SidebarResourceProps = {
|
|
23
23
|
resource: SDKJSON.Resource;
|
|
24
24
|
};
|
|
25
25
|
declare function SidebarResource({
|
|
26
26
|
resource
|
|
27
|
-
}: SidebarResourceProps):
|
|
27
|
+
}: SidebarResourceProps): react_jsx_runtime54.JSX.Element;
|
|
28
28
|
type SidebarProps = {
|
|
29
29
|
resources: SDKJSON.Resource[];
|
|
30
30
|
selectedPath?: string;
|
|
31
31
|
};
|
|
32
32
|
declare function Sidebar({
|
|
33
33
|
resources
|
|
34
|
-
}: SidebarProps):
|
|
34
|
+
}: SidebarProps): react_jsx_runtime54.JSX.Element;
|
|
35
35
|
//#endregion
|
|
36
36
|
export { SidebarProps as a, SidebarMethodProps as i, SidebarExpander as n, SidebarResource as o, SidebarMethod as r, SidebarResourceProps as s, Sidebar as t };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { C as TransformRequestSnippetFn } from "./sdk-
|
|
1
|
+
import { C as TransformRequestSnippetFn } from "./sdk-CUDyIYiV.js";
|
|
2
2
|
import * as React$1 from "react";
|
|
3
|
-
import * as
|
|
3
|
+
import * as react_jsx_runtime64 from "react/jsx-runtime";
|
|
4
4
|
import * as SDKJSON from "@stainless/sdk-json";
|
|
5
5
|
|
|
6
6
|
//#region src/components/snippets.d.ts
|
|
@@ -12,7 +12,7 @@ type SnippetCodeProps = {
|
|
|
12
12
|
declare function SnippetCode({
|
|
13
13
|
content,
|
|
14
14
|
language
|
|
15
|
-
}: SnippetCodeProps):
|
|
15
|
+
}: SnippetCodeProps): react_jsx_runtime64.JSX.Element;
|
|
16
16
|
type SnippetProps = {
|
|
17
17
|
method: SDKJSON.Method;
|
|
18
18
|
requestTitle?: React$1.ReactNode;
|
|
@@ -24,23 +24,23 @@ type SnippetContainerProps = {
|
|
|
24
24
|
};
|
|
25
25
|
declare function SnippetContainer({
|
|
26
26
|
children
|
|
27
|
-
}: SnippetContainerProps):
|
|
27
|
+
}: SnippetContainerProps): react_jsx_runtime64.JSX.Element;
|
|
28
28
|
type SnippetRequestContainerProps = {
|
|
29
29
|
children?: React$1.ReactNode;
|
|
30
30
|
signature?: string;
|
|
31
31
|
};
|
|
32
32
|
declare function SnippetRequestContainer({
|
|
33
33
|
children
|
|
34
|
-
}: SnippetRequestContainerProps):
|
|
34
|
+
}: SnippetRequestContainerProps): react_jsx_runtime64.JSX.Element;
|
|
35
35
|
declare function Snippet({
|
|
36
36
|
requestTitle,
|
|
37
37
|
method,
|
|
38
38
|
transformRequestSnippet
|
|
39
|
-
}: SnippetProps):
|
|
39
|
+
}: SnippetProps): react_jsx_runtime64.JSX.Element | null;
|
|
40
40
|
declare function SnippetResponse({
|
|
41
41
|
responses
|
|
42
42
|
}: {
|
|
43
43
|
responses: SDKJSON.Method['exampleResponses'];
|
|
44
|
-
}):
|
|
44
|
+
}): react_jsx_runtime64.JSX.Element | null;
|
|
45
45
|
//#endregion
|
|
46
46
|
export { SnippetContainerProps as a, SnippetRequestContainerProps as c, SnippetContainer as i, SnippetResponse as l, SnippetCode as n, SnippetProps as o, SnippetCodeProps as r, SnippetRequestContainer as s, Snippet as t };
|
package/dist/styles/main.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { t as DocsLanguage } from "./routing-
|
|
2
|
-
import { C as TransformRequestSnippetFn } from "./sdk-
|
|
1
|
+
import { t as DocsLanguage } from "./routing-CHvzedJA.js";
|
|
2
|
+
import { C as TransformRequestSnippetFn } from "./sdk-CUDyIYiV.js";
|
|
3
3
|
import * as SDKJSON from "@stainless/sdk-json";
|
|
4
4
|
|
|
5
5
|
//#region src/markdown/utils.d.ts
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stainless-api/docs-ui",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.1.0-beta.
|
|
4
|
+
"version": "0.1.0-beta.33",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -68,15 +68,13 @@
|
|
|
68
68
|
},
|
|
69
69
|
"dependencies": {
|
|
70
70
|
"@algolia/client-search": "^5.25.0",
|
|
71
|
-
"@langchain/community": "^0.3.16",
|
|
72
71
|
"@markdoc/markdoc": "^0.5.2",
|
|
73
72
|
"ai": "4.3.19",
|
|
74
73
|
"clsx": "^2.1.1",
|
|
75
74
|
"fuse.js": "^7.1.0",
|
|
76
75
|
"htmlparser2": "^10.0.0",
|
|
77
76
|
"lucide-react": "^0.553.0",
|
|
78
|
-
"
|
|
79
|
-
"@stainless-api/ui-primitives": "0.1.0-beta.24"
|
|
77
|
+
"@stainless-api/ui-primitives": "0.1.0-beta.25"
|
|
80
78
|
},
|
|
81
79
|
"devDependencies": {
|
|
82
80
|
"@types/node": "24.5.1",
|