@razorpay/blade 10.0.0 → 10.1.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 +76 -4
- package/build/components/index.development.web.js +15 -1
- package/build/components/index.development.web.js.map +1 -1
- package/build/components/index.native.d.ts +60 -4
- package/build/components/index.native.js +3 -3
- package/build/components/index.native.js.map +1 -1
- package/build/components/index.production.web.js +15 -1
- package/build/components/index.production.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
|
@@ -3350,6 +3350,8 @@ var getAllProps = function getAllProps(props, breakpoint) {
|
|
|
3350
3350
|
justifyItems: getResponsiveValue(props.justifyItems, breakpoint),
|
|
3351
3351
|
justifyContent: getResponsiveValue(props.justifyContent, breakpoint),
|
|
3352
3352
|
justifySelf: getResponsiveValue(props.justifySelf, breakpoint),
|
|
3353
|
+
placeSelf: getResponsiveValue(props.placeSelf, breakpoint),
|
|
3354
|
+
placeItems: getResponsiveValue(props.placeItems, breakpoint),
|
|
3353
3355
|
order: getResponsiveValue(props.order, breakpoint),
|
|
3354
3356
|
position: getResponsiveValue(props.position, breakpoint),
|
|
3355
3357
|
zIndex: getResponsiveValue(props.zIndex, breakpoint),
|
|
@@ -4080,6 +4082,7 @@ var makeBoxProps = function makeBoxProps(props) {
|
|
|
4080
4082
|
justifyContent: props.justifyContent,
|
|
4081
4083
|
justifySelf: props.justifySelf,
|
|
4082
4084
|
placeSelf: props.placeSelf,
|
|
4085
|
+
placeItems: props.placeItems,
|
|
4083
4086
|
order: props.order,
|
|
4084
4087
|
// Grid
|
|
4085
4088
|
grid: props.grid,
|
|
@@ -4151,6 +4154,15 @@ var makeBoxProps = function makeBoxProps(props) {
|
|
|
4151
4154
|
onMouseLeave: props.onMouseLeave,
|
|
4152
4155
|
onMouseOver: props.onMouseOver,
|
|
4153
4156
|
onScroll: props.onScroll,
|
|
4157
|
+
// Drag and Drop
|
|
4158
|
+
draggable: props.draggable,
|
|
4159
|
+
onDragStart: props.onDragStart,
|
|
4160
|
+
onDragEnd: props.onDragEnd,
|
|
4161
|
+
onDragEnter: props.onDragEnter,
|
|
4162
|
+
onDragLeave: props.onDragLeave,
|
|
4163
|
+
onDragOver: props.onDragOver,
|
|
4164
|
+
onDrop: props.onDrop,
|
|
4165
|
+
pointerEvents: props.pointerEvents,
|
|
4154
4166
|
children: props.children,
|
|
4155
4167
|
tabIndex: props.tabIndex,
|
|
4156
4168
|
as: isReactNative$4() ? undefined : props.as // as is not supported on react-native
|
|
@@ -23501,7 +23513,7 @@ var PulseAnimation = /*#__PURE__*/styled(BaseBox).withConfig({
|
|
|
23501
23513
|
}), duration, totalDuration, duration, easing, easing);
|
|
23502
23514
|
});
|
|
23503
23515
|
|
|
23504
|
-
var _excluded$4 = ["contrast", "width", "maxWidth", "minWidth", "height", "maxHeight", "minHeight", "borderRadius", "flexWrap", "flexDirection", "flexGrow", "flexShrink", "flexBasis", "alignItems", "alignContent", "alignSelf", "justifyItems", "justifyContent", "justifySelf", "placeSelf", "order", "testID"];
|
|
23516
|
+
var _excluded$4 = ["contrast", "width", "maxWidth", "minWidth", "height", "maxHeight", "minHeight", "borderRadius", "flexWrap", "flexDirection", "flexGrow", "flexShrink", "flexBasis", "alignItems", "alignContent", "alignSelf", "justifyItems", "justifyContent", "justifySelf", "placeSelf", "placeItems", "order", "testID"];
|
|
23505
23517
|
function ownKeys$l(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
23506
23518
|
function _objectSpread$k(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys$l(Object(source), !0).forEach(function (key) { _defineProperty$1(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys$l(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
23507
23519
|
var Skeleton = function Skeleton(_ref) {
|
|
@@ -23526,6 +23538,7 @@ var Skeleton = function Skeleton(_ref) {
|
|
|
23526
23538
|
justifyContent = _ref.justifyContent,
|
|
23527
23539
|
justifySelf = _ref.justifySelf,
|
|
23528
23540
|
placeSelf = _ref.placeSelf,
|
|
23541
|
+
placeItems = _ref.placeItems,
|
|
23529
23542
|
order = _ref.order,
|
|
23530
23543
|
testID = _ref.testID,
|
|
23531
23544
|
props = _objectWithoutProperties$1(_ref, _excluded$4);
|
|
@@ -23547,6 +23560,7 @@ var Skeleton = function Skeleton(_ref) {
|
|
|
23547
23560
|
justifyContent: justifyContent,
|
|
23548
23561
|
justifySelf: justifySelf,
|
|
23549
23562
|
placeSelf: placeSelf,
|
|
23563
|
+
placeItems: placeItems,
|
|
23550
23564
|
order: order,
|
|
23551
23565
|
contrast: contrast
|
|
23552
23566
|
}, getStyledProps(props)), makeAccessible({
|