@ornikar/kitt-universal 25.2.0 → 25.3.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/CHANGELOG.md +9 -0
- package/dist/definitions/ActionCard/ActionCard.d.ts +1 -1
- package/dist/definitions/ActionCard/ActionCard.d.ts.map +1 -1
- package/dist/index-metro.es.android.js +5 -1
- package/dist/index-metro.es.android.js.map +1 -1
- package/dist/index-metro.es.ios.js +5 -1
- package/dist/index-metro.es.ios.js.map +1 -1
- package/dist/index-node-20.10.cjs.js +5 -1
- package/dist/index-node-20.10.cjs.js.map +1 -1
- package/dist/index-node-20.10.cjs.web.js +5 -1
- package/dist/index-node-20.10.cjs.web.js.map +1 -1
- package/dist/index-node-20.10.es.mjs +5 -1
- package/dist/index-node-20.10.es.mjs.map +1 -1
- package/dist/index-node-20.10.es.web.mjs +5 -1
- package/dist/index-node-20.10.es.web.mjs.map +1 -1
- package/dist/index.es.js +5 -1
- package/dist/index.es.js.map +1 -1
- package/dist/index.es.web.js +5 -1
- package/dist/index.es.web.js.map +1 -1
- package/dist/tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -1977,7 +1977,9 @@ const ActionCardPressable = /*#__PURE__*/React.forwardRef(({
|
|
|
1977
1977
|
isHoveredInternal,
|
|
1978
1978
|
isPressedInternal,
|
|
1979
1979
|
isFocusedInternal,
|
|
1980
|
-
onPress
|
|
1980
|
+
onPress,
|
|
1981
|
+
onHoverIn,
|
|
1982
|
+
onHoverOut
|
|
1981
1983
|
}, ref) => {
|
|
1982
1984
|
return /*#__PURE__*/jsxRuntime.jsx(Pressable, {
|
|
1983
1985
|
ref: ref,
|
|
@@ -1988,6 +1990,8 @@ const ActionCardPressable = /*#__PURE__*/React.forwardRef(({
|
|
|
1988
1990
|
hrefAttrs: hrefAttrs,
|
|
1989
1991
|
width: "100%",
|
|
1990
1992
|
onPress: onPress,
|
|
1993
|
+
onHoverIn: onHoverIn,
|
|
1994
|
+
onHoverOut: onHoverOut,
|
|
1991
1995
|
children: ({
|
|
1992
1996
|
isHovered,
|
|
1993
1997
|
isPressed,
|