pxengine 0.1.154 → 0.1.156

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-27T10:09:16.469Z",
4
+ "lastUpdated": "2026-08-28T11:04:21.745Z",
5
5
  "components": {
6
6
  "AccordionAtom": {
7
7
  "name": "AccordionAtom",
@@ -8108,9 +8108,48 @@
8108
8108
  "description": ""
8109
8109
  }
8110
8110
  },
8111
- "preview": null,
8111
+ "preview": {
8112
+ "name": "Records Table",
8113
+ "component": "DataGrid",
8114
+ "layoutHints": {
8115
+ "width": 480,
8116
+ "height": 220
8117
+ },
8118
+ "props": {
8119
+ "columns": [
8120
+ {
8121
+ "header": "Name",
8122
+ "accessorKey": "name",
8123
+ "type": "text"
8124
+ },
8125
+ {
8126
+ "header": "Status",
8127
+ "accessorKey": "status",
8128
+ "type": "badge"
8129
+ },
8130
+ {
8131
+ "header": "Value",
8132
+ "accessorKey": "value",
8133
+ "type": "text"
8134
+ }
8135
+ ],
8136
+ "data": [
8137
+ {
8138
+ "name": "Item 1",
8139
+ "status": "Active",
8140
+ "value": "100"
8141
+ },
8142
+ {
8143
+ "name": "Item 2",
8144
+ "status": "Pending",
8145
+ "value": "200"
8146
+ }
8147
+ ]
8148
+ }
8149
+ },
8112
8150
  "layoutHints": {
8113
- "height": 280
8151
+ "width": 480,
8152
+ "height": 220
8114
8153
  },
8115
8154
  "category": "table"
8116
8155
  },
@@ -8238,9 +8277,37 @@
8238
8277
  "description": "Rows per page when paginate is enabled (default: 25)."
8239
8278
  }
8240
8279
  },
8241
- "preview": null,
8280
+ "preview": {
8281
+ "name": "Summary Table",
8282
+ "component": "DataTableCard",
8283
+ "layoutHints": {
8284
+ "width": 480,
8285
+ "height": 220
8286
+ },
8287
+ "props": {
8288
+ "title": "Campaign Summary",
8289
+ "columns": [
8290
+ "Name",
8291
+ "Value",
8292
+ "Status"
8293
+ ],
8294
+ "rows": [
8295
+ {
8296
+ "Name": "Item 1",
8297
+ "Value": "100",
8298
+ "Status": "Active"
8299
+ },
8300
+ {
8301
+ "Name": "Item 2",
8302
+ "Value": "200",
8303
+ "Status": "Pending"
8304
+ }
8305
+ ]
8306
+ }
8307
+ },
8242
8308
  "layoutHints": {
8243
- "height": 260
8309
+ "width": 480,
8310
+ "height": 220
8244
8311
  },
8245
8312
  "category": "table"
8246
8313
  },
@@ -10434,9 +10501,39 @@
10434
10501
  "description": ""
10435
10502
  }
10436
10503
  },
10437
- "preview": null,
10504
+ "preview": {
10505
+ "name": "Growth Stats",
10506
+ "component": "StatsGrid",
10507
+ "layoutHints": {
10508
+ "width": 480,
10509
+ "height": 140
10510
+ },
10511
+ "props": {
10512
+ "items": [
10513
+ {
10514
+ "label": "Total Users",
10515
+ "value": "1,234",
10516
+ "trend": "+12%",
10517
+ "trendDirection": "up"
10518
+ },
10519
+ {
10520
+ "label": "Revenue",
10521
+ "value": "$5,678",
10522
+ "trend": "+5%",
10523
+ "trendDirection": "up"
10524
+ },
10525
+ {
10526
+ "label": "Conversions",
10527
+ "value": "89",
10528
+ "trend": "-2%",
10529
+ "trendDirection": "down"
10530
+ }
10531
+ ]
10532
+ }
10533
+ },
10438
10534
  "layoutHints": {
10439
- "height": 150
10535
+ "width": 480,
10536
+ "height": 140
10440
10537
  },
10441
10538
  "category": "stat"
10442
10539
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pxengine",
3
- "version": "0.1.154",
3
+ "version": "0.1.156",
4
4
  "type": "module",
5
5
  "description": "Shadcn-based UI component library for agent-driven interfaces",
6
6
  "main": "./dist/index.cjs",