@doist/reactist 28.5.3 → 28.6.0
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/reactist.cjs.development.js +7 -5
- package/dist/reactist.cjs.development.js.map +1 -1
- package/dist/reactist.cjs.production.min.js +1 -1
- package/dist/reactist.cjs.production.min.js.map +1 -1
- package/es/text-area/text-area.js +2 -2
- package/es/text-area/text-area.js.map +1 -1
- package/es/tooltip/tooltip.js +5 -3
- package/es/tooltip/tooltip.js.map +1 -1
- package/lib/text-area/text-area.js +1 -1
- package/lib/text-area/text-area.js.map +1 -1
- package/lib/tooltip/tooltip.d.ts +2 -2
- package/lib/tooltip/tooltip.js +1 -1
- package/lib/tooltip/tooltip.js.map +1 -1
- package/package.json +1 -1
|
@@ -621,7 +621,7 @@ function TooltipProvider({
|
|
|
621
621
|
}, children);
|
|
622
622
|
}
|
|
623
623
|
|
|
624
|
-
|
|
624
|
+
const Tooltip = /*#__PURE__*/React__namespace.forwardRef(({
|
|
625
625
|
children,
|
|
626
626
|
content,
|
|
627
627
|
position = 'top',
|
|
@@ -630,7 +630,7 @@ function Tooltip({
|
|
|
630
630
|
showTimeout,
|
|
631
631
|
hideTimeout,
|
|
632
632
|
exceptionallySetClassName
|
|
633
|
-
}) {
|
|
633
|
+
}, ref) => {
|
|
634
634
|
const {
|
|
635
635
|
showTimeout: globalShowTimeout,
|
|
636
636
|
hideTimeout: globalHideTimeout
|
|
@@ -640,6 +640,7 @@ function Tooltip({
|
|
|
640
640
|
showTimeout: showTimeout != null ? showTimeout : globalShowTimeout,
|
|
641
641
|
hideTimeout: hideTimeout != null ? hideTimeout : globalHideTimeout
|
|
642
642
|
});
|
|
643
|
+
React__namespace.useImperativeHandle(ref, () => tooltip, [tooltip]);
|
|
643
644
|
const isOpen = tooltip.useState('open');
|
|
644
645
|
const child = React__namespace.Children.only(children);
|
|
645
646
|
|
|
@@ -670,7 +671,8 @@ function Tooltip({
|
|
|
670
671
|
textAlign: "center"
|
|
671
672
|
})
|
|
672
673
|
}, withArrow ? /*#__PURE__*/React__namespace.createElement(react.TooltipArrow, null) : null, typeof content === 'function' ? content() : content) : null);
|
|
673
|
-
}
|
|
674
|
+
});
|
|
675
|
+
Tooltip.displayName = 'Tooltip';
|
|
674
676
|
|
|
675
677
|
var modules_5357ebb8 = {"baseButton":"_3930afa0","label":"_90654824","shape-rounded":"c05d17c2","size-small":"_1e29d236","size-normal":"_7246d092","size-large":"_2d084671","disabled":"_2b0b9d95","iconButton":"abd5766f","startIcon":"_380e7c73","endIcon":"_20fe4105","variant-primary":"_7ea1378e","variant-secondary":"_64ee8afd","variant-tertiary":"_650176bf","variant-quaternary":"aa19cb97","tone-destructive":"_7a2d9a8c"};
|
|
676
678
|
|
|
@@ -2439,7 +2441,7 @@ function useAutoExpand({
|
|
|
2439
2441
|
return () => textAreaElement.removeEventListener('input', handleInput);
|
|
2440
2442
|
}, [autoExpand, containerRef, internalRef, isControlled]);
|
|
2441
2443
|
React__namespace.useEffect(function setupAutoExpandWhenControlled() {
|
|
2442
|
-
if (!isControlled) {
|
|
2444
|
+
if (!isControlled || !autoExpand) {
|
|
2443
2445
|
return;
|
|
2444
2446
|
}
|
|
2445
2447
|
|
|
@@ -2448,7 +2450,7 @@ function useAutoExpand({
|
|
|
2448
2450
|
if (containerElement) {
|
|
2449
2451
|
containerElement.dataset.replicatedValue = value;
|
|
2450
2452
|
}
|
|
2451
|
-
}, [value, containerRef, isControlled]);
|
|
2453
|
+
}, [value, containerRef, isControlled, autoExpand]);
|
|
2452
2454
|
}
|
|
2453
2455
|
|
|
2454
2456
|
function getInitials(name) {
|