@rpg-engine/long-bow 0.2.85 → 0.2.86
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/long-bow.cjs.development.js +2 -1
- package/dist/long-bow.cjs.development.js.map +1 -1
- package/dist/long-bow.cjs.production.min.js +1 -1
- package/dist/long-bow.cjs.production.min.js.map +1 -1
- package/dist/long-bow.esm.js +2 -1
- package/dist/long-bow.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/ListMenu.tsx +2 -1
|
@@ -34324,7 +34324,8 @@ var ListMenu = function ListMenu(_ref) {
|
|
|
34324
34324
|
}, options.map(function (params, index) {
|
|
34325
34325
|
return React__default.createElement(ListElement$1, {
|
|
34326
34326
|
key: (params == null ? void 0 : params.id) || index,
|
|
34327
|
-
onClick: function onClick() {
|
|
34327
|
+
onClick: function onClick(e) {
|
|
34328
|
+
e.stopPropagation();
|
|
34328
34329
|
onSelected(params == null ? void 0 : params.id);
|
|
34329
34330
|
}
|
|
34330
34331
|
}, (params == null ? void 0 : params.text) || 'No text');
|