@edvisor/product-language 0.10.4 → 0.10.6
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/index.js +3 -3
- package/lib/components/tooltip/tooltip.d.ts +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -6565,7 +6565,7 @@ const Spinner = props => {
|
|
|
6565
6565
|
const ButtonFrame = /*#__PURE__*/styled.button.withConfig({
|
|
6566
6566
|
displayName: "button__ButtonFrame",
|
|
6567
6567
|
componentId: "v4884z-0"
|
|
6568
|
-
})(["padding:", ";border:", ";border-radius:6px;background:", ";cursor:", ";display:flex;flex-direction:row;justify-content:center;gap:8px;align-items:center;position:relative;svg[role='icon']{path{fill:", ";}}", ""], props => props.buttonSize, props => props.buttonBorder, props => props.backgroundColor, props => props.cursor, props => props.iconColor, props => !props.isDisabled && css(["&:hover{background:", ";text-decoration:", ";div{color:", ";}svg[role='icon']{path{fill:", ";}}}outline-offset:-2px;&:focus,focus-visible{outline:2px solid ", ";}&:active{text-decoration:'none';background:", ";}"], props.backgroundHover, props.textDecorationHover, props.textColorHover, props.iconColorHover, Focused.Default, props.backgroundPressed));
|
|
6568
|
+
})(["padding:", ";border:", ";border-radius:6px;background:", ";cursor:", ";display:flex;flex-direction:row;justify-content:center;gap:8px;align-items:center;position:relative;svg[role='icon']{path{fill:", ";}}", ""], props => props.buttonSize, props => props.buttonBorder, props => props.backgroundColor, props => props.cursor, props => props.iconColor, props => !props.isDisabled && css(["&:hover{background:", ";color:", ";text-decoration:", ";div{color:", ";}svg[role='icon']{path{fill:", ";}}}outline-offset:-2px;&:focus,focus-visible{outline:2px solid ", ";}&:active{text-decoration:'none';background:", ";}"], props.backgroundHover, props.textColorHover, props.textDecorationHover, props.textColorHover, props.iconColorHover, Focused.Default, props.backgroundPressed));
|
|
6569
6569
|
const ButtonText = /*#__PURE__*/styled(Label$1).withConfig({
|
|
6570
6570
|
displayName: "button__ButtonText",
|
|
6571
6571
|
componentId: "v4884z-1"
|
|
@@ -9921,7 +9921,7 @@ const TreeView = props => {
|
|
|
9921
9921
|
expanded: expandedList
|
|
9922
9922
|
});
|
|
9923
9923
|
return _nodeList;
|
|
9924
|
-
}, [nodes]);
|
|
9924
|
+
}, [nodes, checkedList]);
|
|
9925
9925
|
|
|
9926
9926
|
const handleOnCheck = nodeInfo => {
|
|
9927
9927
|
const {
|
|
@@ -10081,7 +10081,7 @@ const CenterContainer = /*#__PURE__*/styled.div.withConfig({
|
|
|
10081
10081
|
position
|
|
10082
10082
|
}) => getContainerPosition(position));
|
|
10083
10083
|
const fadeIn$1 = /*#__PURE__*/keyframes(["from{opacity:0;}to{opacity:1;}"]);
|
|
10084
|
-
const TooltipBox = /*#__PURE__*/styled.
|
|
10084
|
+
const TooltipBox = /*#__PURE__*/styled(Caption).withConfig({
|
|
10085
10085
|
displayName: "tooltip__TooltipBox",
|
|
10086
10086
|
componentId: "sc-1rhmjz7-2"
|
|
10087
10087
|
})(["position:relative;background-color:", ";color:", ";text-align:center;border-radius:6px;padding:", " ", ";animation:", " 0.1s linear;&:after{content:\"\";position:absolute;width:1px;height:1px;border-width:5px;border-style:solid;border-color:", " transparent transparent transparent;left:calc(50% - 4.5px);top:100%;}", ""], Surface.Default.Inverse, Surface.Default.Default, Padding.xxs, Padding.xs, fadeIn$1, Surface.Default.Inverse, ({
|
|
@@ -11,7 +11,7 @@ export declare const CenterContainer: import("styled-components").StyledComponen
|
|
|
11
11
|
position: TooltipPosition;
|
|
12
12
|
width?: number | undefined;
|
|
13
13
|
}, never>;
|
|
14
|
-
export declare const TooltipBox: import("styled-components").StyledComponent<"
|
|
14
|
+
export declare const TooltipBox: import("styled-components").StyledComponent<FC<import("../typography/typography").ITextComponentProps, {}>, any, {
|
|
15
15
|
position: TooltipPosition;
|
|
16
16
|
}, never>;
|
|
17
17
|
interface ITooltip {
|