@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
|
@@ -1954,7 +1954,9 @@ const ActionCardPressable = /*#__PURE__*/forwardRef(({
|
|
|
1954
1954
|
isHoveredInternal,
|
|
1955
1955
|
isPressedInternal,
|
|
1956
1956
|
isFocusedInternal,
|
|
1957
|
-
onPress
|
|
1957
|
+
onPress,
|
|
1958
|
+
onHoverIn,
|
|
1959
|
+
onHoverOut
|
|
1958
1960
|
}, ref) => {
|
|
1959
1961
|
return /*#__PURE__*/jsx(Pressable, {
|
|
1960
1962
|
ref: ref,
|
|
@@ -1965,6 +1967,8 @@ const ActionCardPressable = /*#__PURE__*/forwardRef(({
|
|
|
1965
1967
|
hrefAttrs: hrefAttrs,
|
|
1966
1968
|
width: "100%",
|
|
1967
1969
|
onPress: onPress,
|
|
1970
|
+
onHoverIn: onHoverIn,
|
|
1971
|
+
onHoverOut: onHoverOut,
|
|
1968
1972
|
children: ({
|
|
1969
1973
|
isHovered,
|
|
1970
1974
|
isPressed,
|