@adyen/bento-mcp 0.12.0 → 0.12.1
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/CHANGELOG.md
CHANGED
|
@@ -36,17 +36,22 @@ An array of column definitions must be provided to the data grid.
|
|
|
36
36
|
```
|
|
37
37
|
[{
|
|
38
38
|
autoWidth?: boolean;
|
|
39
|
+
cellActions?: BentoColumnCellActionsProp;
|
|
39
40
|
field: string;
|
|
40
41
|
flex?: number;
|
|
42
|
+
frozen?: boolean;
|
|
43
|
+
infoIconTooltip?: string;
|
|
41
44
|
label: string;
|
|
42
45
|
mandatory?: boolean;
|
|
43
46
|
minWidth?: number;
|
|
44
|
-
numeric
|
|
47
|
+
numeric?: boolean;
|
|
48
|
+
overflow?: BentoColumnOverflow;
|
|
45
49
|
padding?: {
|
|
46
50
|
left?: boolean;
|
|
47
51
|
right?: boolean;
|
|
48
52
|
};
|
|
49
53
|
sortable?: boolean;
|
|
54
|
+
visible?: boolean;
|
|
50
55
|
width?: number;
|
|
51
56
|
}]
|
|
52
57
|
```
|
|
@@ -107,6 +112,11 @@ for this column will be aligned to the right
|
|
|
107
112
|
|
|
108
113
|
This can be done by using the `numeric` boolean property
|
|
109
114
|
|
|
115
|
+
#### Column info tooltip
|
|
116
|
+
|
|
117
|
+
It is possible to add extra context to a column header by setting the `infoIconTooltip` string property. This renders an
|
|
118
|
+
info icon next to the column label which shows the given text as a tooltip.
|
|
119
|
+
|
|
110
120
|
#### Column (text) overflow
|
|
111
121
|
|
|
112
122
|
<Canvas of={ComponentStories.EverythingBagelExample} />
|
package/dist/main.js
CHANGED
|
@@ -30729,7 +30729,7 @@ ${file2.content}
|
|
|
30729
30729
|
var package_default = {
|
|
30730
30730
|
name: "@adyen/bento-mcp",
|
|
30731
30731
|
mcpName: "io.github.adyen/bento-mcp",
|
|
30732
|
-
version: "0.12.
|
|
30732
|
+
version: "0.12.1",
|
|
30733
30733
|
type: "module",
|
|
30734
30734
|
description: "A Model Context Protocol server implementation for Bento",
|
|
30735
30735
|
license: "MIT",
|