sate-lib 1.0.2 → 1.0.5
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
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
# SATE -
|
|
1
|
+
# SATE - Design System
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
<!-- markdownlint-enable MD033 -->
|
|
3
|
+
A lightweight and modular React component library designed for modern web interfaces.
|
|
4
|
+
**SATE Lib** powers the [sate.menu](https://sate.menu) platform with reusable, scalable, and themeable UI components.
|
|
5
|
+
|
|
6
|
+
[Demo](https://sate-lib.vercel.app/?path=/docs/components-badge--docs)
|
|
8
7
|
|
|
9
8
|
## Tech Stack
|
|
10
9
|
|
|
@@ -22,6 +21,16 @@
|
|
|
22
21
|
pnpm dev
|
|
23
22
|
```
|
|
24
23
|
|
|
24
|
+
## Usage
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
import { Badge } from "sate-lib";
|
|
28
|
+
|
|
29
|
+
function App() {
|
|
30
|
+
return <Badge>New</Badge>;
|
|
31
|
+
}
|
|
32
|
+
```
|
|
33
|
+
|
|
25
34
|
## Commit etiquette
|
|
26
35
|
|
|
27
36
|
- [Commit Etiquette](https://www.conventionalcommits.org/en/v1.0.0/)
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sate-lib",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"author": "Tiago Sousa",
|
|
3
|
+
"version": "1.0.5",
|
|
4
|
+
"author": "Tiago Sousa (tiagorsousa0@gmail.com)",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "./dist/index.cjs.js",
|
|
@@ -19,6 +19,21 @@
|
|
|
19
19
|
"files": [
|
|
20
20
|
"dist"
|
|
21
21
|
],
|
|
22
|
+
"keywords": [
|
|
23
|
+
"design-system",
|
|
24
|
+
"react",
|
|
25
|
+
"vite",
|
|
26
|
+
"storybook",
|
|
27
|
+
"components",
|
|
28
|
+
"tokens",
|
|
29
|
+
"sass",
|
|
30
|
+
"ui-kit",
|
|
31
|
+
"SATE"
|
|
32
|
+
],
|
|
33
|
+
"repository": {
|
|
34
|
+
"type": "git",
|
|
35
|
+
"url": "git+https://github.com/TiagoSousa123/sate-lib.git"
|
|
36
|
+
},
|
|
22
37
|
"dependencies": {
|
|
23
38
|
"classnames": "^2.5.1",
|
|
24
39
|
"sass": "^1.89.0"
|
|
File without changes
|
|
File without changes
|