@razorpay/blade 8.12.0 → 8.12.1
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 +2 -2
- package/build/components/index.native.d.ts +2 -2
- package/build/components/index.native.js +21 -21
- package/build/components/index.native.js.map +1 -1
- package/build/components/index.web.js +1222 -1141
- 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/build/utils/index.d.ts +12 -0
- package/build/utils/index.native.d.ts +12 -0
- package/build/utils/index.native.js +1 -1
- package/build/utils/index.native.js.map +1 -1
- package/build/utils/index.web.js +13 -1
- package/build/utils/index.web.js.map +1 -1
- package/package.json +1 -1
package/build/utils/index.web.js
CHANGED
|
@@ -2800,9 +2800,12 @@ var MetaConstants = {
|
|
|
2800
2800
|
Amount: 'amount',
|
|
2801
2801
|
Badge: 'badge',
|
|
2802
2802
|
Box: 'box',
|
|
2803
|
+
BaseBox: 'base-box',
|
|
2804
|
+
BaseText: 'base-text',
|
|
2803
2805
|
Button: 'button',
|
|
2804
2806
|
Checkbox: 'checkbox',
|
|
2805
2807
|
CheckboxGroup: 'checkbox-group',
|
|
2808
|
+
CheckboxLabel: 'checkbox-label',
|
|
2806
2809
|
Code: 'code',
|
|
2807
2810
|
Component: 'blade-component',
|
|
2808
2811
|
Counter: 'counter',
|
|
@@ -2814,9 +2817,13 @@ var MetaConstants = {
|
|
|
2814
2817
|
List: 'list',
|
|
2815
2818
|
ListItem: 'list-item',
|
|
2816
2819
|
OTPInput: 'otp-input',
|
|
2820
|
+
PasswordInput: 'password-input',
|
|
2821
|
+
TextArea: 'textarea',
|
|
2822
|
+
TextInput: 'textinput',
|
|
2817
2823
|
ProgressBar: 'progress-bar',
|
|
2818
2824
|
Radio: 'radio',
|
|
2819
2825
|
RadioGroup: 'radio-group',
|
|
2826
|
+
RadioLabel: 'radio-label',
|
|
2820
2827
|
SkipNav: 'skipnav',
|
|
2821
2828
|
Spinner: 'spinner',
|
|
2822
2829
|
SelectInput: 'select-input',
|
|
@@ -2826,6 +2833,7 @@ var MetaConstants = {
|
|
|
2826
2833
|
BottomSheetBody: 'bottom-sheet-body',
|
|
2827
2834
|
BottomSheetHeader: 'bottom-sheet-header',
|
|
2828
2835
|
BottomSheetFooter: 'bottom-sheet-footer',
|
|
2836
|
+
BottomSheetGrabHandle: 'bottomsheet-grab-handle',
|
|
2829
2837
|
Card: 'card',
|
|
2830
2838
|
CardBody: 'card-body',
|
|
2831
2839
|
CardHeader: 'card-header',
|
|
@@ -2840,7 +2848,11 @@ var MetaConstants = {
|
|
|
2840
2848
|
ModalFooter: 'modal-footer',
|
|
2841
2849
|
ModalBackdrop: 'modal-backdrop',
|
|
2842
2850
|
ModalScrollOverlay: 'modal-scroll-overlay',
|
|
2843
|
-
VisuallyHidden: 'visually-hidden'
|
|
2851
|
+
VisuallyHidden: 'visually-hidden',
|
|
2852
|
+
FormLabel: 'form-label',
|
|
2853
|
+
Switch: 'switch',
|
|
2854
|
+
SwitchLabel: 'switch-label',
|
|
2855
|
+
StyledBaseInput: 'styled-base-input'
|
|
2844
2856
|
};
|
|
2845
2857
|
|
|
2846
2858
|
function ownKeys$2(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; }
|