@oliasoft-open-source/charts-library 3.2.2 → 3.2.3
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/dist/index.js +11 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -31558,10 +31558,18 @@ const DragOptions = ({
|
|
|
31558
31558
|
Menu,
|
|
31559
31559
|
{
|
|
31560
31560
|
menu: {
|
|
31561
|
-
label: selectedOption.buttonLabel || selectedOption.label,
|
|
31562
31561
|
sections: optionsWithDragPoints,
|
|
31563
|
-
trigger: "
|
|
31564
|
-
|
|
31562
|
+
trigger: "Component",
|
|
31563
|
+
component: /* @__PURE__ */ jsx(
|
|
31564
|
+
Button,
|
|
31565
|
+
{
|
|
31566
|
+
colored: "muted",
|
|
31567
|
+
basic: true,
|
|
31568
|
+
small: true,
|
|
31569
|
+
label: selectedOption.buttonLabel || selectedOption.label,
|
|
31570
|
+
icon: selectedOption.icon
|
|
31571
|
+
}
|
|
31572
|
+
)
|
|
31565
31573
|
}
|
|
31566
31574
|
}
|
|
31567
31575
|
);
|