pxengine 0.1.116 → 0.1.117
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 +79 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +14 -0
- package/dist/index.d.ts +14 -0
- package/dist/index.mjs +79 -0
- package/dist/index.mjs.map +1 -1
- package/dist/registry.json +11 -1
- package/package.json +3 -3
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-08-
|
|
4
|
+
"lastUpdated": "2026-08-04T09:12:37.722Z",
|
|
5
5
|
"components": {
|
|
6
6
|
"AccordionAtom": {
|
|
7
7
|
"name": "AccordionAtom",
|
|
@@ -8196,6 +8196,16 @@
|
|
|
8196
8196
|
"required": false,
|
|
8197
8197
|
"description": "Approve-slide endpoint (POST), DEV-194. Defaults to\n`/api/presentations/{job_id}/outline/approve-slide`. Informational only —\nnever gates the whole-outline Approve & Build action."
|
|
8198
8198
|
},
|
|
8199
|
+
"setSlideTemplateUrl": {
|
|
8200
|
+
"type": "string",
|
|
8201
|
+
"required": false,
|
|
8202
|
+
"description": "Set-slide-template endpoint (POST), DEV-194 \"slide-level design\ntemplates\". Defaults to `/api/presentations/{job_id}/outline/set-slide-template`.\nGives one outline slide its own design template, overriding the deck's\noverall template for just that slide."
|
|
8203
|
+
},
|
|
8204
|
+
"templatesUrl": {
|
|
8205
|
+
"type": "string",
|
|
8206
|
+
"required": false,
|
|
8207
|
+
"description": "Templates list endpoint (GET), used to populate the per-slide template\noverride <select>. Defaults to `/api/presentations/templates`."
|
|
8208
|
+
},
|
|
8199
8209
|
"regenerateUrl": {
|
|
8200
8210
|
"type": "string",
|
|
8201
8211
|
"required": false,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pxengine",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.117",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Shadcn-based UI component library for agent-driven interfaces",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
"scripts": {
|
|
21
21
|
"build": "tsup",
|
|
22
22
|
"prepublishOnly": "npm run build",
|
|
23
|
-
"generate-metadata": "tsx --env-file=.env scripts/generate-metadata.ts",
|
|
24
|
-
"generate-molecule-registry": "tsx --env-file=.env scripts/generate-molecule-registry.ts",
|
|
23
|
+
"generate-metadata": "tsx --env-file-if-exists=.env scripts/generate-metadata.ts",
|
|
24
|
+
"generate-molecule-registry": "tsx --env-file-if-exists=.env scripts/generate-molecule-registry.ts",
|
|
25
25
|
"dev": "tsup src/index.ts --format cjs,esm --watch --dts",
|
|
26
26
|
"lint": "eslint src --ext .ts,.tsx",
|
|
27
27
|
"type-check": "tsc --noEmit"
|