@lonik/prestige 0.1.5 → 0.1.7
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 +13 -13
- package/package.json +1 -3
package/dist/ui.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { n as SidebarType } from "./content.types-BbDmygmP.js";
|
|
2
2
|
import { TocItem } from "remark-flexible-toc";
|
|
3
3
|
import React, { 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 {
|
|
@@ -29,7 +29,7 @@ interface CodeProps {
|
|
|
29
29
|
declare function Code({
|
|
30
30
|
code,
|
|
31
31
|
children
|
|
32
|
-
}: CodeProps):
|
|
32
|
+
}: CodeProps): react_jsx_runtime0.JSX.Element;
|
|
33
33
|
//#endregion
|
|
34
34
|
//#region src/ui/components/package-managers/package-managers.d.ts
|
|
35
35
|
type CommandType = "add" | "create" | "exec" | "run";
|
|
@@ -50,26 +50,26 @@ declare function PackageManagers({
|
|
|
50
50
|
dev,
|
|
51
51
|
args,
|
|
52
52
|
className
|
|
53
|
-
}: PackageManagersProps):
|
|
53
|
+
}: PackageManagersProps): react_jsx_runtime0.JSX.Element;
|
|
54
54
|
//#endregion
|
|
55
55
|
//#region src/ui/components/tabs/tabs.d.ts
|
|
56
56
|
declare function Tabs({
|
|
57
57
|
orientation,
|
|
58
58
|
className,
|
|
59
59
|
...props
|
|
60
|
-
}: Tabs$1.Root.Props):
|
|
60
|
+
}: Tabs$1.Root.Props): react_jsx_runtime0.JSX.Element;
|
|
61
61
|
declare function TabsList({
|
|
62
62
|
className,
|
|
63
63
|
...props
|
|
64
|
-
}: Tabs$1.List.Props):
|
|
64
|
+
}: Tabs$1.List.Props): react_jsx_runtime0.JSX.Element;
|
|
65
65
|
declare function TabsTrigger({
|
|
66
66
|
className,
|
|
67
67
|
...props
|
|
68
|
-
}: Tabs$1.Tab.Props):
|
|
68
|
+
}: Tabs$1.Tab.Props): react_jsx_runtime0.JSX.Element;
|
|
69
69
|
declare function TabsContent({
|
|
70
70
|
className,
|
|
71
71
|
...props
|
|
72
|
-
}: Tabs$1.Panel.Props):
|
|
72
|
+
}: Tabs$1.Panel.Props): react_jsx_runtime0.JSX.Element;
|
|
73
73
|
//#endregion
|
|
74
74
|
//#region src/ui/routes/prestige-shell.d.ts
|
|
75
75
|
interface PrestigeShellProps {
|
|
@@ -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/routes/content/content-navigations.d.ts
|
|
93
93
|
interface NavigationLink {
|
|
@@ -107,18 +107,18 @@ declare function PrestigePage({
|
|
|
107
107
|
toc,
|
|
108
108
|
prev,
|
|
109
109
|
next
|
|
110
|
-
}: PrestigePageProps):
|
|
110
|
+
}: PrestigePageProps): react_jsx_runtime0.JSX.Element;
|
|
111
111
|
//#endregion
|
|
112
112
|
//#region src/ui/routes/collection/collection.route.d.ts
|
|
113
113
|
declare function CollectionRoute(sidebar: SidebarType, id: string): {
|
|
114
|
-
component: () =>
|
|
114
|
+
component: () => react_jsx_runtime0.JSX.Element;
|
|
115
115
|
};
|
|
116
116
|
//#endregion
|
|
117
117
|
//#region src/ui/routes/content/content.route.d.ts
|
|
118
118
|
declare function ContentRoute(inlineData: any): any;
|
|
119
119
|
//#endregion
|
|
120
120
|
//#region src/ui/routes/not-found.d.ts
|
|
121
|
-
declare function NotFound():
|
|
121
|
+
declare function NotFound(): react_jsx_runtime0.JSX.Element;
|
|
122
122
|
//#endregion
|
|
123
123
|
export { Aside, type AsideProps, type AsideType, Code, type CodeProps, CollectionRoute, ContentRoute, Header, NotFound, PackageManagers, type PackageManagersProps, PrestigePage, type PrestigePageProps, type PrestigeShellProps as PrestigeRootRouteOptions, PrestigeShell, Tabs, TabsContent, TabsList, TabsTrigger };
|
|
124
124
|
//# sourceMappingURL=ui.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lonik/prestige",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7",
|
|
4
4
|
"description": "Static Site Generator for Tanstack Start",
|
|
5
5
|
"homepage": "https://github.com/lukonik/prestige#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -49,9 +49,7 @@
|
|
|
49
49
|
"play:preview": "vite preview",
|
|
50
50
|
"test": "vitest",
|
|
51
51
|
"typecheck": "tsc --noEmit",
|
|
52
|
-
"publish": "pnpm publish --no-git-checks",
|
|
53
52
|
"release": "bumpp && pnpm publish",
|
|
54
|
-
"prepublishOnly": "pnpm run build",
|
|
55
53
|
"release-v": "bumpp minor --no-commit --no-tag --no-push --no-git-checks && pnpm publish --registry http://localhost:4873 --no-git-checks"
|
|
56
54
|
},
|
|
57
55
|
"peerDependencies": {
|