|
1 |
| -# Rollup Typescript library template |
| 1 | +# rc-modal |
2 | 2 |
|
3 |
| -A simple TypeScript library template. Quick to start dev, build a Pure TypeScript or React Component library. |
| 3 | +Beautifully designed Modal Component built with Radix UI and Tailwind CSS. |
4 | 4 |
|
5 |
| -Please use pnpm do this. |
| 5 | +| Modal | Sheet | |
| 6 | +| ---------------------------- | ---------------------------- | |
| 7 | +|  |  | |
6 | 8 |
|
7 |
| -```sh |
8 |
| -pnpm i |
9 |
| -``` |
| 9 | +...and it's fully responsive! |
10 | 10 |
|
11 |
| -# Usage |
| 11 | +<video src="./demo/public/sheet.mp4" /> |
12 | 12 |
|
13 |
| -### Package |
| 13 | +### License |
14 | 14 |
|
15 |
| -Bundle your source code via tsc, rollup. |
| 15 | +2024 © Innei, Released under the MIT License. |
16 | 16 |
|
17 |
| -``` |
18 |
| -npm run package |
19 |
| -``` |
20 |
| - |
21 |
| -### Dev |
22 |
| - |
23 |
| -Start dev mode by Vite. |
24 |
| - |
25 |
| -``` |
26 |
| -npm run dev |
27 |
| -``` |
28 |
| - |
29 |
| -### Deploy |
30 |
| - |
31 |
| -Deploy example to GitHub Pages. |
32 |
| - |
33 |
| -``` |
34 |
| -npm run deploy |
35 |
| -npm run publish |
36 |
| -``` |
37 |
| - |
38 |
| -# Additional |
39 |
| - |
40 |
| -## ESBuild & React |
41 |
| - |
42 |
| -If you want to bundle React JSX with rollup. Add additional packages. |
43 |
| - |
44 |
| -``` |
45 |
| -pnpm i -D rollup-plugin-esbuild |
46 |
| -``` |
47 |
| - |
48 |
| -And, un-comment this in `rollup.config.ts`. |
49 |
| - |
50 |
| -```ts |
51 |
| -esbuild({ |
52 |
| - include: /\.[jt]sx?$/, |
53 |
| - exclude: /node_modules/, |
54 |
| - sourceMap: false, |
55 |
| - minify: process.env.NODE_ENV === 'production', |
56 |
| - target: 'es2017', |
57 |
| - jsxFactory: 'React.createElement', |
58 |
| - jsxFragment: 'React.Fragment', |
59 |
| - define: { |
60 |
| - __VERSION__: '"x.y.z"', |
61 |
| - }, |
62 |
| - tsconfig: './src/tsconfig.json', |
63 |
| - loaders: { |
64 |
| - '.json': 'json', |
65 |
| - '.js': 'jsx', |
66 |
| - }, |
67 |
| -}), |
68 |
| -``` |
69 |
| - |
70 |
| -## PostCSS & CSS Module |
71 |
| - |
72 |
| -Enable default now. |
73 |
| - |
74 |
| -Nest selector is supported too. |
75 |
| - |
76 |
| -To build css extract a file not bundle into js, un-comment this. |
77 |
| - |
78 |
| -```ts |
79 |
| -css({ |
80 |
| - extract: true, |
81 |
| -}) |
82 |
| -``` |
83 |
| - |
84 |
| - |
85 |
| - |
86 |
| -## License |
87 |
| - |
88 |
| -2023 © Innei, MIT License. |
89 |
| - |
90 |
| -> [Personal Site](https://innei.in/) · GitHub [@Innei](https://github.com/innei/) |
| 17 | +> [Personal Website](https://innei.ren/) · GitHub [@Innei](https://github.com/innei/) |
0 commit comments