glassine-paper 1.0.0 → 1.0.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/README.md +30 -1
- package/package.json +12 -4
package/README.md
CHANGED
|
@@ -2,10 +2,39 @@
|
|
|
2
2
|
|
|
3
3
|
CSS and some React components for Material Design 3
|
|
4
4
|
|
|
5
|
-
- [API Documentation](docs/api.md)
|
|
5
|
+
- [API Documentation](https://github.com/MichinobuMaeda/glassine-paper/blob/main/docs/api.md)
|
|
6
6
|
- [Sample](https://pages.michinobu.jp/glassine-paper/sample)
|
|
7
7
|
- [Theme color generator](https://pages.michinobu.jp/glassine-paper/theme)
|
|
8
8
|
|
|
9
|
+
## Components
|
|
10
|
+
|
|
11
|
+
| Component | CSS | React |
|
|
12
|
+
|--------------|:---:|:-----:|
|
|
13
|
+
| App Bar | o | o |
|
|
14
|
+
| Toolbar | o | o |
|
|
15
|
+
| Menu | o | o |
|
|
16
|
+
| Tabs | o | o |
|
|
17
|
+
| Button | o | o |
|
|
18
|
+
| Slider | o | o |
|
|
19
|
+
| Text Field | o | o |
|
|
20
|
+
| Nav Drawer | o | o |
|
|
21
|
+
| Nav Bar | o | x |
|
|
22
|
+
| Nav Rail | o | x |
|
|
23
|
+
| Fab | o | x |
|
|
24
|
+
| Checkbox | o | x |
|
|
25
|
+
| Switch | o | x |
|
|
26
|
+
| Radio Button | o | x |
|
|
27
|
+
| Divider | o | x |
|
|
28
|
+
| Search | x | x |
|
|
29
|
+
| Card | x | x |
|
|
30
|
+
| List | x | x |
|
|
31
|
+
| Chips | x | x |
|
|
32
|
+
| Badges | x | x |
|
|
33
|
+
| Sheets | x | x |
|
|
34
|
+
| Dialogs | x | x |
|
|
35
|
+
| Snackbar | x | x |
|
|
36
|
+
| ... ... | x | x |
|
|
37
|
+
|
|
9
38
|
## Usage
|
|
10
39
|
|
|
11
40
|
```css
|
package/package.json
CHANGED
|
@@ -1,9 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "glassine-paper",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "CSS and some React components for Material Design 3",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "lib/index.js",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/MichinobuMaeda/glassine-paper.git"
|
|
10
|
+
},
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/MichinobuMaeda/glassine-paper/issues"
|
|
13
|
+
},
|
|
14
|
+
"homepage": "https://github.com/MichinobuMaeda/glassine-paper#readme",
|
|
7
15
|
"exports": {
|
|
8
16
|
".": {
|
|
9
17
|
"import": "./lib/index.js",
|
|
@@ -49,20 +57,20 @@
|
|
|
49
57
|
"author": "Michinobu Maeda",
|
|
50
58
|
"license": "MIT",
|
|
51
59
|
"dependencies": {
|
|
52
|
-
"@material/material-color-utilities": "^0.3.0",
|
|
53
|
-
"@smakss/react-scroll-direction": "^4.2.0",
|
|
54
|
-
"color-convert": "^3.1.2",
|
|
55
60
|
"react": "^18.0.0 || ^19.0.0",
|
|
56
61
|
"react-dom": "^18.0.0 || ^19.0.0"
|
|
57
62
|
},
|
|
58
63
|
"devDependencies": {
|
|
59
64
|
"@eslint/js": "^9.37.0",
|
|
65
|
+
"@material/material-color-utilities": "^0.3.0",
|
|
66
|
+
"@smakss/react-scroll-direction": "^4.2.0",
|
|
60
67
|
"@types/jsdoc-to-markdown": "^7.0.6",
|
|
61
68
|
"@types/node": "^24.6.2",
|
|
62
69
|
"@types/react": "^19.2.0",
|
|
63
70
|
"@types/react-dom": "^19.2.0",
|
|
64
71
|
"@vite-pwa/assets-generator": "^1.0.2",
|
|
65
72
|
"@vitejs/plugin-react": "^5.0.4",
|
|
73
|
+
"color-convert": "^3.1.2",
|
|
66
74
|
"eslint": "^9.37.0",
|
|
67
75
|
"eslint-plugin-react-hooks": "^5.2.0",
|
|
68
76
|
"eslint-plugin-react-refresh": "^0.4.23",
|