@razorpay/blade 10.7.1 → 10.8.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 +3 -0
- package/build/components/index.development.web.js +2 -1
- package/build/components/index.development.web.js.map +1 -1
- package/build/components/index.native.d.ts +2 -0
- package/build/components/index.native.js +1 -1
- package/build/components/index.native.js.map +1 -1
- package/build/components/index.production.web.js +2 -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
|
@@ -1376,6 +1376,7 @@ declare type BoxDragAndDropProps = Omit<Platform.Select<{
|
|
|
1376
1376
|
declare type BoxProps = Partial<PaddingProps & MarginProps & LayoutProps & FlexboxProps & PositionProps & GridProps & BoxCallbackProps & BoxDragAndDropProps & CommonBoxVisualProps & BoxVisualProps & {
|
|
1377
1377
|
children?: React.ReactNode | React.ReactNode[];
|
|
1378
1378
|
tabIndex?: number;
|
|
1379
|
+
id?: string;
|
|
1379
1380
|
} & TestID>;
|
|
1380
1381
|
declare type BaseBoxProps = Omit<BoxProps, keyof BoxVisualProps> & Partial<BaseBoxVisualProps & {
|
|
1381
1382
|
className?: string;
|
|
@@ -2627,6 +2628,7 @@ declare const Box: React__default.ForwardRefExoticComponent<Partial<PaddingProps
|
|
|
2627
2628
|
} & {
|
|
2628
2629
|
children?: React__default.ReactNode | React__default.ReactNode[];
|
|
2629
2630
|
tabIndex?: number | undefined;
|
|
2631
|
+
id?: string | undefined;
|
|
2630
2632
|
} & TestID> & React__default.RefAttributes<BoxRefType>>;
|
|
2631
2633
|
|
|
2632
2634
|
declare const ComponentIds: {
|
|
@@ -7559,6 +7561,7 @@ declare const TooltipInteractiveWrapper: styled_components.StyledComponent<"div"
|
|
|
7559
7561
|
} & {
|
|
7560
7562
|
children?: React$1.ReactNode | React$1.ReactNode[];
|
|
7561
7563
|
tabIndex?: number | undefined;
|
|
7564
|
+
id?: string | undefined;
|
|
7562
7565
|
} & TestID>, "backgroundColor" | "as"> & Partial<{
|
|
7563
7566
|
border?: csstype.Property.Border<string | number> | {
|
|
7564
7567
|
readonly base?: csstype.Property.Border<string | number> | undefined;
|
|
@@ -4439,7 +4439,8 @@ var _Box = function _Box(props, ref) {
|
|
|
4439
4439
|
return /*#__PURE__*/jsx(BaseBox
|
|
4440
4440
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
4441
4441
|
, _objectSpread$61(_objectSpread$61({
|
|
4442
|
-
ref: ref
|
|
4442
|
+
ref: ref,
|
|
4443
|
+
id: props.id
|
|
4443
4444
|
}, metaAttribute({
|
|
4444
4445
|
name: MetaConstants.Box,
|
|
4445
4446
|
testID: props.testID
|