@lonik/prestige 0.6.0 → 0.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ui.d.ts +15 -15
- package/package.json +1 -1
package/dist/ui.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { n as SidebarType } from "./content.types-C35WR0tv.js";
|
|
2
2
|
import { TocItem } from "remark-flexible-toc";
|
|
3
3
|
import React, { PropsWithChildren, ReactNode } from "react";
|
|
4
|
-
import * as
|
|
4
|
+
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
5
5
|
import { Tabs as Tabs$1 } from "@base-ui/react/tabs";
|
|
6
6
|
|
|
7
7
|
//#region src/ui/components/aside/aside.d.ts
|
|
@@ -17,7 +17,7 @@ declare function Aside({
|
|
|
17
17
|
children,
|
|
18
18
|
className,
|
|
19
19
|
...props
|
|
20
|
-
}: AsideProps):
|
|
20
|
+
}: AsideProps): react_jsx_runtime0.JSX.Element;
|
|
21
21
|
//#endregion
|
|
22
22
|
//#region src/ui/components/code/code.d.ts
|
|
23
23
|
interface CodeProps {
|
|
@@ -27,7 +27,7 @@ interface CodeProps {
|
|
|
27
27
|
declare function Code({
|
|
28
28
|
code,
|
|
29
29
|
language
|
|
30
|
-
}: CodeProps):
|
|
30
|
+
}: CodeProps): react_jsx_runtime0.JSX.Element;
|
|
31
31
|
//#endregion
|
|
32
32
|
//#region src/ui/components/package-managers/package-managers.d.ts
|
|
33
33
|
type CommandType = "add" | "create" | "exec" | "run";
|
|
@@ -48,26 +48,26 @@ declare function PackageManagers({
|
|
|
48
48
|
dev,
|
|
49
49
|
args,
|
|
50
50
|
className
|
|
51
|
-
}: PackageManagersProps):
|
|
51
|
+
}: PackageManagersProps): react_jsx_runtime0.JSX.Element;
|
|
52
52
|
//#endregion
|
|
53
53
|
//#region src/ui/components/tabs/tabs.d.ts
|
|
54
54
|
declare function Tabs({
|
|
55
55
|
orientation,
|
|
56
56
|
className,
|
|
57
57
|
...props
|
|
58
|
-
}: Tabs$1.Root.Props):
|
|
58
|
+
}: Tabs$1.Root.Props): react_jsx_runtime0.JSX.Element;
|
|
59
59
|
declare function TabsList({
|
|
60
60
|
className,
|
|
61
61
|
...props
|
|
62
|
-
}: Tabs$1.List.Props):
|
|
62
|
+
}: Tabs$1.List.Props): react_jsx_runtime0.JSX.Element;
|
|
63
63
|
declare function TabsTrigger({
|
|
64
64
|
className,
|
|
65
65
|
...props
|
|
66
|
-
}: Tabs$1.Tab.Props):
|
|
66
|
+
}: Tabs$1.Tab.Props): react_jsx_runtime0.JSX.Element;
|
|
67
67
|
declare function TabsContent({
|
|
68
68
|
className,
|
|
69
69
|
...props
|
|
70
|
-
}: Tabs$1.Panel.Props):
|
|
70
|
+
}: Tabs$1.Panel.Props): react_jsx_runtime0.JSX.Element;
|
|
71
71
|
//#endregion
|
|
72
72
|
//#region src/ui/routes/prestige-shell.d.ts
|
|
73
73
|
type RenderNode = () => ReactNode;
|
|
@@ -81,13 +81,13 @@ declare function PrestigeShell({
|
|
|
81
81
|
}: {
|
|
82
82
|
children: ReactNode;
|
|
83
83
|
options?: PrestigeShellProps;
|
|
84
|
-
}):
|
|
84
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
85
85
|
//#endregion
|
|
86
86
|
//#region src/ui/core/header/header.d.ts
|
|
87
87
|
type HeaderProps = Pick<PrestigeShellProps, "customHeaderTitle">;
|
|
88
88
|
declare function Header({
|
|
89
89
|
customHeaderTitle
|
|
90
|
-
}: HeaderProps):
|
|
90
|
+
}: HeaderProps): react_jsx_runtime0.JSX.Element;
|
|
91
91
|
//#endregion
|
|
92
92
|
//#region src/ui/core/prestige-page.d.ts
|
|
93
93
|
interface PrestigePageProps {
|
|
@@ -97,18 +97,18 @@ interface PrestigePageProps {
|
|
|
97
97
|
declare function PrestigePage({
|
|
98
98
|
children,
|
|
99
99
|
toc
|
|
100
|
-
}: PrestigePageProps):
|
|
100
|
+
}: PrestigePageProps): react_jsx_runtime0.JSX.Element;
|
|
101
101
|
//#endregion
|
|
102
102
|
//#region src/ui/routes/collection/collection.route.d.ts
|
|
103
103
|
declare function CollectionRoute(sidebar: SidebarType, id: string): {
|
|
104
|
-
component: () =>
|
|
104
|
+
component: () => react_jsx_runtime0.JSX.Element;
|
|
105
105
|
};
|
|
106
106
|
//#endregion
|
|
107
107
|
//#region src/ui/routes/content/content.route.d.ts
|
|
108
108
|
declare function ContentRoute(inlineData: any): any;
|
|
109
109
|
//#endregion
|
|
110
110
|
//#region src/ui/routes/not-found.d.ts
|
|
111
|
-
declare function PrestigeNotFound():
|
|
111
|
+
declare function PrestigeNotFound(): react_jsx_runtime0.JSX.Element;
|
|
112
112
|
//#endregion
|
|
113
113
|
//#region src/ui/components/steps/step-item.d.ts
|
|
114
114
|
type StepItemProps = PropsWithChildren<{
|
|
@@ -119,13 +119,13 @@ declare function StepItem({
|
|
|
119
119
|
children,
|
|
120
120
|
label,
|
|
121
121
|
index
|
|
122
|
-
}: StepItemProps):
|
|
122
|
+
}: StepItemProps): react_jsx_runtime0.JSX.Element;
|
|
123
123
|
//#endregion
|
|
124
124
|
//#region src/ui/components/steps/steps.d.ts
|
|
125
125
|
type StepsProps = PropsWithChildren;
|
|
126
126
|
declare function Steps({
|
|
127
127
|
children
|
|
128
|
-
}: StepsProps):
|
|
128
|
+
}: StepsProps): react_jsx_runtime0.JSX.Element;
|
|
129
129
|
//#endregion
|
|
130
130
|
export { Aside, type AsideProps, type AsideType, Code, type CodeProps, CollectionRoute, ContentRoute, Header, PackageManagers, type PackageManagersProps, PrestigeNotFound, PrestigePage, type PrestigePageProps, PrestigeShell, type PrestigeShellProps, StepItem, type StepItemProps, Steps, type StepsProps, Tabs, TabsContent, TabsList, TabsTrigger };
|
|
131
131
|
//# sourceMappingURL=ui.d.ts.map
|