@ainias42/react-bootstrap-mobile 0.2.8 → 0.2.9
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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @ainias42/react-bootstrap-mobile v0.2.
|
|
3
|
+
* @ainias42/react-bootstrap-mobile v0.2.8
|
|
4
4
|
* git+https://github.com/Ainias/Bootstrap-React-Mobile.git
|
|
5
5
|
* Copyright (c) Silas Günther and project contributors.
|
|
6
6
|
* This source code is licensed under the MIT license found in the
|
|
@@ -10355,9 +10355,10 @@ function Clickable(_a, ref) {
|
|
|
10355
10355
|
stopPropagation = true,
|
|
10356
10356
|
useReactOnMouseLeave = false,
|
|
10357
10357
|
tabIndex,
|
|
10358
|
-
draggable
|
|
10358
|
+
draggable,
|
|
10359
|
+
title
|
|
10359
10360
|
} = _a,
|
|
10360
|
-
clickData = Clickable_rest(_a, ["className", "children", "style", "href", "target", "id", "interactable", "preventDefault", "stopPropagation", "useReactOnMouseLeave", "tabIndex", "draggable"]);
|
|
10361
|
+
clickData = Clickable_rest(_a, ["className", "children", "style", "href", "target", "id", "interactable", "preventDefault", "stopPropagation", "useReactOnMouseLeave", "tabIndex", "draggable", "title"]);
|
|
10361
10362
|
// States
|
|
10362
10363
|
// Refs
|
|
10363
10364
|
const clickableRef = (0,external_react_.useRef)(null);
|
|
@@ -10527,7 +10528,8 @@ function Clickable(_a, ref) {
|
|
|
10527
10528
|
onDoubleClick: realOnDoubleClick,
|
|
10528
10529
|
tabIndex: interactable ? 0 : tabIndex,
|
|
10529
10530
|
draggable,
|
|
10530
|
-
onDragStart: realOnDragStartListener
|
|
10531
|
+
onDragStart: realOnDragStartListener,
|
|
10532
|
+
title
|
|
10531
10533
|
};
|
|
10532
10534
|
if (typeof href === 'string') {
|
|
10533
10535
|
return /*#__PURE__*/external_react_.createElement("a", _extends({}, props, {
|