@ssa-ui-kit/core 2.21.0-canary-ff41660-20250526 → 2.21.1
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/components/ImageItem/index.d.ts +1 -0
- package/dist/index.js +12 -16
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -1649,10 +1649,9 @@ const Button = /*#__PURE__*/(0,external_react_namespaceObject.forwardRef)(functi
|
|
|
1649
1649
|
css: [Button_mapSizes[size], variantStyles, true ? "" : 0, true ? "" : 0],
|
|
1650
1650
|
type: type,
|
|
1651
1651
|
disabled: isDisabled,
|
|
1652
|
-
className: className
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
,
|
|
1652
|
+
className: className,
|
|
1653
|
+
onMouseEnter: () => setIsHovered(true),
|
|
1654
|
+
onMouseLeave: () => setIsHovered(false),
|
|
1656
1655
|
onClick: onClick,
|
|
1657
1656
|
...ariaProps,
|
|
1658
1657
|
children: [startIcon ? (0,jsx_runtime_namespaceObject.jsx)("span", {
|
|
@@ -5111,10 +5110,9 @@ const Radio = ({
|
|
|
5111
5110
|
return (0,jsx_runtime_namespaceObject.jsxs)(RadioBase, {
|
|
5112
5111
|
htmlFor: radioId,
|
|
5113
5112
|
className: className,
|
|
5114
|
-
focusShadowColor: colors?.focusShadow
|
|
5115
|
-
|
|
5116
|
-
|
|
5117
|
-
,
|
|
5113
|
+
focusShadowColor: colors?.focusShadow,
|
|
5114
|
+
onMouseEnter: () => setIsHovered(true),
|
|
5115
|
+
onMouseLeave: () => setIsHovered(false),
|
|
5118
5116
|
children: [(0,jsx_runtime_namespaceObject.jsx)("input", {
|
|
5119
5117
|
id: radioId,
|
|
5120
5118
|
type: "radio",
|
|
@@ -11926,10 +11924,9 @@ const ItemAccordionTitle = ({
|
|
|
11926
11924
|
isHover: isHover,
|
|
11927
11925
|
children: (0,jsx_runtime_namespaceObject.jsxs)(Wrapper_Wrapper, {
|
|
11928
11926
|
onClick: data.onClick,
|
|
11929
|
-
css: AccordionTitleWrapper(theme)
|
|
11930
|
-
|
|
11931
|
-
|
|
11932
|
-
,
|
|
11927
|
+
css: AccordionTitleWrapper(theme),
|
|
11928
|
+
onMouseEnter: handleMouseEnter,
|
|
11929
|
+
onMouseLeave: handleMouseLeave,
|
|
11933
11930
|
children: [(0,jsx_runtime_namespaceObject.jsx)(ItemAccordionTitle_Link, {
|
|
11934
11931
|
to: "",
|
|
11935
11932
|
navbartheme: theme,
|
|
@@ -12098,10 +12095,9 @@ const ItemWithoutSubMenu_Item = ({
|
|
|
12098
12095
|
onClick: onClick,
|
|
12099
12096
|
ref: linkRef,
|
|
12100
12097
|
navbartheme: theme,
|
|
12101
|
-
"data-customicon": !!CustomIcon
|
|
12102
|
-
|
|
12103
|
-
|
|
12104
|
-
,
|
|
12098
|
+
"data-customicon": !!CustomIcon,
|
|
12099
|
+
onMouseEnter: handleMouseEnter,
|
|
12100
|
+
onMouseLeave: handleMouseLeave,
|
|
12105
12101
|
children: [(0,jsx_runtime_namespaceObject.jsx)(CollapsibleNavBarPopover, {
|
|
12106
12102
|
triggerIcon: (0,jsx_runtime_namespaceObject.jsx)(Icon, {}),
|
|
12107
12103
|
title: title
|