pxengine 0.1.121 → 0.1.123

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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pxengine/ui",
3
3
  "version": "1.0.0",
4
- "lastUpdated": "2026-08-06T05:53:11.139Z",
4
+ "lastUpdated": "2026-08-06T10:11:43.936Z",
5
5
  "components": {
6
6
  "AccordionAtom": {
7
7
  "name": "AccordionAtom",
@@ -10309,6 +10309,70 @@
10309
10309
  },
10310
10310
  "preview": null,
10311
10311
  "layoutHints": null
10312
+ },
10313
+ "ActionIconButton": {
10314
+ "name": "ActionIconButton",
10315
+ "type": "molecule",
10316
+ "isBuilderComponent": true,
10317
+ "description": "Compact icon-only utility button for a job card's secondary action row\n(Edit / Preview / Regenerate / Share). Replaces the old icon+label buttons\ninside a segmented group — same click targets, meaningfully less visual\nweight so the row reads as \"utility,\" leaving Export/Approve as the two\nthings that actually draw the eye.\n\nRenders a `<button>` by default, or an `<a>` when `href` is given (Edit\nlinks to a separate page rather than firing a handler).",
10318
+ "props": {
10319
+ "icon": {
10320
+ "type": "reactnode",
10321
+ "required": true,
10322
+ "description": ""
10323
+ },
10324
+ "label": {
10325
+ "type": "string",
10326
+ "required": true,
10327
+ "description": ""
10328
+ },
10329
+ "onClick": {
10330
+ "type": "() => void",
10331
+ "required": false,
10332
+ "description": ""
10333
+ },
10334
+ "href": {
10335
+ "type": "string",
10336
+ "required": false,
10337
+ "description": ""
10338
+ },
10339
+ "disabled": {
10340
+ "type": "boolean",
10341
+ "required": false,
10342
+ "description": ""
10343
+ },
10344
+ "active": {
10345
+ "type": "boolean",
10346
+ "required": false,
10347
+ "description": ""
10348
+ }
10349
+ },
10350
+ "preview": null,
10351
+ "layoutHints": null
10352
+ },
10353
+ "Chip": {
10354
+ "name": "Chip",
10355
+ "type": "molecule",
10356
+ "isBuilderComponent": true,
10357
+ "description": "Shared metadata chip — was duplicated (nearly identically) between\nPresentationJobCard and ResearchReportJobCard.",
10358
+ "props": {
10359
+ "capitalize": {
10360
+ "type": "boolean",
10361
+ "required": false,
10362
+ "description": ""
10363
+ }
10364
+ },
10365
+ "preview": null,
10366
+ "layoutHints": null
10367
+ },
10368
+ "DownloadIcon": {
10369
+ "name": "DownloadIcon",
10370
+ "type": "molecule",
10371
+ "isBuilderComponent": true,
10372
+ "description": "Icons shared between `PresentationJobCard` and `ResearchReportJobCard`.\nBoth components vendored identical copies of these before this file\nexisted — kept here so the two stop drifting apart visually over time.\nCard-specific icons (SlidesIcon, SlideTypeIcon, DocumentIcon) stay local\nto their own component.",
10373
+ "props": {},
10374
+ "preview": null,
10375
+ "layoutHints": null
10312
10376
  }
10313
10377
  }
10314
10378
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pxengine",
3
- "version": "0.1.121",
3
+ "version": "0.1.123",
4
4
  "type": "module",
5
5
  "description": "Shadcn-based UI component library for agent-driven interfaces",
6
6
  "main": "./dist/index.cjs",