pxengine 0.1.31 → 0.1.32

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-02-24T07:16:44.259Z",
4
+ "lastUpdated": "2026-02-26T09:47:23.745Z",
5
5
  "components": {
6
6
  "AccordionAtom": {
7
7
  "name": "AccordionAtom",
@@ -13810,6 +13810,11 @@
13810
13810
  "required": false,
13811
13811
  "description": "Title of the concept"
13812
13812
  },
13813
+ "index": {
13814
+ "type": "number",
13815
+ "required": false,
13816
+ "description": ""
13817
+ },
13813
13818
  "isRecommended": {
13814
13819
  "type": "boolean",
13815
13820
  "required": false,
@@ -13928,6 +13933,11 @@
13928
13933
  "type": "boolean",
13929
13934
  "required": false,
13930
13935
  "description": "Whether to hide the copy button"
13936
+ },
13937
+ "shouldStopPropagation": {
13938
+ "type": "boolean",
13939
+ "required": false,
13940
+ "description": "Whether to stop event propagation when the edit icon is clicked in child fields."
13931
13941
  }
13932
13942
  },
13933
13943
  "preview": null,
@@ -14047,6 +14057,11 @@
14047
14057
  "type": "boolean",
14048
14058
  "required": false,
14049
14059
  "description": "Whether to hide the copy button"
14060
+ },
14061
+ "shouldStopPropagation": {
14062
+ "type": "boolean",
14063
+ "required": false,
14064
+ "description": "Whether to stop event propagation when the edit icon is clicked in child fields."
14050
14065
  }
14051
14066
  },
14052
14067
  "preview": null,
@@ -14372,6 +14387,11 @@
14372
14387
  "type": "boolean",
14373
14388
  "required": false,
14374
14389
  "description": "Whether to hide the copy button"
14390
+ },
14391
+ "shouldStopPropagation": {
14392
+ "type": "boolean",
14393
+ "required": false,
14394
+ "description": "Whether to stop event propagation when the edit icon is clicked in child fields."
14375
14395
  }
14376
14396
  },
14377
14397
  "preview": null,
@@ -14622,6 +14642,47 @@
14622
14642
  "preview": null,
14623
14643
  "layoutHints": null
14624
14644
  },
14645
+ "PlatformSelectEdit": {
14646
+ "name": "PlatformSelectEdit",
14647
+ "type": "molecule",
14648
+ "isBuilderComponent": true,
14649
+ "description": "",
14650
+ "props": {
14651
+ "value": {
14652
+ "type": "any",
14653
+ "required": true,
14654
+ "description": ""
14655
+ },
14656
+ "onChange": {
14657
+ "type": "(value: any) => void",
14658
+ "required": true,
14659
+ "description": ""
14660
+ },
14661
+ "config": {
14662
+ "type": "any",
14663
+ "required": false,
14664
+ "defaultValue": "{}",
14665
+ "description": ""
14666
+ }
14667
+ },
14668
+ "preview": null,
14669
+ "layoutHints": null
14670
+ },
14671
+ "PlatformSelectDisplay": {
14672
+ "name": "PlatformSelectDisplay",
14673
+ "type": "molecule",
14674
+ "isBuilderComponent": true,
14675
+ "description": "",
14676
+ "props": {
14677
+ "value": {
14678
+ "type": "any",
14679
+ "required": true,
14680
+ "description": ""
14681
+ }
14682
+ },
14683
+ "preview": null,
14684
+ "layoutHints": null
14685
+ },
14625
14686
  "SearchSpecCard": {
14626
14687
  "name": "SearchSpecCard",
14627
14688
  "type": "molecule",
@@ -14746,6 +14807,11 @@
14746
14807
  "type": "boolean",
14747
14808
  "required": false,
14748
14809
  "description": "Whether to hide the copy button"
14810
+ },
14811
+ "shouldStopPropagation": {
14812
+ "type": "boolean",
14813
+ "required": false,
14814
+ "description": "Whether to stop event propagation when the edit icon is clicked in child fields."
14749
14815
  }
14750
14816
  },
14751
14817
  "preview": null,
@@ -14995,6 +15061,11 @@
14995
15061
  "required": false,
14996
15062
  "description": "Whether this is the latest message"
14997
15063
  },
15064
+ "shouldStopPropagation": {
15065
+ "type": "boolean",
15066
+ "required": false,
15067
+ "description": "Whether to stop event propagation when the edit icon is clicked.\nUseful to prevent parents (like cards) from collapsing."
15068
+ },
14998
15069
  "showIndex": {
14999
15070
  "type": "boolean",
15000
15071
  "required": false,
@@ -15270,6 +15341,11 @@
15270
15341
  "type": "boolean",
15271
15342
  "required": false,
15272
15343
  "description": "Whether this is the latest message"
15344
+ },
15345
+ "shouldStopPropagation": {
15346
+ "type": "boolean",
15347
+ "required": false,
15348
+ "description": "Whether to stop event propagation when the edit icon is clicked in child fields."
15273
15349
  }
15274
15350
  },
15275
15351
  "preview": null,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pxengine",
3
- "version": "0.1.31",
3
+ "version": "0.1.32",
4
4
  "type": "module",
5
5
  "description": "Shadcn-based UI component library for agent-driven interfaces",
6
6
  "main": "./dist/index.cjs",