@sikka/hawa 0.16.5-next → 0.16.6-next
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.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +5 -0
- package/dist/index.mjs +5 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -7221,6 +7221,11 @@ var SidebarItem = function(_param) {
|
|
|
7221
7221
|
return /* @__PURE__ */ React62.createElement("div", {
|
|
7222
7222
|
dir: direction,
|
|
7223
7223
|
onMouseDown: function(e) {
|
|
7224
|
+
if (item.onMouseDown) {
|
|
7225
|
+
item.onMouseDown(e);
|
|
7226
|
+
}
|
|
7227
|
+
},
|
|
7228
|
+
onClick: function(e) {
|
|
7224
7229
|
if (item.onClick) {
|
|
7225
7230
|
item.onClick(e);
|
|
7226
7231
|
}
|
package/dist/index.mjs
CHANGED