@oliasoft-open-source/react-ui-library 4.13.0-beta-4 → 4.13.0-beta-5
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 +19 -24
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -70374,32 +70374,27 @@ const PredefinedOptionsMenu = ({
|
|
|
70374
70374
|
...predefinedOptions.map(createPredefinedOption)
|
|
70375
70375
|
];
|
|
70376
70376
|
return /* @__PURE__ */ jsx(
|
|
70377
|
-
|
|
70377
|
+
Menu,
|
|
70378
70378
|
{
|
|
70379
|
-
|
|
70380
|
-
|
|
70381
|
-
|
|
70382
|
-
|
|
70383
|
-
|
|
70384
|
-
|
|
70385
|
-
|
|
70386
|
-
|
|
70387
|
-
|
|
70388
|
-
|
|
70389
|
-
|
|
70390
|
-
|
|
70391
|
-
|
|
70392
|
-
{
|
|
70393
|
-
groupOrder: "first",
|
|
70394
|
-
active: predefinedOptionsMenuState === PredefinedOptionsMenuState.PREDEFINED,
|
|
70395
|
-
icon: predefinedOptionsMenuState === PredefinedOptionsMenuState.PREDEFINED ? "link" : "unlink"
|
|
70396
|
-
}
|
|
70397
|
-
),
|
|
70398
|
-
small: true,
|
|
70399
|
-
sections: sectionsPredefinedMenu
|
|
70379
|
+
testId: testId && `${testId}-predefined-menu`,
|
|
70380
|
+
maxHeight: 380,
|
|
70381
|
+
groupOrder: "first",
|
|
70382
|
+
disabled: disabled2,
|
|
70383
|
+
menu: {
|
|
70384
|
+
colored: true,
|
|
70385
|
+
trigger: "Component",
|
|
70386
|
+
component: /* @__PURE__ */ jsx(
|
|
70387
|
+
Button$1,
|
|
70388
|
+
{
|
|
70389
|
+
groupOrder: "first",
|
|
70390
|
+
active: predefinedOptionsMenuState === PredefinedOptionsMenuState.PREDEFINED,
|
|
70391
|
+
icon: predefinedOptionsMenuState === PredefinedOptionsMenuState.PREDEFINED ? "link" : "unlink"
|
|
70400
70392
|
}
|
|
70401
|
-
|
|
70402
|
-
|
|
70393
|
+
),
|
|
70394
|
+
small: true,
|
|
70395
|
+
sections: sectionsPredefinedMenu
|
|
70396
|
+
},
|
|
70397
|
+
tooltip: predefinedOptionsMenuState === PredefinedOptionsMenuState.PREDEFINED ? foundPredefinedMenuOption == null ? void 0 : foundPredefinedMenuOption.label : ""
|
|
70403
70398
|
}
|
|
70404
70399
|
);
|
|
70405
70400
|
};
|