@razorpay/blade 8.3.0 → 8.4.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/build/components/index.d.ts +40 -2
- package/build/components/index.native.d.ts +40 -2
- package/build/components/index.native.js +1 -1
- package/build/components/index.native.js.map +1 -1
- package/build/components/index.web.js +5 -0
- package/build/components/index.web.js.map +1 -1
- package/build/css/bankingThemeDarkDesktop.css +1 -1
- package/build/css/bankingThemeDarkMobile.css +1 -1
- package/build/css/bankingThemeLightDesktop.css +1 -1
- package/build/css/bankingThemeLightMobile.css +1 -1
- package/build/css/paymentThemeDarkDesktop.css +1 -1
- package/build/css/paymentThemeDarkMobile.css +1 -1
- package/build/css/paymentThemeLightDesktop.css +1 -1
- package/build/css/paymentThemeLightMobile.css +1 -1
- package/package.json +1 -1
|
@@ -20002,6 +20002,11 @@ var makeBoxProps = function makeBoxProps(props) {
|
|
|
20002
20002
|
borderTopRightRadius: props.borderTopRightRadius,
|
|
20003
20003
|
borderBottomRightRadius: props.borderBottomRightRadius,
|
|
20004
20004
|
borderBottomLeftRadius: props.borderBottomLeftRadius,
|
|
20005
|
+
// callbacks
|
|
20006
|
+
onMouseEnter: props.onMouseEnter,
|
|
20007
|
+
onMouseLeave: props.onMouseLeave,
|
|
20008
|
+
onMouseOver: props.onMouseOver,
|
|
20009
|
+
onScroll: props.onScroll,
|
|
20005
20010
|
children: props.children,
|
|
20006
20011
|
as: isReactNative$4() ? undefined : props.as // as is not supported on react-native
|
|
20007
20012
|
|