@linzjs/lui 11.10.1 → 11.10.2

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/lui.esm.js CHANGED
@@ -20329,7 +20329,9 @@ var LuiTooltip = function LuiTooltip(props) {
20329
20329
  var children = props.children,
20330
20330
  message = props.message,
20331
20331
  placement = props.placement,
20332
- trigger = props.trigger;
20332
+ trigger = props.trigger,
20333
+ _props$animation = props.animation,
20334
+ animation = _props$animation === void 0 ? true : _props$animation;
20333
20335
  var id = "LuiToolTip_" + useMemo(getKey, []);
20334
20336
 
20335
20337
  if (typeof message !== 'string') {
@@ -20343,7 +20345,8 @@ var LuiTooltip = function LuiTooltip(props) {
20343
20345
  trigger: trigger,
20344
20346
  theme: 'LUI',
20345
20347
  placement: placement,
20346
- offset: [0, 24]
20348
+ offset: [0, 24],
20349
+ animation: animation
20347
20350
  });
20348
20351
  return function () {
20349
20352
  var _document$getElementB, _document$getElementB2;