Skip to content

Commit 3fffedf

Browse files
committed
update
Signed-off-by: Innei <[email protected]>
1 parent 00af946 commit 3fffedf

File tree

4 files changed

+31
-83
lines changed

4 files changed

+31
-83
lines changed

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2024 Innei
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

demo/public/modal.png

129 KB
Loading

demo/public/sheet.png

118 KB
Loading

readme.md

+10-83
Original file line numberDiff line numberDiff line change
@@ -1,90 +1,17 @@
1-
# Rollup Typescript library template
1+
# rc-modal
22

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.
44

5-
Please use pnpm do this.
5+
| Modal | Sheet |
6+
| ---------------------------- | ---------------------------- |
7+
| ![](./demo/public/modal.png) | ![](./demo/public/sheet.png) |
68

7-
```sh
8-
pnpm i
9-
```
9+
...and it's fully responsive!
1010

11-
# Usage
11+
<video src="./demo/public/sheet.mp4" />
1212

13-
### Package
13+
### License
1414

15-
Bundle your source code via tsc, rollup.
15+
2024 © Innei, Released under the MIT License.
1616

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

Comments
 (0)