@razorpay/blade 10.16.0 → 10.17.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 +0 -1
- package/build/components/index.development.web.js +2 -2
- package/build/components/index.development.web.js.map +1 -1
- package/build/components/index.native.d.ts +0 -1
- 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 -2
- package/build/components/index.production.web.js.map +1 -1
- package/build/css/bankingThemeDarkDesktop.css +1 -2
- package/build/css/bankingThemeDarkMobile.css +1 -2
- package/build/css/bankingThemeLightDesktop.css +2 -3
- package/build/css/bankingThemeLightMobile.css +2 -3
- package/build/css/paymentThemeDarkDesktop.css +2 -3
- package/build/css/paymentThemeDarkMobile.css +2 -3
- package/build/css/paymentThemeLightDesktop.css +2 -3
- package/build/css/paymentThemeLightMobile.css +2 -3
- package/build/tokens/index.d.ts +0 -1
- package/build/tokens/index.development.web.js +3 -15
- package/build/tokens/index.development.web.js.map +1 -1
- package/build/tokens/index.native.d.ts +0 -1
- package/build/tokens/index.native.js +2 -2
- package/build/tokens/index.native.js.map +1 -1
- package/build/tokens/index.production.web.js +3 -15
- package/build/tokens/index.production.web.js.map +1 -1
- package/build/utils/index.d.ts +0 -1
- package/build/utils/index.development.web.js.map +1 -1
- package/build/utils/index.native.d.ts +0 -1
- package/build/utils/index.native.js.map +1 -1
- package/package.json +17 -16
|
@@ -437,7 +437,6 @@ declare type Colors = {
|
|
|
437
437
|
overlay: Record<'background', Record<400 | 800, string>>;
|
|
438
438
|
popup: Record<'background', string>;
|
|
439
439
|
};
|
|
440
|
-
overlay: Record<'background', string>;
|
|
441
440
|
action: {
|
|
442
441
|
background: Omit<ActionVariants, 'link'>;
|
|
443
442
|
border: Omit<ActionVariants, 'link'>;
|
|
@@ -25207,7 +25207,7 @@ var StyledModalBackdrop = /*#__PURE__*/styled(FloatingOverlay).withConfig({
|
|
|
25207
25207
|
transitionTimingFunction: isVisible ? castWebType(theme.motion.easing.entrance.revealing) : castWebType(theme.motion.easing.exit.revealing),
|
|
25208
25208
|
transitionProperty: 'opacity',
|
|
25209
25209
|
opacity: isVisible ? 1 : 0,
|
|
25210
|
-
backgroundColor: theme.colors.overlay.background
|
|
25210
|
+
backgroundColor: theme.colors.surface.overlay.background[800]
|
|
25211
25211
|
};
|
|
25212
25212
|
});
|
|
25213
25213
|
var ModalBackdrop = function ModalBackdrop() {
|
|
@@ -30016,7 +30016,7 @@ var BottomSheetBackdrop = function BottomSheetBackdrop(_ref2) {
|
|
|
30016
30016
|
bottom: "spacing.0",
|
|
30017
30017
|
right: "spacing.0",
|
|
30018
30018
|
zIndex: zIndex,
|
|
30019
|
-
backgroundColor: theme.colors.overlay.background
|
|
30019
|
+
backgroundColor: theme.colors.surface.overlay.background[800]
|
|
30020
30020
|
}));
|
|
30021
30021
|
};
|
|
30022
30022
|
|