loon-bulma-react 2026.0.46 → 2026.0.47
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.
|
@@ -87,10 +87,13 @@ export declare namespace DragDropList {
|
|
|
87
87
|
var Handle: ({ children }: {
|
|
88
88
|
children?: React.ReactNode | ((isDisabled: boolean) => React.ReactNode);
|
|
89
89
|
className?: string | ((isDisabled: boolean) => string);
|
|
90
|
+
title?: string;
|
|
90
91
|
}) => React.JSX.Element;
|
|
91
92
|
var Buttons: ({ children }: {
|
|
92
93
|
children?: React.ReactNode;
|
|
93
94
|
className?: string | ((isDisabled: boolean) => string);
|
|
95
|
+
titleUp?: string;
|
|
96
|
+
titleDown?: string;
|
|
94
97
|
}) => React.JSX.Element;
|
|
95
98
|
var Item: (_props: {
|
|
96
99
|
className?: string | ((info: RenderItemInfo) => string);
|
package/dist/index.js
CHANGED
|
@@ -13752,6 +13752,7 @@ function S_({ item: e, index: n, isDragging: r, isDragOver: i, isDisabled: a, is
|
|
|
13752
13752
|
draggable: !a,
|
|
13753
13753
|
onDragStart: (e) => !a && u(e, n, m.current),
|
|
13754
13754
|
onDragEnd: d,
|
|
13755
|
+
title: a ? "" : t?.props?.title ?? "Versleep item",
|
|
13755
13756
|
children: i || /* @__PURE__ */ b(t_, { icon: gs })
|
|
13756
13757
|
}, "handle"));
|
|
13757
13758
|
} else if (i === b_) {
|
|
@@ -13761,7 +13762,7 @@ function S_({ item: e, index: n, isDragging: r, isDragOver: i, isDisabled: a, is
|
|
|
13761
13762
|
children: [/* @__PURE__ */ b("span", {
|
|
13762
13763
|
onClick: () => !a && !g && f(n, "up"),
|
|
13763
13764
|
className: g || a ? "has-text-grey-light" : "has-text-info",
|
|
13764
|
-
title: g || a ? "" : "Verschuif naar boven",
|
|
13765
|
+
title: g || a ? "" : t?.props?.titleUp ?? "Verschuif naar boven",
|
|
13765
13766
|
style: {
|
|
13766
13767
|
cursor: g || a ? "not-allowed" : "pointer",
|
|
13767
13768
|
opacity: g || a ? .5 : 1
|
|
@@ -13770,7 +13771,7 @@ function S_({ item: e, index: n, isDragging: r, isDragOver: i, isDisabled: a, is
|
|
|
13770
13771
|
}), /* @__PURE__ */ b("span", {
|
|
13771
13772
|
onClick: () => !a && !_ && f(n, "down"),
|
|
13772
13773
|
className: _ || a ? "has-text-grey-light" : "has-text-info",
|
|
13773
|
-
title: _ || a ? "" : "Verschuif naar beneden",
|
|
13774
|
+
title: _ || a ? "" : t?.props?.titleDown ?? "Verschuif naar beneden",
|
|
13774
13775
|
style: {
|
|
13775
13776
|
cursor: _ || a ? "not-allowed" : "pointer",
|
|
13776
13777
|
opacity: _ || a ? .5 : 1
|