pxengine 0.1.106 → 0.1.108
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/dist/index.cjs +94 -83
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +35 -4
- package/dist/index.d.ts +35 -4
- package/dist/index.mjs +92 -83
- package/dist/index.mjs.map +1 -1
- package/dist/registry.json +2 -2
- package/package.json +7 -4
package/dist/registry.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pxengine/ui",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"lastUpdated": "2026-07-
|
|
4
|
+
"lastUpdated": "2026-07-29T07:31:24.317Z",
|
|
5
5
|
"components": {
|
|
6
6
|
"AccordionAtom": {
|
|
7
7
|
"name": "AccordionAtom",
|
|
@@ -18691,7 +18691,7 @@
|
|
|
18691
18691
|
"shareUrl": {
|
|
18692
18692
|
"type": "string",
|
|
18693
18693
|
"required": false,
|
|
18694
|
-
"description": "Shareable link copied when the user clicks Share.\nFalls back to
|
|
18694
|
+
"description": "Shareable link copied when the user clicks Share.\nFalls back to `${origin}/p/{job_id}`, then formats.html_url."
|
|
18695
18695
|
},
|
|
18696
18696
|
"className": {
|
|
18697
18697
|
"type": "string",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pxengine",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.108",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Shadcn-based UI component library for agent-driven interfaces",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
],
|
|
20
20
|
"scripts": {
|
|
21
21
|
"build": "tsup",
|
|
22
|
+
"prepublishOnly": "npm run build",
|
|
22
23
|
"generate-metadata": "tsx --env-file=.env scripts/generate-metadata.ts",
|
|
23
24
|
"generate-molecule-registry": "tsx --env-file=.env scripts/generate-molecule-registry.ts",
|
|
24
25
|
"dev": "tsup src/index.ts --format cjs,esm --watch --dts",
|
|
@@ -41,7 +42,9 @@
|
|
|
41
42
|
"react-dom": "^18.0.0 || ^19.0.0",
|
|
42
43
|
"tailwindcss": "^3.4.0",
|
|
43
44
|
"highcharts": "^11.4.8",
|
|
44
|
-
"highcharts-react-official": "^3.2.3"
|
|
45
|
+
"highcharts-react-official": "^3.2.3",
|
|
46
|
+
"recharts": "^3.8.1",
|
|
47
|
+
"framer-motion": "^11.18.2"
|
|
45
48
|
},
|
|
46
49
|
"peerDependenciesMeta": {
|
|
47
50
|
"highcharts": {
|
|
@@ -59,6 +62,8 @@
|
|
|
59
62
|
"eslint": "^8.0.0",
|
|
60
63
|
"highcharts": "^11.4.8",
|
|
61
64
|
"highcharts-react-official": "^3.2.3",
|
|
65
|
+
"recharts": "^3.8.1",
|
|
66
|
+
"framer-motion": "^11.18.2",
|
|
62
67
|
"postcss": "^8.5.6",
|
|
63
68
|
"react-docgen-typescript": "^2.4.0",
|
|
64
69
|
"tailwindcss": "^4.1.18",
|
|
@@ -102,7 +107,6 @@
|
|
|
102
107
|
"cmdk": "^1.1.1",
|
|
103
108
|
"date-fns": "^4.1.0",
|
|
104
109
|
"embla-carousel-react": "^8.6.0",
|
|
105
|
-
"framer-motion": "^11.18.2",
|
|
106
110
|
"input-otp": "^1.4.2",
|
|
107
111
|
"lucide-react": "^0.475.0",
|
|
108
112
|
"next-themes": "^0.4.6",
|
|
@@ -111,7 +115,6 @@
|
|
|
111
115
|
"react-hook-form": "^7.71.1",
|
|
112
116
|
"react-markdown": "^10.1.0",
|
|
113
117
|
"react-resizable-panels": "^4.5.2",
|
|
114
|
-
"recharts": "^2.15.4",
|
|
115
118
|
"remark-gfm": "^4.0.1",
|
|
116
119
|
"sonner": "^2.0.7",
|
|
117
120
|
"tailwind-merge": "^2.6.0",
|