@razorpay/blade 8.12.1 → 8.13.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 +794 -599
- package/build/components/index.native.d.ts +1469 -1343
- package/build/components/index.native.js +904 -2182
- package/build/components/index.native.js.map +1 -1
- package/build/components/index.web.js +2432 -3688
- 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.d.ts +3 -0
- package/build/tokens/index.native.d.ts +3 -0
- package/build/tokens/index.native.js +32 -169
- package/build/tokens/index.native.js.map +1 -1
- package/build/tokens/index.web.js +4371 -4567
- package/build/tokens/index.web.js.map +1 -1
- package/build/utils/index.d.ts +31 -397
- package/build/utils/index.native.d.ts +28 -395
- package/build/utils/index.native.js +10 -4531
- package/build/utils/index.native.js.map +1 -1
- package/build/utils/index.web.js +72 -4873
- package/build/utils/index.web.js.map +1 -1
- package/package.json +1 -1
package/build/tokens/index.d.ts
CHANGED
|
@@ -848,6 +848,9 @@ type Elevation$1 = Record<
|
|
|
848
848
|
|
|
849
849
|
type ElevationWithColorModes$1 = Record<ColorSchemeModes$1, Elevation$1>;
|
|
850
850
|
|
|
851
|
+
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
852
|
+
|
|
853
|
+
|
|
851
854
|
type DotNotationMotionStringToken<TokenType> = {
|
|
852
855
|
[K in keyof TokenType]: `${Extract<K, string>}.${TokenType[K] extends Record<
|
|
853
856
|
string,
|
|
@@ -848,6 +848,9 @@ type Elevation$1 = Record<
|
|
|
848
848
|
|
|
849
849
|
type ElevationWithColorModes$1 = Record<ColorSchemeModes$1, Elevation$1>;
|
|
850
850
|
|
|
851
|
+
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
852
|
+
|
|
853
|
+
|
|
851
854
|
type DotNotationMotionStringToken<TokenType> = {
|
|
852
855
|
[K in keyof TokenType]: `${Extract<K, string>}.${TokenType[K] extends Record<
|
|
853
856
|
string,
|