@pycolors/ui 1.0.2 → 1.0.4
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 +19 -9
- package/package.json +15 -16
package/README.md
CHANGED
|
@@ -1,16 +1,24 @@
|
|
|
1
|
+

|
|
2
|
+

|
|
3
|
+

|
|
4
|
+
|
|
1
5
|
# @pycolors/ui
|
|
2
6
|
|
|
3
|
-
|
|
4
|
-
|
|
7
|
+
> ⚠️ **Read-only mirror**
|
|
8
|
+
>
|
|
9
|
+
> This repository is automatically synced from the **PyColors monorepo**.
|
|
10
|
+
> **Source of truth:** https://github.com/pycolors-io/pycolors/tree/main/packages/ui
|
|
11
|
+
>
|
|
12
|
+
> 👉 Please open issues and pull requests here — they are synced upstream.
|
|
5
13
|
|
|
6
|
-
-
|
|
7
|
-
- Works with Tailwind (tokens-driven styling)
|
|
8
|
-
- "Starter-grade" components: Tables, Dialogs, Sheets, Alerts,
|
|
9
|
-
Tabs...
|
|
10
|
-
- Designed to power the **PyColors SaaS Starter** and future Pro
|
|
11
|
-
templates
|
|
14
|
+
Production-ready UI primitives for modern SaaS apps — built for **speed**, **consistency**, and **real-world patterns**.
|
|
12
15
|
|
|
13
|
-
|
|
16
|
+
- Accessible defaults (Radix + sane patterns)
|
|
17
|
+
- Tailwind-friendly (tokens-driven styling)
|
|
18
|
+
- “Starter-grade” components: Tables, Dialogs, Sheets, Alerts, Tabs…
|
|
19
|
+
- Designed to power the **PyColors SaaS Starter** and future Pro templates
|
|
20
|
+
|
|
21
|
+
---
|
|
14
22
|
|
|
15
23
|
## Install
|
|
16
24
|
|
|
@@ -18,6 +26,8 @@ Production-ready UI primitives for modern SaaS apps — built for
|
|
|
18
26
|
pnpm add @pycolors/ui
|
|
19
27
|
# or
|
|
20
28
|
npm i @pycolors/ui
|
|
29
|
+
# or
|
|
30
|
+
yarn add @pycolors/ui
|
|
21
31
|
```
|
|
22
32
|
|
|
23
33
|
## Peer dependencies
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pycolors/ui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "Production-ready UI primitives for modern SaaS apps (Radix + Tailwind-friendly).",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pycolors",
|
|
@@ -17,8 +17,7 @@
|
|
|
17
17
|
"homepage": "https://pycolors.io",
|
|
18
18
|
"repository": {
|
|
19
19
|
"type": "git",
|
|
20
|
-
"url": "https://github.com/pycolors-io"
|
|
21
|
-
"directory": "packages/ui"
|
|
20
|
+
"url": "https://github.com/pycolors-io/pycolors-ui"
|
|
22
21
|
},
|
|
23
22
|
"bugs": {
|
|
24
23
|
"url": "https://github.com/pycolors-io/pycolors-ui/issues"
|
|
@@ -42,15 +41,6 @@
|
|
|
42
41
|
"publishConfig": {
|
|
43
42
|
"access": "public"
|
|
44
43
|
},
|
|
45
|
-
"scripts": {
|
|
46
|
-
"clean": "rm -rf dist",
|
|
47
|
-
"build": "tsc -p tsconfig.json",
|
|
48
|
-
"prepublishOnly": "pnpm clean && pnpm build",
|
|
49
|
-
"lint": "eslint . --max-warnings 0",
|
|
50
|
-
"types:check": "tsc --noEmit",
|
|
51
|
-
"verify": "pnpm lint && pnpm types:check && pnpm build",
|
|
52
|
-
"generate:component": "turbo gen react-component"
|
|
53
|
-
},
|
|
54
44
|
"peerDependencies": {
|
|
55
45
|
"react": ">=18",
|
|
56
46
|
"react-dom": ">=18",
|
|
@@ -73,12 +63,21 @@
|
|
|
73
63
|
"tailwind-merge": "^3.4.0"
|
|
74
64
|
},
|
|
75
65
|
"devDependencies": {
|
|
76
|
-
"@repo/eslint-config": "workspace:*",
|
|
77
|
-
"@repo/typescript-config": "workspace:*",
|
|
78
66
|
"@types/node": "^22.15.3",
|
|
79
67
|
"@types/react": "19.2.2",
|
|
80
68
|
"@types/react-dom": "19.2.2",
|
|
81
69
|
"eslint": "^9.39.1",
|
|
82
|
-
"typescript": "5.9.2"
|
|
70
|
+
"typescript": "5.9.2",
|
|
71
|
+
"@repo/eslint-config": "0.0.0",
|
|
72
|
+
"@repo/typescript-config": "0.0.0"
|
|
73
|
+
},
|
|
74
|
+
"scripts": {
|
|
75
|
+
"clean": "rm -rf dist",
|
|
76
|
+
"build": "tsc -p tsconfig.json",
|
|
77
|
+
"lint": "eslint . --max-warnings 0",
|
|
78
|
+
"types:check": "tsc --noEmit",
|
|
79
|
+
"verify": "pnpm lint && pnpm types:check && pnpm build",
|
|
80
|
+
"generate:component": "turbo gen react-component",
|
|
81
|
+
"release": "pnpm clean && pnpm build:ts && pnpm publish --access public"
|
|
83
82
|
}
|
|
84
|
-
}
|
|
83
|
+
}
|