@razorpay/blade 10.3.2 → 10.4.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 +457 -71
- package/build/components/index.development.web.js +2452 -1878
- package/build/components/index.development.web.js.map +1 -1
- package/build/components/index.native.d.ts +296 -36
- package/build/components/index.native.js +316 -300
- package/build/components/index.native.js.map +1 -1
- package/build/components/index.production.web.js +2429 -1885
- package/build/components/index.production.web.js.map +1 -1
- package/build/css/bankingThemeDarkDesktop.css +2 -1
- package/build/css/bankingThemeDarkMobile.css +2 -1
- package/build/css/bankingThemeLightDesktop.css +2 -1
- package/build/css/bankingThemeLightMobile.css +2 -1
- package/build/css/paymentThemeDarkDesktop.css +2 -1
- package/build/css/paymentThemeDarkMobile.css +2 -1
- package/build/css/paymentThemeLightDesktop.css +2 -1
- package/build/css/paymentThemeLightMobile.css +2 -1
- package/build/tokens/index.d.ts +4 -0
- package/build/tokens/index.development.web.js +2 -1
- package/build/tokens/index.development.web.js.map +1 -1
- package/build/tokens/index.native.d.ts +4 -0
- package/build/tokens/index.native.js +1 -1
- package/build/tokens/index.native.js.map +1 -1
- package/build/tokens/index.production.web.js +2 -1
- package/build/tokens/index.production.web.js.map +1 -1
- package/build/utils/index.d.ts +2 -0
- package/build/utils/index.native.d.ts +2 -0
- package/package.json +1 -1
|
@@ -21,6 +21,8 @@ declare type BorderWidth$1 = Readonly<{
|
|
|
21
21
|
thin: 1;
|
|
22
22
|
/** thick: 1.5(px/rem/pt) */
|
|
23
23
|
thick: 1.5;
|
|
24
|
+
/** thicker: 2(px/rem/pt) */
|
|
25
|
+
thicker: 2;
|
|
24
26
|
}>;
|
|
25
27
|
declare type Border$1 = Readonly<{
|
|
26
28
|
radius: BorderRadius$1;
|
|
@@ -405,6 +407,8 @@ type BorderWidth = Readonly<{
|
|
|
405
407
|
thin: 1;
|
|
406
408
|
/** thick: 1.5(px/rem/pt) */
|
|
407
409
|
thick: 1.5;
|
|
410
|
+
/** thicker: 2(px/rem/pt) */
|
|
411
|
+
thicker: 2;
|
|
408
412
|
}>;
|
|
409
413
|
|
|
410
414
|
type Border = Readonly<{
|
|
@@ -2,7 +2,7 @@ import { Platform } from 'react-native';
|
|
|
2
2
|
import { Easing } from 'react-native-reanimated';
|
|
3
3
|
import _slicedToArray from '@babel/runtime/helpers/slicedToArray';
|
|
4
4
|
|
|
5
|
-
var border={radius:{none:0,small:2,medium:4,large:8,max:9999,round:'50%'},width:{none:0,thinner:0.5,thin:1,thick:1.5}};
|
|
5
|
+
var border={radius:{none:0,small:2,medium:4,large:8,max:9999,round:'50%'},width:{none:0,thinner:0.5,thin:1,thick:1.5,thicker:2}};
|
|
6
6
|
|
|
7
7
|
var breakpoints={base:0,xs:320,s:480,m:768,l:1024,xl:1200};
|
|
8
8
|
|