@cxtms/cx-schema 1.9.248 → 1.9.249
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/package.json
CHANGED
|
@@ -23,6 +23,12 @@
|
|
|
23
23
|
"description": "Name of the refresh handler",
|
|
24
24
|
"x-example": "states"
|
|
25
25
|
},
|
|
26
|
+
"toolbarSx": {
|
|
27
|
+
"type": "object",
|
|
28
|
+
"description": "MUI sx overrides merged onto the toolbar CardContent, useful for reducing padding in narrow hosts",
|
|
29
|
+
"additionalProperties": true,
|
|
30
|
+
"x-example": { "px": 2, "py": 1 }
|
|
31
|
+
},
|
|
26
32
|
"enableStore": {
|
|
27
33
|
"type": "boolean",
|
|
28
34
|
"description": "Enable store for the datagrid, row data will be placed in the store"
|
|
@@ -36,6 +36,8 @@ Available root queries: `orders`, `contacts`, `commodities`, `accountingTransact
|
|
|
36
36
|
|
|
37
37
|
Order quick search (`orders.search` and `orderGroupBy.search`) matches order number, bill-to, carriers, tracking numbers, order entities, commodity text/tracking numbers, and InventoryItem values linked through order commodities or child/container commodities. Inventory item matches include `sku`, `productName`, `description`, `modelNumber`, and JSON `customValues` such as color or size.
|
|
38
38
|
|
|
39
|
+
Order-move quick search (`orderMoves.search`) matches the move name plus its owning order's tracking number and JSON custom values (for example, a container number). Matching is case-insensitive and accepts partial text.
|
|
40
|
+
|
|
39
41
|
## App Module Metadata Visibility
|
|
40
42
|
|
|
41
43
|
GraphQL metadata queries hide rows attached to soft-deleted app modules:
|
|
@@ -26,6 +26,7 @@ Full-featured data table with views, filtering, sorting, pagination, and row act
|
|
|
26
26
|
| Prop | Type | Description |
|
|
27
27
|
|------|------|-------------|
|
|
28
28
|
| `toolbar` | `component[]` | Header toolbar components |
|
|
29
|
+
| `toolbarSx` | `object` | MUI `sx` overrides merged onto the toolbar `CardContent`; use this to reduce padding in narrow hosts without hiding toolbar controls |
|
|
29
30
|
| `dotsMenu` | `{items[]}` | Three-dot menu per row |
|
|
30
31
|
| `dotsMenu.items[]` | `{label, icon, onClick, permission, isHidden, disabled}` | Menu item |
|
|
31
32
|
|