@razorpay/blade 8.6.1 → 8.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 +186 -76
- package/build/components/index.native.d.ts +157 -76
- package/build/components/index.native.js +20 -14
- package/build/components/index.native.js.map +1 -1
- package/build/components/index.web.js +4442 -1603
- package/build/components/index.web.js.map +1 -1
- package/build/css/bankingThemeDarkDesktop.css +2 -2
- package/build/css/bankingThemeDarkMobile.css +2 -2
- package/build/css/bankingThemeLightDesktop.css +2 -2
- package/build/css/bankingThemeLightMobile.css +2 -2
- package/build/css/paymentThemeDarkDesktop.css +2 -2
- package/build/css/paymentThemeDarkMobile.css +2 -2
- package/build/css/paymentThemeLightDesktop.css +2 -2
- package/build/css/paymentThemeLightMobile.css +2 -2
- package/build/tokens/index.d.ts +11 -4
- package/build/tokens/index.native.d.ts +11 -4
- package/build/tokens/index.native.js +5 -5
- package/build/tokens/index.native.js.map +1 -1
- package/build/tokens/index.web.js +30 -15
- package/build/tokens/index.web.js.map +1 -1
- package/build/utils/index.d.ts +10 -0
- package/build/utils/index.native.d.ts +10 -0
- package/build/utils/index.native.js +1 -1
- package/build/utils/index.native.js.map +1 -1
- package/build/utils/index.web.js +10 -0
- package/build/utils/index.web.js.map +1 -1
- package/codemods/migrate-typography/transformers/migrate-typography.ts +0 -0
- package/package.json +3 -2
package/build/utils/index.web.js
CHANGED
|
@@ -2817,10 +2817,20 @@ var MetaConstants = {
|
|
|
2817
2817
|
SkipNav: 'skipnav',
|
|
2818
2818
|
Spinner: 'spinner',
|
|
2819
2819
|
SelectInput: 'select-input',
|
|
2820
|
+
BottomSheet: 'bottom-sheet',
|
|
2821
|
+
BottomSheetBody: 'bottom-sheet-body',
|
|
2822
|
+
BottomSheetHeader: 'bottom-sheet-header',
|
|
2823
|
+
BottomSheetFooter: 'bottom-sheet-footer',
|
|
2820
2824
|
Card: 'card',
|
|
2821
2825
|
CardBody: 'card-body',
|
|
2822
2826
|
CardHeader: 'card-header',
|
|
2823
2827
|
CardFooter: 'card-footer',
|
|
2828
|
+
Modal: 'modal',
|
|
2829
|
+
ModalBody: 'modal-body',
|
|
2830
|
+
ModalHeader: 'modal-header',
|
|
2831
|
+
ModalFooter: 'modal-footer',
|
|
2832
|
+
ModalBackdrop: 'modal-backdrop',
|
|
2833
|
+
ModalScrollOverlay: 'modal-scroll-overlay',
|
|
2824
2834
|
VisuallyHidden: 'visually-hidden'
|
|
2825
2835
|
};
|
|
2826
2836
|
|