@razorpay/blade 6.0.5 → 6.2.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/CHANGELOG.md +20 -0
- package/build/components/index.d.ts +641 -210
- package/build/components/index.native.d.ts +658 -221
- package/build/components/index.native.js +174 -105
- package/build/components/index.native.js.map +1 -1
- package/build/components/index.web.js +10903 -8086
- 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/tokens/index.native.js.map +1 -1
- package/build/utils/index.d.ts +14 -2
- package/build/utils/index.native.d.ts +14 -2
- package/build/utils/index.native.js +5 -3
- package/build/utils/index.native.js.map +1 -1
- package/build/utils/index.web.js +17 -1
- package/build/utils/index.web.js.map +1 -1
- package/package.json +4 -1
package/build/utils/index.web.js
CHANGED
|
@@ -2793,6 +2793,11 @@ var metaAttribute = function metaAttribute(name, value) {
|
|
|
2793
2793
|
};
|
|
2794
2794
|
|
|
2795
2795
|
var MetaConstants = {
|
|
2796
|
+
ActionList: 'action-list',
|
|
2797
|
+
ActionListFooter: 'action-list-footer',
|
|
2798
|
+
ActionListHeader: 'action-list-header',
|
|
2799
|
+
ActionListItem: 'action-list-item',
|
|
2800
|
+
ActionListSection: 'action-list-section',
|
|
2796
2801
|
Alert: 'alert',
|
|
2797
2802
|
Badge: 'badge',
|
|
2798
2803
|
Button: 'button',
|
|
@@ -2801,16 +2806,20 @@ var MetaConstants = {
|
|
|
2801
2806
|
Code: 'code',
|
|
2802
2807
|
Component: 'blade-component',
|
|
2803
2808
|
Counter: 'counter',
|
|
2809
|
+
DropdownOverlay: 'dropdown-overlay',
|
|
2804
2810
|
Icon: 'icon',
|
|
2805
2811
|
IconButton: 'icon-button',
|
|
2806
2812
|
Indicator: 'indicator',
|
|
2807
2813
|
Link: 'link',
|
|
2814
|
+
List: 'list',
|
|
2815
|
+
ListItem: 'list-item',
|
|
2808
2816
|
OTPInput: 'otp-input',
|
|
2809
2817
|
ProgressBar: 'progress-bar',
|
|
2810
2818
|
Radio: 'radio',
|
|
2811
2819
|
RadioGroup: 'radio-group',
|
|
2812
2820
|
SkipNav: 'skipnav',
|
|
2813
2821
|
Spinner: 'spinner',
|
|
2822
|
+
SelectInput: 'select-input',
|
|
2814
2823
|
Card: 'card',
|
|
2815
2824
|
CardBody: 'card-body',
|
|
2816
2825
|
CardHeader: 'card-header',
|
|
@@ -5047,6 +5056,13 @@ var isReactNative = function isReactNative() {
|
|
|
5047
5056
|
return getPlatformType() === 'react-native';
|
|
5048
5057
|
};
|
|
5049
5058
|
|
|
5059
|
+
var getOS = function getOS() {
|
|
5060
|
+
return 'web';
|
|
5061
|
+
};
|
|
5062
|
+
var isAndroid = function isAndroid() {
|
|
5063
|
+
return false;
|
|
5064
|
+
};
|
|
5065
|
+
|
|
5050
5066
|
/* eslint-disable @typescript-eslint/no-namespace */
|
|
5051
5067
|
var Platform;
|
|
5052
5068
|
|
|
@@ -5089,5 +5105,5 @@ var castNativeType = function castNativeType(value) {
|
|
|
5089
5105
|
return value;
|
|
5090
5106
|
};
|
|
5091
5107
|
|
|
5092
|
-
export { MetaConstants, Platform, castNativeType, castWebType, cloneDeep_1 as cloneDeep, getColorScheme, getComponentId, get_1 as getIn, getPlatformType, isEmpty_1 as isEmpty, isEqual_1 as isEqual, isPartialMatchObjectKeys, isReactNative, isValidAllowedChildren, makeAccessible, makeBezier, makeBorderSize, makeMotionTime, makeSize, makeSpace, makeTypographySize, merge_1 as merge, metaAttribute, setupMatchMediaMock, testID, toTitleCase, useBreakpoint, useColorScheme, usePrevious };
|
|
5108
|
+
export { MetaConstants, Platform, castNativeType, castWebType, cloneDeep_1 as cloneDeep, getColorScheme, getComponentId, get_1 as getIn, getOS, getPlatformType, isAndroid, isEmpty_1 as isEmpty, isEqual_1 as isEqual, isPartialMatchObjectKeys, isReactNative, isValidAllowedChildren, makeAccessible, makeBezier, makeBorderSize, makeMotionTime, makeSize, makeSpace, makeTypographySize, merge_1 as merge, metaAttribute, setupMatchMediaMock, testID, toTitleCase, useBreakpoint, useColorScheme, usePrevious };
|
|
5093
5109
|
//# sourceMappingURL=index.web.js.map
|