@lonik/prestige 0.11.4 → 0.11.6
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/README.md +16 -20
- package/dist/README.md +16 -20
- package/dist/ui.d.ts +15 -15
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,29 +1,25 @@
|
|
|
1
|
-
|
|
1
|
+
<p align="center">
|
|
2
|
+
<img src="logo.png" alt="Prestige Logo" width="150" />
|
|
3
|
+
</p>
|
|
2
4
|
|
|
3
|
-
|
|
5
|
+
<h1 align="center">Prestige</h1>
|
|
4
6
|
|
|
5
|
-
|
|
7
|
+
<p align="center">
|
|
8
|
+
<a href="https://www.npmjs.com/package/@lonik/prestige">
|
|
9
|
+
<img src="https://img.shields.io/npm/v/@lonik/prestige.svg" alt="NPM Version" />
|
|
10
|
+
</a>
|
|
11
|
+
</p>
|
|
6
12
|
|
|
7
|
-
|
|
13
|
+
Prestige is a documentation framework Built on Tanstack Start,Vite,Tailwind and React
|
|
8
14
|
|
|
9
|
-
|
|
10
|
-
npm install
|
|
11
|
-
```
|
|
12
|
-
|
|
13
|
-
- Run the playground:
|
|
15
|
+
For more information, please visit our [official website](https://lukonik.github.io/prestige/).
|
|
14
16
|
|
|
15
|
-
|
|
16
|
-
npm run play
|
|
17
|
-
```
|
|
18
|
-
|
|
19
|
-
- Run the unit tests:
|
|
20
|
-
|
|
21
|
-
```bash
|
|
22
|
-
npm run test
|
|
23
|
-
```
|
|
17
|
+
## Usage
|
|
24
18
|
|
|
25
|
-
|
|
19
|
+
To get started quickly, you can bootstrap a new project using the `create-prestige` script:
|
|
26
20
|
|
|
27
21
|
```bash
|
|
28
|
-
|
|
22
|
+
npx create-prestige@latest my-docs
|
|
23
|
+
# or
|
|
24
|
+
pnpm create prestige@latest my-docs
|
|
29
25
|
```
|
package/dist/README.md
CHANGED
|
@@ -1,29 +1,25 @@
|
|
|
1
|
-
|
|
1
|
+
<p align="center">
|
|
2
|
+
<img src="logo.png" alt="Prestige Logo" width="150" />
|
|
3
|
+
</p>
|
|
2
4
|
|
|
3
|
-
|
|
5
|
+
<h1 align="center">Prestige</h1>
|
|
4
6
|
|
|
5
|
-
|
|
7
|
+
<p align="center">
|
|
8
|
+
<a href="https://www.npmjs.com/package/@lonik/prestige">
|
|
9
|
+
<img src="https://img.shields.io/npm/v/@lonik/prestige.svg" alt="NPM Version" />
|
|
10
|
+
</a>
|
|
11
|
+
</p>
|
|
6
12
|
|
|
7
|
-
|
|
13
|
+
Prestige is a documentation framework Built on Tanstack Start,Vite,Tailwind and React
|
|
8
14
|
|
|
9
|
-
|
|
10
|
-
npm install
|
|
11
|
-
```
|
|
12
|
-
|
|
13
|
-
- Run the playground:
|
|
15
|
+
For more information, please visit our [official website](https://lukonik.github.io/prestige/).
|
|
14
16
|
|
|
15
|
-
|
|
16
|
-
npm run play
|
|
17
|
-
```
|
|
18
|
-
|
|
19
|
-
- Run the unit tests:
|
|
20
|
-
|
|
21
|
-
```bash
|
|
22
|
-
npm run test
|
|
23
|
-
```
|
|
17
|
+
## Usage
|
|
24
18
|
|
|
25
|
-
|
|
19
|
+
To get started quickly, you can bootstrap a new project using the `create-prestige` script:
|
|
26
20
|
|
|
27
21
|
```bash
|
|
28
|
-
|
|
22
|
+
npx create-prestige@latest my-docs
|
|
23
|
+
# or
|
|
24
|
+
pnpm create prestige@latest my-docs
|
|
29
25
|
```
|
package/dist/ui.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { n as SidebarType } from "./content.types-Iwprk4Pj.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;
|
|
@@ -93,7 +93,7 @@ declare function PrestigeShell({
|
|
|
93
93
|
}: {
|
|
94
94
|
children: ReactNode;
|
|
95
95
|
options?: PrestigeShellProps;
|
|
96
|
-
}):
|
|
96
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
97
97
|
//#endregion
|
|
98
98
|
//#region src/ui/core/header/header.d.ts
|
|
99
99
|
type HeaderProps = Pick<PrestigeShellProps, "customHeaderTitle" | "algolia" | "github">;
|
|
@@ -101,7 +101,7 @@ declare function Header({
|
|
|
101
101
|
customHeaderTitle,
|
|
102
102
|
algolia,
|
|
103
103
|
github
|
|
104
|
-
}: HeaderProps):
|
|
104
|
+
}: HeaderProps): react_jsx_runtime0.JSX.Element;
|
|
105
105
|
//#endregion
|
|
106
106
|
//#region src/ui/core/prestige-page.d.ts
|
|
107
107
|
interface PrestigePageProps {
|
|
@@ -111,11 +111,11 @@ interface PrestigePageProps {
|
|
|
111
111
|
declare function PrestigePage({
|
|
112
112
|
children,
|
|
113
113
|
toc
|
|
114
|
-
}: PrestigePageProps):
|
|
114
|
+
}: PrestigePageProps): react_jsx_runtime0.JSX.Element;
|
|
115
115
|
//#endregion
|
|
116
116
|
//#region src/ui/routes/collection/collection.route.d.ts
|
|
117
117
|
declare function CollectionRoute(sidebar: SidebarType, id: string): {
|
|
118
|
-
component: () =>
|
|
118
|
+
component: () => react_jsx_runtime0.JSX.Element;
|
|
119
119
|
};
|
|
120
120
|
//#endregion
|
|
121
121
|
//#region src/ui/routes/content/content.route.d.ts
|
|
@@ -123,7 +123,7 @@ declare function ContentRoute(inlineData: any): any;
|
|
|
123
123
|
declare function LazyContentRoute(inlineData: any): any;
|
|
124
124
|
//#endregion
|
|
125
125
|
//#region src/ui/routes/not-found.d.ts
|
|
126
|
-
declare function PrestigeNotFound():
|
|
126
|
+
declare function PrestigeNotFound(): react_jsx_runtime0.JSX.Element;
|
|
127
127
|
//#endregion
|
|
128
128
|
//#region src/ui/components/steps/step-item.d.ts
|
|
129
129
|
type StepItemProps = PropsWithChildren<{
|
|
@@ -134,13 +134,13 @@ declare function StepItem({
|
|
|
134
134
|
children,
|
|
135
135
|
label,
|
|
136
136
|
index
|
|
137
|
-
}: StepItemProps):
|
|
137
|
+
}: StepItemProps): react_jsx_runtime0.JSX.Element;
|
|
138
138
|
//#endregion
|
|
139
139
|
//#region src/ui/components/steps/steps.d.ts
|
|
140
140
|
type StepsProps = PropsWithChildren;
|
|
141
141
|
declare function Steps({
|
|
142
142
|
children
|
|
143
|
-
}: StepsProps):
|
|
143
|
+
}: StepsProps): react_jsx_runtime0.JSX.Element;
|
|
144
144
|
//#endregion
|
|
145
145
|
export { Aside, type AsideProps, type AsideType, Code, type CodeProps, CollectionRoute, ContentRoute, Header, LazyContentRoute, PackageManagers, type PackageManagersProps, PrestigeNotFound, PrestigePage, type PrestigePageProps, PrestigeShell, type PrestigeShellProps, StepItem, type StepItemProps, Steps, type StepsProps, Tabs, TabsContent, TabsList, TabsTrigger };
|
|
146
146
|
//# sourceMappingURL=ui.d.ts.map
|