@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.d.ts
CHANGED
|
@@ -24,9 +24,12 @@ declare const MetaConstants: {
|
|
|
24
24
|
readonly Amount: "amount";
|
|
25
25
|
readonly Badge: "badge";
|
|
26
26
|
readonly Box: "box";
|
|
27
|
+
readonly BaseBox: "base-box";
|
|
28
|
+
readonly BaseText: "base-text";
|
|
27
29
|
readonly Button: "button";
|
|
28
30
|
readonly Checkbox: "checkbox";
|
|
29
31
|
readonly CheckboxGroup: "checkbox-group";
|
|
32
|
+
readonly CheckboxLabel: "checkbox-label";
|
|
30
33
|
readonly Code: "code";
|
|
31
34
|
readonly Component: "blade-component";
|
|
32
35
|
readonly Counter: "counter";
|
|
@@ -38,9 +41,13 @@ declare const MetaConstants: {
|
|
|
38
41
|
readonly List: "list";
|
|
39
42
|
readonly ListItem: "list-item";
|
|
40
43
|
readonly OTPInput: "otp-input";
|
|
44
|
+
readonly PasswordInput: "password-input";
|
|
45
|
+
readonly TextArea: "textarea";
|
|
46
|
+
readonly TextInput: "textinput";
|
|
41
47
|
readonly ProgressBar: "progress-bar";
|
|
42
48
|
readonly Radio: "radio";
|
|
43
49
|
readonly RadioGroup: "radio-group";
|
|
50
|
+
readonly RadioLabel: "radio-label";
|
|
44
51
|
readonly SkipNav: "skipnav";
|
|
45
52
|
readonly Spinner: "spinner";
|
|
46
53
|
readonly SelectInput: "select-input";
|
|
@@ -50,6 +57,7 @@ declare const MetaConstants: {
|
|
|
50
57
|
readonly BottomSheetBody: "bottom-sheet-body";
|
|
51
58
|
readonly BottomSheetHeader: "bottom-sheet-header";
|
|
52
59
|
readonly BottomSheetFooter: "bottom-sheet-footer";
|
|
60
|
+
readonly BottomSheetGrabHandle: "bottomsheet-grab-handle";
|
|
53
61
|
readonly Card: "card";
|
|
54
62
|
readonly CardBody: "card-body";
|
|
55
63
|
readonly CardHeader: "card-header";
|
|
@@ -65,6 +73,10 @@ declare const MetaConstants: {
|
|
|
65
73
|
readonly ModalBackdrop: "modal-backdrop";
|
|
66
74
|
readonly ModalScrollOverlay: "modal-scroll-overlay";
|
|
67
75
|
readonly VisuallyHidden: "visually-hidden";
|
|
76
|
+
readonly FormLabel: "form-label";
|
|
77
|
+
readonly Switch: "switch";
|
|
78
|
+
readonly SwitchLabel: "switch-label";
|
|
79
|
+
readonly StyledBaseInput: "styled-base-input";
|
|
68
80
|
};
|
|
69
81
|
|
|
70
82
|
type Breakpoints = Readonly<{
|
|
@@ -25,9 +25,12 @@ declare const MetaConstants: {
|
|
|
25
25
|
readonly Amount: "amount";
|
|
26
26
|
readonly Badge: "badge";
|
|
27
27
|
readonly Box: "box";
|
|
28
|
+
readonly BaseBox: "base-box";
|
|
29
|
+
readonly BaseText: "base-text";
|
|
28
30
|
readonly Button: "button";
|
|
29
31
|
readonly Checkbox: "checkbox";
|
|
30
32
|
readonly CheckboxGroup: "checkbox-group";
|
|
33
|
+
readonly CheckboxLabel: "checkbox-label";
|
|
31
34
|
readonly Code: "code";
|
|
32
35
|
readonly Component: "blade-component";
|
|
33
36
|
readonly Counter: "counter";
|
|
@@ -39,9 +42,13 @@ declare const MetaConstants: {
|
|
|
39
42
|
readonly List: "list";
|
|
40
43
|
readonly ListItem: "list-item";
|
|
41
44
|
readonly OTPInput: "otp-input";
|
|
45
|
+
readonly PasswordInput: "password-input";
|
|
46
|
+
readonly TextArea: "textarea";
|
|
47
|
+
readonly TextInput: "textinput";
|
|
42
48
|
readonly ProgressBar: "progress-bar";
|
|
43
49
|
readonly Radio: "radio";
|
|
44
50
|
readonly RadioGroup: "radio-group";
|
|
51
|
+
readonly RadioLabel: "radio-label";
|
|
45
52
|
readonly SkipNav: "skipnav";
|
|
46
53
|
readonly Spinner: "spinner";
|
|
47
54
|
readonly SelectInput: "select-input";
|
|
@@ -51,6 +58,7 @@ declare const MetaConstants: {
|
|
|
51
58
|
readonly BottomSheetBody: "bottom-sheet-body";
|
|
52
59
|
readonly BottomSheetHeader: "bottom-sheet-header";
|
|
53
60
|
readonly BottomSheetFooter: "bottom-sheet-footer";
|
|
61
|
+
readonly BottomSheetGrabHandle: "bottomsheet-grab-handle";
|
|
54
62
|
readonly Card: "card";
|
|
55
63
|
readonly CardBody: "card-body";
|
|
56
64
|
readonly CardHeader: "card-header";
|
|
@@ -66,6 +74,10 @@ declare const MetaConstants: {
|
|
|
66
74
|
readonly ModalBackdrop: "modal-backdrop";
|
|
67
75
|
readonly ModalScrollOverlay: "modal-scroll-overlay";
|
|
68
76
|
readonly VisuallyHidden: "visually-hidden";
|
|
77
|
+
readonly FormLabel: "form-label";
|
|
78
|
+
readonly Switch: "switch";
|
|
79
|
+
readonly SwitchLabel: "switch-label";
|
|
80
|
+
readonly StyledBaseInput: "styled-base-input";
|
|
69
81
|
};
|
|
70
82
|
|
|
71
83
|
type Breakpoints = Readonly<{
|
|
@@ -2789,7 +2789,7 @@ function cloneDeep(value) {
|
|
|
2789
2789
|
|
|
2790
2790
|
var cloneDeep_1 = cloneDeep;
|
|
2791
2791
|
|
|
2792
|
-
var MetaConstants={Accordion:'accordion',AccordionButton:'accordion-button',AccordionItem:'accordion-item',ActionList:'action-list',ActionListFooter:'action-list-footer',ActionListHeader:'action-list-header',ActionListItem:'action-list-item',ActionListSection:'action-list-section',Alert:'alert',Amount:'amount',Badge:'badge',Box:'box',Button:'button',Checkbox:'checkbox',CheckboxGroup:'checkbox-group',Code:'code',Component:'blade-component',Counter:'counter',DropdownOverlay:'dropdown-overlay',Icon:'icon',IconButton:'icon-button',Indicator:'indicator',Link:'link',List:'list',ListItem:'list-item',OTPInput:'otp-input',ProgressBar:'progress-bar',Radio:'radio',RadioGroup:'radio-group',SkipNav:'skipnav',Spinner:'spinner',SelectInput:'select-input',Tooltip:'tooltip',TooltipInteractiveWrapper:'tooltip-interactive-wrapper',BottomSheet:'bottom-sheet',BottomSheetBody:'bottom-sheet-body',BottomSheetHeader:'bottom-sheet-header',BottomSheetFooter:'bottom-sheet-footer',Card:'card',CardBody:'card-body',CardHeader:'card-header',CardFooter:'card-footer',Collapsible:'collapsible',CollapsibleBody:'collapsible-body',CollapsibleButton:'collapsible-button',CollapsibleLink:'collapsible-link',Modal:'modal',ModalBody:'modal-body',ModalHeader:'modal-header',ModalFooter:'modal-footer',ModalBackdrop:'modal-backdrop',ModalScrollOverlay:'modal-scroll-overlay',VisuallyHidden:'visually-hidden'};
|
|
2792
|
+
var MetaConstants={Accordion:'accordion',AccordionButton:'accordion-button',AccordionItem:'accordion-item',ActionList:'action-list',ActionListFooter:'action-list-footer',ActionListHeader:'action-list-header',ActionListItem:'action-list-item',ActionListSection:'action-list-section',Alert:'alert',Amount:'amount',Badge:'badge',Box:'box',BaseBox:'base-box',BaseText:'base-text',Button:'button',Checkbox:'checkbox',CheckboxGroup:'checkbox-group',CheckboxLabel:'checkbox-label',Code:'code',Component:'blade-component',Counter:'counter',DropdownOverlay:'dropdown-overlay',Icon:'icon',IconButton:'icon-button',Indicator:'indicator',Link:'link',List:'list',ListItem:'list-item',OTPInput:'otp-input',PasswordInput:'password-input',TextArea:'textarea',TextInput:'textinput',ProgressBar:'progress-bar',Radio:'radio',RadioGroup:'radio-group',RadioLabel:'radio-label',SkipNav:'skipnav',Spinner:'spinner',SelectInput:'select-input',Tooltip:'tooltip',TooltipInteractiveWrapper:'tooltip-interactive-wrapper',BottomSheet:'bottom-sheet',BottomSheetBody:'bottom-sheet-body',BottomSheetHeader:'bottom-sheet-header',BottomSheetFooter:'bottom-sheet-footer',BottomSheetGrabHandle:'bottomsheet-grab-handle',Card:'card',CardBody:'card-body',CardHeader:'card-header',CardFooter:'card-footer',Collapsible:'collapsible',CollapsibleBody:'collapsible-body',CollapsibleButton:'collapsible-button',CollapsibleLink:'collapsible-link',Modal:'modal',ModalBody:'modal-body',ModalHeader:'modal-header',ModalFooter:'modal-footer',ModalBackdrop:'modal-backdrop',ModalScrollOverlay:'modal-scroll-overlay',VisuallyHidden:'visually-hidden',FormLabel:'form-label',Switch:'switch',SwitchLabel:'switch-label',StyledBaseInput:'styled-base-input'};
|
|
2793
2793
|
|
|
2794
2794
|
var metaAttribute=function metaAttribute(_ref){var testID=_ref.testID,name=_ref.name;return _extends({},name?_defineProperty$1({},"data-"+MetaConstants.Component,name):{},testID?{testID:testID}:{});};
|
|
2795
2795
|
|