@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
package/dist/index.es.web.js
CHANGED
|
@@ -1982,7 +1982,9 @@ var ActionCardPressable = /*#__PURE__*/forwardRef(function (_ref2, ref) {
|
|
|
1982
1982
|
isHoveredInternal = _ref2.isHoveredInternal,
|
|
1983
1983
|
isPressedInternal = _ref2.isPressedInternal,
|
|
1984
1984
|
isFocusedInternal = _ref2.isFocusedInternal,
|
|
1985
|
-
onPress = _ref2.onPress
|
|
1985
|
+
onPress = _ref2.onPress,
|
|
1986
|
+
onHoverIn = _ref2.onHoverIn,
|
|
1987
|
+
onHoverOut = _ref2.onHoverOut;
|
|
1986
1988
|
return /*#__PURE__*/jsx(Pressable, {
|
|
1987
1989
|
ref: ref,
|
|
1988
1990
|
accessibilityRole: accessibilityRole,
|
|
@@ -1992,6 +1994,8 @@ var ActionCardPressable = /*#__PURE__*/forwardRef(function (_ref2, ref) {
|
|
|
1992
1994
|
hrefAttrs: hrefAttrs,
|
|
1993
1995
|
width: "100%",
|
|
1994
1996
|
onPress: onPress,
|
|
1997
|
+
onHoverIn: onHoverIn,
|
|
1998
|
+
onHoverOut: onHoverOut,
|
|
1995
1999
|
children: function children(_ref3) {
|
|
1996
2000
|
var isHovered = _ref3.isHovered,
|
|
1997
2001
|
isPressed = _ref3.isPressed,
|