@razorpay/blade 9.0.2 → 9.1.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 +177 -1118
- package/build/components/index.native.d.ts +124 -761
- package/build/components/index.native.js +337 -333
- package/build/components/index.native.js.map +1 -1
- package/build/components/index.web.js +2022 -1924
- 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/package.json +1 -1
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import * as React$1 from 'react';
|
|
3
3
|
import React__default, { ReactChild, ReactElement, ReactNode, SyntheticEvent, KeyboardEvent } from 'react';
|
|
4
|
-
import * as react_native from 'react-native';
|
|
5
4
|
import { View, ViewStyle, AccessibilityRole, ImageSourcePropType, GestureResponderEvent, PressableProps } from 'react-native';
|
|
6
5
|
import { CSSObject } from 'styled-components';
|
|
7
6
|
import { ReactDOMAttributes } from '@use-gesture/react/dist/declarations/src/types';
|
|
@@ -588,7 +587,7 @@ type Motion = Readonly<{
|
|
|
588
587
|
easing: Easing;
|
|
589
588
|
}>;
|
|
590
589
|
|
|
591
|
-
type ElevationLevels = 'none' | 'lowRaised' | 'midRaised' | 'highRaised';
|
|
590
|
+
type ElevationLevels$1 = 'none' | 'lowRaised' | 'midRaised' | 'highRaised';
|
|
592
591
|
|
|
593
592
|
type ElevationStyles = Readonly<{
|
|
594
593
|
elevation: number;
|
|
@@ -608,7 +607,7 @@ type ElevationStyles = Readonly<{
|
|
|
608
607
|
}>;
|
|
609
608
|
|
|
610
609
|
type Elevation = Record<
|
|
611
|
-
ElevationLevels,
|
|
610
|
+
ElevationLevels$1,
|
|
612
611
|
Platform.Select<{
|
|
613
612
|
web: string;
|
|
614
613
|
native: ElevationStyles;
|
|
@@ -1368,6 +1367,8 @@ declare const validBoxAsValues$1 = [
|
|
|
1368
1367
|
|
|
1369
1368
|
type BoxAsType$1 = typeof validBoxAsValues$1[number];
|
|
1370
1369
|
|
|
1370
|
+
type BrandColorString$1 = `brand.${DotNotationColorStringToken<Theme$1['colors']['brand']>}`;
|
|
1371
|
+
|
|
1371
1372
|
// Visual props that are common for both Box and BaseBox
|
|
1372
1373
|
type CommonBoxVisualProps$1 = MakeObjectResponsive$1<
|
|
1373
1374
|
{
|
|
@@ -1392,17 +1393,30 @@ type CommonBoxVisualProps$1 = MakeObjectResponsive$1<
|
|
|
1392
1393
|
| 'backgroundPosition'
|
|
1393
1394
|
| 'backgroundOrigin'
|
|
1394
1395
|
| 'backgroundRepeat'
|
|
1395
|
-
>
|
|
1396
|
+
> & {
|
|
1397
|
+
/**
|
|
1398
|
+
* Sets the elevation for Box
|
|
1399
|
+
*
|
|
1400
|
+
* eg: `theme.elevation.midRaised`
|
|
1401
|
+
*
|
|
1402
|
+
* @default `theme.elevation.lowRaised`
|
|
1403
|
+
*
|
|
1404
|
+
* **Links:**
|
|
1405
|
+
* - Docs: https://blade.razorpay.com/?path=/docs/tokens-elevation--page
|
|
1406
|
+
*/
|
|
1407
|
+
elevation?: keyof Elevation;
|
|
1408
|
+
}
|
|
1396
1409
|
>;
|
|
1397
1410
|
|
|
1398
1411
|
// Visual props that are specific BaseBox
|
|
1399
1412
|
// This is used to ensure some of the more flexible BaseBox props are not passed to Box
|
|
1400
|
-
type BaseBoxVisualProps = MakeObjectResponsive$1<
|
|
1413
|
+
type BaseBoxVisualProps$1 = MakeObjectResponsive$1<
|
|
1401
1414
|
{
|
|
1402
1415
|
backgroundColor:
|
|
1403
1416
|
| BackgroundColorString$1<'feedback'>
|
|
1404
1417
|
| BackgroundColorString$1<'surface'>
|
|
1405
1418
|
| BackgroundColorString$1<'action'>
|
|
1419
|
+
| BrandColorString$1
|
|
1406
1420
|
| (string & Record<never, never>);
|
|
1407
1421
|
lineHeight: SpacingValueType$1;
|
|
1408
1422
|
touchAction: CSSObject['touchAction'];
|
|
@@ -1420,14 +1434,14 @@ type BaseBoxVisualProps = MakeObjectResponsive$1<
|
|
|
1420
1434
|
|
|
1421
1435
|
// Visual props that are specific to Box
|
|
1422
1436
|
type BoxVisualProps$1 = MakeObjectResponsive$1<{
|
|
1423
|
-
backgroundColor: BackgroundColorString$1<'surface'
|
|
1437
|
+
backgroundColor: BackgroundColorString$1<'surface'> | BrandColorString$1;
|
|
1424
1438
|
}> & {
|
|
1425
1439
|
// Intentionally keeping this outside of MakeObjectResponsive since we only want as to be string and not responsive object
|
|
1426
1440
|
// styled-components do not support passing `as` prop as an object
|
|
1427
1441
|
as: BoxAsType$1;
|
|
1428
1442
|
};
|
|
1429
1443
|
|
|
1430
|
-
type StyledPropsBlade = Partial<
|
|
1444
|
+
type StyledPropsBlade$1 = Partial<
|
|
1431
1445
|
Omit<
|
|
1432
1446
|
MarginProps$1 &
|
|
1433
1447
|
Pick<FlexboxProps$1, 'alignSelf' | 'justifySelf' | 'placeSelf' | 'order'> &
|
|
@@ -1501,9 +1515,9 @@ type BoxProps$1 = Partial<
|
|
|
1501
1515
|
// Visual props have different types for BaseBox and Box. BaseBox has more flexible types and more props exposed.
|
|
1502
1516
|
// So first we Omit Visual props of Box
|
|
1503
1517
|
// Then we append BaseBoxVisualProps and some other props for styled-components like class and id
|
|
1504
|
-
type BaseBoxProps = Omit<BoxProps$1, keyof BoxVisualProps$1> &
|
|
1518
|
+
type BaseBoxProps$1 = Omit<BoxProps$1, keyof BoxVisualProps$1> &
|
|
1505
1519
|
Partial<
|
|
1506
|
-
BaseBoxVisualProps & {
|
|
1520
|
+
BaseBoxVisualProps$1 & {
|
|
1507
1521
|
className?: string;
|
|
1508
1522
|
id?: string;
|
|
1509
1523
|
tabIndex?: number;
|
|
@@ -1859,7 +1873,7 @@ type IconProps$1 = {
|
|
|
1859
1873
|
| BadgeIconColors$1
|
|
1860
1874
|
| 'currentColor'; // currentColor is useful for letting the SVG inherit color property from its container
|
|
1861
1875
|
size: IconSize$1;
|
|
1862
|
-
} & StyledPropsBlade;
|
|
1876
|
+
} & StyledPropsBlade$1;
|
|
1863
1877
|
type IconComponent$1 = React.ComponentType<IconProps$1>;
|
|
1864
1878
|
|
|
1865
1879
|
declare type ActionListItemProps = {
|
|
@@ -2016,7 +2030,7 @@ declare type AlertProps = {
|
|
|
2016
2030
|
*/
|
|
2017
2031
|
secondary?: SecondaryAction;
|
|
2018
2032
|
};
|
|
2019
|
-
} & TestID & StyledPropsBlade;
|
|
2033
|
+
} & TestID & StyledPropsBlade$1;
|
|
2020
2034
|
declare const Alert: ({ description, title, isDismissible, onDismiss, contrast, isFullWidth, intent, actions, testID, ...styledProps }: AlertProps) => ReactElement | null;
|
|
2021
2035
|
|
|
2022
2036
|
declare type BadgeProps = {
|
|
@@ -2055,7 +2069,7 @@ declare type BadgeProps = {
|
|
|
2055
2069
|
* @default 'regular'
|
|
2056
2070
|
*/
|
|
2057
2071
|
fontWeight?: 'regular' | 'bold';
|
|
2058
|
-
} & TestID & StyledPropsBlade;
|
|
2072
|
+
} & TestID & StyledPropsBlade$1;
|
|
2059
2073
|
declare const Badge: ({ children, contrast, fontWeight, icon, size, variant, testID, ...styledProps }: BadgeProps) => ReactElement;
|
|
2060
2074
|
|
|
2061
2075
|
declare type BladeProviderProps = {
|
|
@@ -2132,6 +2146,8 @@ declare type MakeObjectResponsive<T, K extends keyof T = Extract<keyof T, string
|
|
|
2132
2146
|
[P in K]: MakeValueResponsive<T[P]>;
|
|
2133
2147
|
};
|
|
2134
2148
|
|
|
2149
|
+
declare type ElevationLevels = 'none' | 'lowRaised' | 'midRaised' | 'highRaised';
|
|
2150
|
+
|
|
2135
2151
|
declare type ArrayOfMaxLength4<T> = readonly [T?, T?, T?, T?];
|
|
2136
2152
|
declare type SpaceUnits = 'px' | '%' | 'fr' | 'rem' | 'em' | 'vh' | 'vw';
|
|
2137
2153
|
declare type SpacingValueType = DotNotationSpacingStringToken | `${string}${SpaceUnits}` | `calc(${string})` | 'auto' | `min(${string})` | `max(${string})` | 'none' | 'initial' | 'fit-content' | 'max-content' | 'min-content';
|
|
@@ -2614,6 +2630,7 @@ declare type BackgroundColorString<T extends ColorObjects> = `${T}.background.${
|
|
|
2614
2630
|
declare type BorderColorString<T extends ColorObjects> = `${T}.border.${DotNotationColorStringToken<Theme$1['colors'][T]['border']>}`;
|
|
2615
2631
|
declare const validBoxAsValues: readonly ["div", "section", "footer", "header", "main", "aside", "nav", "span", "label"];
|
|
2616
2632
|
declare type BoxAsType = typeof validBoxAsValues[number];
|
|
2633
|
+
declare type BrandColorString = `brand.${DotNotationColorStringToken<Theme$1['colors']['brand']>}`;
|
|
2617
2634
|
declare type CommonBoxVisualProps = MakeObjectResponsive<{
|
|
2618
2635
|
borderRadius: keyof Border['radius'];
|
|
2619
2636
|
borderWidth: keyof Border['width'];
|
|
@@ -2630,12 +2647,31 @@ declare type CommonBoxVisualProps = MakeObjectResponsive<{
|
|
|
2630
2647
|
borderTopRightRadius: keyof Border['radius'];
|
|
2631
2648
|
borderBottomRightRadius: keyof Border['radius'];
|
|
2632
2649
|
borderBottomLeftRadius: keyof Border['radius'];
|
|
2633
|
-
} & PickCSSByPlatform<'backgroundImage' | 'backgroundSize' | 'backgroundPosition' | 'backgroundOrigin' | 'backgroundRepeat'
|
|
2650
|
+
} & PickCSSByPlatform<'backgroundImage' | 'backgroundSize' | 'backgroundPosition' | 'backgroundOrigin' | 'backgroundRepeat'> & {
|
|
2651
|
+
/**
|
|
2652
|
+
* Sets the elevation for Box
|
|
2653
|
+
*
|
|
2654
|
+
* eg: `theme.elevation.midRaised`
|
|
2655
|
+
*
|
|
2656
|
+
* @default `theme.elevation.lowRaised`
|
|
2657
|
+
*
|
|
2658
|
+
* **Links:**
|
|
2659
|
+
* - Docs: https://blade.razorpay.com/?path=/docs/tokens-elevation--page
|
|
2660
|
+
*/
|
|
2661
|
+
elevation?: keyof Elevation;
|
|
2662
|
+
}>;
|
|
2663
|
+
declare type BaseBoxVisualProps = MakeObjectResponsive<{
|
|
2664
|
+
backgroundColor: BackgroundColorString<'feedback'> | BackgroundColorString<'surface'> | BackgroundColorString<'action'> | BrandColorString | (string & Record<never, never>);
|
|
2665
|
+
lineHeight: SpacingValueType;
|
|
2666
|
+
touchAction: CSSObject['touchAction'];
|
|
2667
|
+
userSelect: CSSObject['userSelect'];
|
|
2668
|
+
} & PickCSSByPlatform<'border' | 'borderLeft' | 'borderRight' | 'borderTop' | 'borderBottom' | 'opacity' | 'pointerEvents'>>;
|
|
2634
2669
|
declare type BoxVisualProps = MakeObjectResponsive<{
|
|
2635
|
-
backgroundColor: BackgroundColorString<'surface'
|
|
2670
|
+
backgroundColor: BackgroundColorString<'surface'> | BrandColorString;
|
|
2636
2671
|
}> & {
|
|
2637
2672
|
as: BoxAsType;
|
|
2638
2673
|
};
|
|
2674
|
+
declare type StyledPropsBlade = Partial<Omit<MarginProps & Pick<FlexboxProps, 'alignSelf' | 'justifySelf' | 'placeSelf' | 'order'> & PositionProps & Pick<GridProps, 'gridColumn' | 'gridRow' | 'gridRowStart' | 'gridRowEnd' | 'gridColumnStart' | 'gridColumnEnd' | 'gridArea'>, '__brand__'>>;
|
|
2639
2675
|
declare type BoxCallbackProps = Omit<Platform.Select<{
|
|
2640
2676
|
web: {
|
|
2641
2677
|
/**
|
|
@@ -2673,6 +2709,11 @@ declare type BoxProps = Partial<PaddingProps & MarginProps & LayoutProps & Flexb
|
|
|
2673
2709
|
children?: React.ReactNode | React.ReactNode[];
|
|
2674
2710
|
tabIndex?: number;
|
|
2675
2711
|
} & TestID>;
|
|
2712
|
+
declare type BaseBoxProps = Omit<BoxProps, keyof BoxVisualProps> & Partial<BaseBoxVisualProps & {
|
|
2713
|
+
className?: string;
|
|
2714
|
+
id?: string;
|
|
2715
|
+
tabIndex?: number;
|
|
2716
|
+
}> & BladeCommonEvents$1;
|
|
2676
2717
|
declare type BoxRefType = Platform.Select<{
|
|
2677
2718
|
web: Omit<HTMLElement, 'style'>;
|
|
2678
2719
|
native: View;
|
|
@@ -2754,124 +2795,7 @@ declare const Box: React__default.ForwardRefExoticComponent<Partial<PaddingProps
|
|
|
2754
2795
|
readonly l?: "platform-native" | undefined;
|
|
2755
2796
|
readonly xl?: "platform-native" | undefined;
|
|
2756
2797
|
} | undefined;
|
|
2757
|
-
} & {
|
|
2758
|
-
alignContent?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | {
|
|
2759
|
-
readonly base?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
2760
|
-
readonly xs?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
2761
|
-
readonly s?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
2762
|
-
readonly m?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
2763
|
-
readonly l?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
2764
|
-
readonly xl?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
2765
|
-
} | undefined;
|
|
2766
|
-
alignItems?: react_native.FlexAlignType | {
|
|
2767
|
-
readonly base?: react_native.FlexAlignType | undefined;
|
|
2768
|
-
readonly xs?: react_native.FlexAlignType | undefined;
|
|
2769
|
-
readonly s?: react_native.FlexAlignType | undefined;
|
|
2770
|
-
readonly m?: react_native.FlexAlignType | undefined;
|
|
2771
|
-
readonly l?: react_native.FlexAlignType | undefined;
|
|
2772
|
-
readonly xl?: react_native.FlexAlignType | undefined;
|
|
2773
|
-
} | undefined;
|
|
2774
|
-
alignSelf?: "auto" | react_native.FlexAlignType | {
|
|
2775
|
-
readonly base?: "auto" | react_native.FlexAlignType | undefined;
|
|
2776
|
-
readonly xs?: "auto" | react_native.FlexAlignType | undefined;
|
|
2777
|
-
readonly s?: "auto" | react_native.FlexAlignType | undefined;
|
|
2778
|
-
readonly m?: "auto" | react_native.FlexAlignType | undefined;
|
|
2779
|
-
readonly l?: "auto" | react_native.FlexAlignType | undefined;
|
|
2780
|
-
readonly xl?: "auto" | react_native.FlexAlignType | undefined;
|
|
2781
|
-
} | undefined;
|
|
2782
|
-
columnGap: SpacingValueType | {
|
|
2783
|
-
readonly base?: SpacingValueType | undefined;
|
|
2784
|
-
readonly xs?: SpacingValueType | undefined;
|
|
2785
|
-
readonly s?: SpacingValueType | undefined;
|
|
2786
|
-
readonly m?: SpacingValueType | undefined;
|
|
2787
|
-
readonly l?: SpacingValueType | undefined;
|
|
2788
|
-
readonly xl?: SpacingValueType | undefined;
|
|
2789
|
-
};
|
|
2790
|
-
flexBasis?: string | number | {
|
|
2791
|
-
readonly base?: string | number | undefined;
|
|
2792
|
-
readonly xs?: string | number | undefined;
|
|
2793
|
-
readonly s?: string | number | undefined;
|
|
2794
|
-
readonly m?: string | number | undefined;
|
|
2795
|
-
readonly l?: string | number | undefined;
|
|
2796
|
-
readonly xl?: string | number | undefined;
|
|
2797
|
-
} | undefined;
|
|
2798
|
-
flexDirection?: "row" | "column" | "column-reverse" | "row-reverse" | {
|
|
2799
|
-
readonly base?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
2800
|
-
readonly xs?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
2801
|
-
readonly s?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
2802
|
-
readonly m?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
2803
|
-
readonly l?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
2804
|
-
readonly xl?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
2805
|
-
} | undefined;
|
|
2806
|
-
flexGrow?: number | {
|
|
2807
|
-
readonly base?: number | undefined;
|
|
2808
|
-
readonly xs?: number | undefined;
|
|
2809
|
-
readonly s?: number | undefined;
|
|
2810
|
-
readonly m?: number | undefined;
|
|
2811
|
-
readonly l?: number | undefined;
|
|
2812
|
-
readonly xl?: number | undefined;
|
|
2813
|
-
} | undefined;
|
|
2814
|
-
flexShrink?: number | {
|
|
2815
|
-
readonly base?: number | undefined;
|
|
2816
|
-
readonly xs?: number | undefined;
|
|
2817
|
-
readonly s?: number | undefined;
|
|
2818
|
-
readonly m?: number | undefined;
|
|
2819
|
-
readonly l?: number | undefined;
|
|
2820
|
-
readonly xl?: number | undefined;
|
|
2821
|
-
} | undefined;
|
|
2822
|
-
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | {
|
|
2823
|
-
readonly base?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
2824
|
-
readonly xs?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
2825
|
-
readonly s?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
2826
|
-
readonly m?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
2827
|
-
readonly l?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
2828
|
-
readonly xl?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
2829
|
-
} | undefined;
|
|
2830
|
-
justifyContent?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | {
|
|
2831
|
-
readonly base?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
2832
|
-
readonly xs?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
2833
|
-
readonly s?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
2834
|
-
readonly m?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
2835
|
-
readonly l?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
2836
|
-
readonly xl?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
2837
|
-
} | undefined;
|
|
2838
|
-
justifyItems: never;
|
|
2839
|
-
justifySelf: never;
|
|
2840
|
-
order: never;
|
|
2841
|
-
rowGap: SpacingValueType | {
|
|
2842
|
-
readonly base?: SpacingValueType | undefined;
|
|
2843
|
-
readonly xs?: SpacingValueType | undefined;
|
|
2844
|
-
readonly s?: SpacingValueType | undefined;
|
|
2845
|
-
readonly m?: SpacingValueType | undefined;
|
|
2846
|
-
readonly l?: SpacingValueType | undefined;
|
|
2847
|
-
readonly xl?: SpacingValueType | undefined;
|
|
2848
|
-
};
|
|
2849
|
-
flex: string | number | {
|
|
2850
|
-
readonly base?: string | number | undefined;
|
|
2851
|
-
readonly xs?: string | number | undefined;
|
|
2852
|
-
readonly s?: string | number | undefined;
|
|
2853
|
-
readonly m?: string | number | undefined;
|
|
2854
|
-
readonly l?: string | number | undefined;
|
|
2855
|
-
readonly xl?: string | number | undefined;
|
|
2856
|
-
};
|
|
2857
|
-
gap: SpacingValueType | {
|
|
2858
|
-
readonly base?: SpacingValueType | undefined;
|
|
2859
|
-
readonly xs?: SpacingValueType | undefined;
|
|
2860
|
-
readonly s?: SpacingValueType | undefined;
|
|
2861
|
-
readonly m?: SpacingValueType | undefined;
|
|
2862
|
-
readonly l?: SpacingValueType | undefined;
|
|
2863
|
-
readonly xl?: SpacingValueType | undefined;
|
|
2864
|
-
};
|
|
2865
|
-
placeSelf: never;
|
|
2866
|
-
__brand__?: "platform-native" | {
|
|
2867
|
-
readonly base?: "platform-native" | undefined;
|
|
2868
|
-
readonly xs?: "platform-native" | undefined;
|
|
2869
|
-
readonly s?: "platform-native" | undefined;
|
|
2870
|
-
readonly m?: "platform-native" | undefined;
|
|
2871
|
-
readonly l?: "platform-native" | undefined;
|
|
2872
|
-
readonly xl?: "platform-native" | undefined;
|
|
2873
|
-
} | undefined;
|
|
2874
|
-
} & {
|
|
2798
|
+
} & FlexboxProps & {
|
|
2875
2799
|
bottom: SpacingValueType | {
|
|
2876
2800
|
readonly base?: SpacingValueType | undefined;
|
|
2877
2801
|
readonly xs?: SpacingValueType | undefined;
|
|
@@ -2958,6 +2882,14 @@ declare const Box: React__default.ForwardRefExoticComponent<Partial<PaddingProps
|
|
|
2958
2882
|
onMouseLeave: undefined;
|
|
2959
2883
|
onScroll: undefined;
|
|
2960
2884
|
} & {
|
|
2885
|
+
elevation?: ElevationLevels | {
|
|
2886
|
+
readonly base?: ElevationLevels | undefined;
|
|
2887
|
+
readonly xs?: ElevationLevels | undefined;
|
|
2888
|
+
readonly s?: ElevationLevels | undefined;
|
|
2889
|
+
readonly m?: ElevationLevels | undefined;
|
|
2890
|
+
readonly l?: ElevationLevels | undefined;
|
|
2891
|
+
readonly xl?: ElevationLevels | undefined;
|
|
2892
|
+
} | undefined;
|
|
2961
2893
|
backgroundImage: never;
|
|
2962
2894
|
backgroundOrigin: never;
|
|
2963
2895
|
backgroundRepeat: never;
|
|
@@ -3092,7 +3024,7 @@ declare const Box: React__default.ForwardRefExoticComponent<Partial<PaddingProps
|
|
|
3092
3024
|
readonly xl?: "platform-native" | undefined;
|
|
3093
3025
|
} | undefined;
|
|
3094
3026
|
} & MakeObjectResponsive<{
|
|
3095
|
-
backgroundColor: "surface.background.level1.lowContrast" | "surface.background.level1.highContrast" | "surface.background.level2.lowContrast" | "surface.background.level2.highContrast" | "surface.background.level3.lowContrast" | "surface.background.level3.highContrast";
|
|
3027
|
+
backgroundColor: "brand.primary.300" | "brand.primary.400" | "brand.primary.500" | "brand.primary.600" | "brand.primary.700" | "brand.primary.800" | "brand.secondary.500" | "brand.gray.200.lowContrast" | "brand.gray.200.highContrast" | "brand.gray.300.lowContrast" | "brand.gray.300.highContrast" | "brand.gray.400.lowContrast" | "brand.gray.400.highContrast" | "brand.gray.500.lowContrast" | "brand.gray.500.highContrast" | "brand.gray.600.lowContrast" | "brand.gray.600.highContrast" | "brand.gray.700.lowContrast" | "brand.gray.700.highContrast" | "brand.gray.a50.lowContrast" | "brand.gray.a50.highContrast" | "brand.gray.a100.lowContrast" | "brand.gray.a100.highContrast" | "surface.background.level1.lowContrast" | "surface.background.level1.highContrast" | "surface.background.level2.lowContrast" | "surface.background.level2.highContrast" | "surface.background.level3.lowContrast" | "surface.background.level3.highContrast";
|
|
3096
3028
|
}, "backgroundColor"> & {
|
|
3097
3029
|
as: "aside" | "div" | "footer" | "header" | "label" | "main" | "nav" | "section" | "span";
|
|
3098
3030
|
} & {
|
|
@@ -3156,7 +3088,7 @@ declare type CardProps = {
|
|
|
3156
3088
|
* - Docs: https://blade.razorpay.com/?path=/docs/tokens-spacing--page
|
|
3157
3089
|
*/
|
|
3158
3090
|
padding?: Extract<SpacingValueType$1, 'spacing.0' | 'spacing.3' | 'spacing.5' | 'spacing.7'>;
|
|
3159
|
-
} & TestID & StyledPropsBlade;
|
|
3091
|
+
} & TestID & StyledPropsBlade$1;
|
|
3160
3092
|
declare const Card: ({ children, surfaceLevel, elevation, testID, padding, ...styledProps }: CardProps) => React__default.ReactElement;
|
|
3161
3093
|
declare type CardBodyProps = {
|
|
3162
3094
|
children: React__default.ReactNode;
|
|
@@ -3201,7 +3133,7 @@ declare type BaseLinkCommonProps = {
|
|
|
3201
3133
|
* The title of the link which is displayed as a tooltip. This is a web only prop and has no effect on react-native.
|
|
3202
3134
|
*/
|
|
3203
3135
|
htmlTitle?: string;
|
|
3204
|
-
} & TestID & StyledPropsBlade & Omit<BladeCommonEvents$1, 'onBlur' | 'onMouseLeave'>;
|
|
3136
|
+
} & TestID & StyledPropsBlade$1 & Omit<BladeCommonEvents$1, 'onBlur' | 'onMouseLeave'>;
|
|
3205
3137
|
declare type BaseLinkWithoutIconProps = BaseLinkCommonProps & {
|
|
3206
3138
|
icon?: undefined;
|
|
3207
3139
|
children: StringChildrenType;
|
|
@@ -3242,7 +3174,7 @@ declare type LinkCommonProps = {
|
|
|
3242
3174
|
* @default medium
|
|
3243
3175
|
*/
|
|
3244
3176
|
size?: BaseLinkProps['size'];
|
|
3245
|
-
} & TestID & StyledPropsBlade & BladeCommonEvents$1 & Platform.Select<{
|
|
3177
|
+
} & TestID & StyledPropsBlade$1 & BladeCommonEvents$1 & Platform.Select<{
|
|
3246
3178
|
native: {
|
|
3247
3179
|
/**
|
|
3248
3180
|
* Defines how far your touch can start away from the link
|
|
@@ -3317,7 +3249,7 @@ declare type BaseButtonCommonProps = {
|
|
|
3317
3249
|
variant?: 'primary' | 'secondary' | 'tertiary';
|
|
3318
3250
|
contrast?: 'low' | 'high';
|
|
3319
3251
|
intent?: 'positive' | 'negative' | 'notice' | 'information' | 'neutral';
|
|
3320
|
-
} & TestID & StyledPropsBlade & BladeCommonEvents$1;
|
|
3252
|
+
} & TestID & StyledPropsBlade$1 & BladeCommonEvents$1;
|
|
3321
3253
|
declare type BaseButtonWithoutIconProps = BaseButtonCommonProps & {
|
|
3322
3254
|
icon?: undefined;
|
|
3323
3255
|
children: StringChildrenType;
|
|
@@ -3357,7 +3289,7 @@ declare type ButtonCommonProps = {
|
|
|
3357
3289
|
native: (event: GestureResponderEvent) => void;
|
|
3358
3290
|
web: (event: React__default.MouseEvent<HTMLButtonElement>) => void;
|
|
3359
3291
|
}>;
|
|
3360
|
-
} & TestID & StyledPropsBlade & BladeCommonEvents$1;
|
|
3292
|
+
} & TestID & StyledPropsBlade$1 & BladeCommonEvents$1;
|
|
3361
3293
|
declare type ButtonWithoutIconProps = ButtonCommonProps & {
|
|
3362
3294
|
icon?: undefined;
|
|
3363
3295
|
children: StringChildrenType;
|
|
@@ -3404,7 +3336,7 @@ declare type CounterProps = {
|
|
|
3404
3336
|
* @default 'medium'
|
|
3405
3337
|
*/
|
|
3406
3338
|
size?: 'small' | 'medium' | 'large';
|
|
3407
|
-
} & TestID & StyledPropsBlade;
|
|
3339
|
+
} & TestID & StyledPropsBlade$1;
|
|
3408
3340
|
declare const Counter: ({ value, max, intent, variant, contrast, size, testID, ...styledProps }: CounterProps) => React.ReactElement;
|
|
3409
3341
|
|
|
3410
3342
|
type FeedbackColors$1 = `feedback.text.${DotNotationColorStringToken<
|
|
@@ -3421,6 +3353,8 @@ type BadgeTextColors$1 = `badge.text.${DotNotationColorStringToken<
|
|
|
3421
3353
|
Theme$1['colors']['badge']['text']
|
|
3422
3354
|
>}`;
|
|
3423
3355
|
|
|
3356
|
+
type BrandPrimaryColors$1 = `brand.primary.${keyof Theme$1['colors']['brand']['primary']}`;
|
|
3357
|
+
|
|
3424
3358
|
type As$1 =
|
|
3425
3359
|
| 'code'
|
|
3426
3360
|
| 'h1'
|
|
@@ -3438,7 +3372,13 @@ type As$1 =
|
|
|
3438
3372
|
| 'div';
|
|
3439
3373
|
type BaseTextProps$1 = {
|
|
3440
3374
|
id?: string;
|
|
3441
|
-
color?:
|
|
3375
|
+
color?:
|
|
3376
|
+
| BrandPrimaryColors$1
|
|
3377
|
+
| ActionColors$1
|
|
3378
|
+
| FeedbackColors$1
|
|
3379
|
+
| SurfaceColors$1
|
|
3380
|
+
| FeedbackActionColors$1
|
|
3381
|
+
| BadgeTextColors$1;
|
|
3442
3382
|
fontFamily?: keyof Theme$1['typography']['fonts']['family'];
|
|
3443
3383
|
fontSize?: keyof Theme$1['typography']['fonts']['size'];
|
|
3444
3384
|
fontWeight?: keyof Theme$1['typography']['fonts']['weight'];
|
|
@@ -3461,7 +3401,7 @@ type BaseTextProps$1 = {
|
|
|
3461
3401
|
numberOfLines?: number;
|
|
3462
3402
|
componentName?: 'base-text' | 'text' | 'title' | 'heading' | 'code';
|
|
3463
3403
|
} & TestID &
|
|
3464
|
-
StyledPropsBlade;
|
|
3404
|
+
StyledPropsBlade$1;
|
|
3465
3405
|
|
|
3466
3406
|
/* eslint-disable @typescript-eslint/no-unnecessary-type-assertion */
|
|
3467
3407
|
|
|
@@ -3483,7 +3423,7 @@ type TextCommonProps$1 = {
|
|
|
3483
3423
|
textAlign?: BaseTextProps$1['textAlign'];
|
|
3484
3424
|
textDecorationLine?: BaseTextProps$1['textDecorationLine'];
|
|
3485
3425
|
} & TestID &
|
|
3486
|
-
StyledPropsBlade;
|
|
3426
|
+
StyledPropsBlade$1;
|
|
3487
3427
|
|
|
3488
3428
|
type TextVariant$1 = 'body' | 'caption';
|
|
3489
3429
|
|
|
@@ -3705,7 +3645,7 @@ declare type CheckboxProps = {
|
|
|
3705
3645
|
*
|
|
3706
3646
|
*/
|
|
3707
3647
|
tabIndex?: number;
|
|
3708
|
-
} & TestID & StyledPropsBlade;
|
|
3648
|
+
} & TestID & StyledPropsBlade$1;
|
|
3709
3649
|
declare const Checkbox: React__default.ForwardRefExoticComponent<{
|
|
3710
3650
|
/**
|
|
3711
3651
|
* If `true`, The checkbox will be checked. This also makes the checkbox controlled
|
|
@@ -3784,124 +3724,7 @@ declare const Checkbox: React__default.ForwardRefExoticComponent<{
|
|
|
3784
3724
|
*
|
|
3785
3725
|
*/
|
|
3786
3726
|
tabIndex?: number | undefined;
|
|
3787
|
-
} & TestID & Partial<Omit<MarginProps & Pick<{
|
|
3788
|
-
alignContent?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | {
|
|
3789
|
-
readonly base?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
3790
|
-
readonly xs?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
3791
|
-
readonly s?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
3792
|
-
readonly m?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
3793
|
-
readonly l?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
3794
|
-
readonly xl?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
3795
|
-
} | undefined;
|
|
3796
|
-
alignItems?: react_native.FlexAlignType | {
|
|
3797
|
-
readonly base?: react_native.FlexAlignType | undefined;
|
|
3798
|
-
readonly xs?: react_native.FlexAlignType | undefined;
|
|
3799
|
-
readonly s?: react_native.FlexAlignType | undefined;
|
|
3800
|
-
readonly m?: react_native.FlexAlignType | undefined;
|
|
3801
|
-
readonly l?: react_native.FlexAlignType | undefined;
|
|
3802
|
-
readonly xl?: react_native.FlexAlignType | undefined;
|
|
3803
|
-
} | undefined;
|
|
3804
|
-
alignSelf?: "auto" | react_native.FlexAlignType | {
|
|
3805
|
-
readonly base?: "auto" | react_native.FlexAlignType | undefined;
|
|
3806
|
-
readonly xs?: "auto" | react_native.FlexAlignType | undefined;
|
|
3807
|
-
readonly s?: "auto" | react_native.FlexAlignType | undefined;
|
|
3808
|
-
readonly m?: "auto" | react_native.FlexAlignType | undefined;
|
|
3809
|
-
readonly l?: "auto" | react_native.FlexAlignType | undefined;
|
|
3810
|
-
readonly xl?: "auto" | react_native.FlexAlignType | undefined;
|
|
3811
|
-
} | undefined;
|
|
3812
|
-
columnGap: SpacingValueType | {
|
|
3813
|
-
readonly base?: SpacingValueType | undefined;
|
|
3814
|
-
readonly xs?: SpacingValueType | undefined;
|
|
3815
|
-
readonly s?: SpacingValueType | undefined;
|
|
3816
|
-
readonly m?: SpacingValueType | undefined;
|
|
3817
|
-
readonly l?: SpacingValueType | undefined;
|
|
3818
|
-
readonly xl?: SpacingValueType | undefined;
|
|
3819
|
-
};
|
|
3820
|
-
flexBasis?: string | number | {
|
|
3821
|
-
readonly base?: string | number | undefined;
|
|
3822
|
-
readonly xs?: string | number | undefined;
|
|
3823
|
-
readonly s?: string | number | undefined;
|
|
3824
|
-
readonly m?: string | number | undefined;
|
|
3825
|
-
readonly l?: string | number | undefined;
|
|
3826
|
-
readonly xl?: string | number | undefined;
|
|
3827
|
-
} | undefined;
|
|
3828
|
-
flexDirection?: "row" | "column" | "column-reverse" | "row-reverse" | {
|
|
3829
|
-
readonly base?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
3830
|
-
readonly xs?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
3831
|
-
readonly s?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
3832
|
-
readonly m?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
3833
|
-
readonly l?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
3834
|
-
readonly xl?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
3835
|
-
} | undefined;
|
|
3836
|
-
flexGrow?: number | {
|
|
3837
|
-
readonly base?: number | undefined;
|
|
3838
|
-
readonly xs?: number | undefined;
|
|
3839
|
-
readonly s?: number | undefined;
|
|
3840
|
-
readonly m?: number | undefined;
|
|
3841
|
-
readonly l?: number | undefined;
|
|
3842
|
-
readonly xl?: number | undefined;
|
|
3843
|
-
} | undefined;
|
|
3844
|
-
flexShrink?: number | {
|
|
3845
|
-
readonly base?: number | undefined;
|
|
3846
|
-
readonly xs?: number | undefined;
|
|
3847
|
-
readonly s?: number | undefined;
|
|
3848
|
-
readonly m?: number | undefined;
|
|
3849
|
-
readonly l?: number | undefined;
|
|
3850
|
-
readonly xl?: number | undefined;
|
|
3851
|
-
} | undefined;
|
|
3852
|
-
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | {
|
|
3853
|
-
readonly base?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
3854
|
-
readonly xs?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
3855
|
-
readonly s?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
3856
|
-
readonly m?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
3857
|
-
readonly l?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
3858
|
-
readonly xl?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
3859
|
-
} | undefined;
|
|
3860
|
-
justifyContent?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | {
|
|
3861
|
-
readonly base?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
3862
|
-
readonly xs?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
3863
|
-
readonly s?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
3864
|
-
readonly m?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
3865
|
-
readonly l?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
3866
|
-
readonly xl?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
3867
|
-
} | undefined;
|
|
3868
|
-
justifyItems: never;
|
|
3869
|
-
justifySelf: never;
|
|
3870
|
-
order: never;
|
|
3871
|
-
rowGap: SpacingValueType | {
|
|
3872
|
-
readonly base?: SpacingValueType | undefined;
|
|
3873
|
-
readonly xs?: SpacingValueType | undefined;
|
|
3874
|
-
readonly s?: SpacingValueType | undefined;
|
|
3875
|
-
readonly m?: SpacingValueType | undefined;
|
|
3876
|
-
readonly l?: SpacingValueType | undefined;
|
|
3877
|
-
readonly xl?: SpacingValueType | undefined;
|
|
3878
|
-
};
|
|
3879
|
-
flex: string | number | {
|
|
3880
|
-
readonly base?: string | number | undefined;
|
|
3881
|
-
readonly xs?: string | number | undefined;
|
|
3882
|
-
readonly s?: string | number | undefined;
|
|
3883
|
-
readonly m?: string | number | undefined;
|
|
3884
|
-
readonly l?: string | number | undefined;
|
|
3885
|
-
readonly xl?: string | number | undefined;
|
|
3886
|
-
};
|
|
3887
|
-
gap: SpacingValueType | {
|
|
3888
|
-
readonly base?: SpacingValueType | undefined;
|
|
3889
|
-
readonly xs?: SpacingValueType | undefined;
|
|
3890
|
-
readonly s?: SpacingValueType | undefined;
|
|
3891
|
-
readonly m?: SpacingValueType | undefined;
|
|
3892
|
-
readonly l?: SpacingValueType | undefined;
|
|
3893
|
-
readonly xl?: SpacingValueType | undefined;
|
|
3894
|
-
};
|
|
3895
|
-
placeSelf: never;
|
|
3896
|
-
__brand__?: "platform-native" | {
|
|
3897
|
-
readonly base?: "platform-native" | undefined;
|
|
3898
|
-
readonly xs?: "platform-native" | undefined;
|
|
3899
|
-
readonly s?: "platform-native" | undefined;
|
|
3900
|
-
readonly m?: "platform-native" | undefined;
|
|
3901
|
-
readonly l?: "platform-native" | undefined;
|
|
3902
|
-
readonly xl?: "platform-native" | undefined;
|
|
3903
|
-
} | undefined;
|
|
3904
|
-
}, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
|
|
3727
|
+
} & TestID & Partial<Omit<MarginProps & Pick<FlexboxProps, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
|
|
3905
3728
|
bottom: SpacingValueType | {
|
|
3906
3729
|
readonly base?: SpacingValueType | undefined;
|
|
3907
3730
|
readonly xs?: SpacingValueType | undefined;
|
|
@@ -4062,7 +3885,7 @@ declare type CheckboxGroupProps = {
|
|
|
4062
3885
|
* @default "medium"
|
|
4063
3886
|
*/
|
|
4064
3887
|
size?: 'small' | 'medium';
|
|
4065
|
-
} & TestID & StyledPropsBlade;
|
|
3888
|
+
} & TestID & StyledPropsBlade$1;
|
|
4066
3889
|
declare const CheckboxGroup: ({ children, label, helpText, isDisabled, isRequired, necessityIndicator, labelPosition, validationState, errorText, name, defaultValue, onChange, value, size, testID, ...styledProps }: CheckboxGroupProps) => React__default.ReactElement;
|
|
4067
3890
|
|
|
4068
3891
|
declare type DividerProps = {
|
|
@@ -4113,7 +3936,7 @@ declare type DropdownProps = {
|
|
|
4113
3936
|
selectionType?: 'single' | 'multiple';
|
|
4114
3937
|
onDismiss?: () => void;
|
|
4115
3938
|
children: React.ReactNode[];
|
|
4116
|
-
} & StyledPropsBlade;
|
|
3939
|
+
} & StyledPropsBlade$1;
|
|
4117
3940
|
declare type DropdownOverlayProps = {
|
|
4118
3941
|
children: React.ReactElement[] | React.ReactElement;
|
|
4119
3942
|
} & TestID;
|
|
@@ -4733,7 +4556,7 @@ declare type IconProps = {
|
|
|
4733
4556
|
*/
|
|
4734
4557
|
color: ActionIconColors | SurfaceActionIconColors | FeedbackIconColors | FeedbackActionIconColors | TextIconColors | BadgeIconColors | 'currentColor';
|
|
4735
4558
|
size: IconSize;
|
|
4736
|
-
} & StyledPropsBlade;
|
|
4559
|
+
} & StyledPropsBlade$1;
|
|
4737
4560
|
declare type IconComponent = React.ComponentType<IconProps>;
|
|
4738
4561
|
|
|
4739
4562
|
declare type FormInputLabelProps = {
|
|
@@ -5013,7 +4836,7 @@ declare type BaseInputProps = FormInputLabelProps & FormInputValidationProps & {
|
|
|
5013
4836
|
*/
|
|
5014
4837
|
autoCompleteSuggestionType?: WebAutoCompleteSuggestionType;
|
|
5015
4838
|
};
|
|
5016
|
-
}> & StyledPropsBlade;
|
|
4839
|
+
}> & StyledPropsBlade$1;
|
|
5017
4840
|
|
|
5018
4841
|
declare type Type = Exclude<BaseInputProps['type'], 'password'>;
|
|
5019
4842
|
declare type TextInputProps = Pick<BaseInputProps, 'label' | 'labelPosition' | 'necessityIndicator' | 'validationState' | 'helpText' | 'errorText' | 'successText' | 'placeholder' | 'defaultValue' | 'name' | 'onChange' | 'onFocus' | 'onBlur' | 'value' | 'isDisabled' | 'isRequired' | 'prefix' | 'suffix' | 'maxCharacters' | 'autoFocus' | 'keyboardReturnKeyType' | 'autoCompleteSuggestionType' | 'onSubmit' | 'autoCapitalize' | 'testID'> & {
|
|
@@ -5047,8 +4870,8 @@ declare type TextInputProps = Pick<BaseInputProps, 'label' | 'labelPosition' | '
|
|
|
5047
4870
|
* @default text
|
|
5048
4871
|
*/
|
|
5049
4872
|
type?: Type;
|
|
5050
|
-
} & StyledPropsBlade;
|
|
5051
|
-
declare const TextInput: React__default.ForwardRefExoticComponent<Pick<BaseInputProps, "placeholder" | "name" | "testID" | "prefix" | "value" | "label" | "
|
|
4873
|
+
} & StyledPropsBlade$1;
|
|
4874
|
+
declare const TextInput: React__default.ForwardRefExoticComponent<Pick<BaseInputProps, "placeholder" | "name" | "testID" | "prefix" | "value" | "label" | "onBlur" | "onFocus" | "onChange" | "onSubmit" | "defaultValue" | "autoCapitalize" | "autoFocus" | "isDisabled" | "labelPosition" | "isRequired" | "validationState" | "necessityIndicator" | "helpText" | "errorText" | "successText" | "suffix" | "maxCharacters" | "keyboardReturnKeyType" | "autoCompleteSuggestionType"> & {
|
|
5052
4875
|
/**
|
|
5053
4876
|
* Decides whether to render a clear icon button
|
|
5054
4877
|
*/
|
|
@@ -5079,124 +4902,7 @@ declare const TextInput: React__default.ForwardRefExoticComponent<Pick<BaseInput
|
|
|
5079
4902
|
* @default text
|
|
5080
4903
|
*/
|
|
5081
4904
|
type?: Type;
|
|
5082
|
-
} & Partial<Omit<MarginProps & Pick<{
|
|
5083
|
-
alignContent?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | {
|
|
5084
|
-
readonly base?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
5085
|
-
readonly xs?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
5086
|
-
readonly s?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
5087
|
-
readonly m?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
5088
|
-
readonly l?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
5089
|
-
readonly xl?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
5090
|
-
} | undefined;
|
|
5091
|
-
alignItems?: react_native.FlexAlignType | {
|
|
5092
|
-
readonly base?: react_native.FlexAlignType | undefined;
|
|
5093
|
-
readonly xs?: react_native.FlexAlignType | undefined;
|
|
5094
|
-
readonly s?: react_native.FlexAlignType | undefined;
|
|
5095
|
-
readonly m?: react_native.FlexAlignType | undefined;
|
|
5096
|
-
readonly l?: react_native.FlexAlignType | undefined;
|
|
5097
|
-
readonly xl?: react_native.FlexAlignType | undefined;
|
|
5098
|
-
} | undefined;
|
|
5099
|
-
alignSelf?: "auto" | react_native.FlexAlignType | {
|
|
5100
|
-
readonly base?: "auto" | react_native.FlexAlignType | undefined;
|
|
5101
|
-
readonly xs?: "auto" | react_native.FlexAlignType | undefined;
|
|
5102
|
-
readonly s?: "auto" | react_native.FlexAlignType | undefined;
|
|
5103
|
-
readonly m?: "auto" | react_native.FlexAlignType | undefined;
|
|
5104
|
-
readonly l?: "auto" | react_native.FlexAlignType | undefined;
|
|
5105
|
-
readonly xl?: "auto" | react_native.FlexAlignType | undefined;
|
|
5106
|
-
} | undefined;
|
|
5107
|
-
columnGap: SpacingValueType | {
|
|
5108
|
-
readonly base?: SpacingValueType | undefined;
|
|
5109
|
-
readonly xs?: SpacingValueType | undefined;
|
|
5110
|
-
readonly s?: SpacingValueType | undefined;
|
|
5111
|
-
readonly m?: SpacingValueType | undefined;
|
|
5112
|
-
readonly l?: SpacingValueType | undefined;
|
|
5113
|
-
readonly xl?: SpacingValueType | undefined;
|
|
5114
|
-
};
|
|
5115
|
-
flexBasis?: string | number | {
|
|
5116
|
-
readonly base?: string | number | undefined;
|
|
5117
|
-
readonly xs?: string | number | undefined;
|
|
5118
|
-
readonly s?: string | number | undefined;
|
|
5119
|
-
readonly m?: string | number | undefined;
|
|
5120
|
-
readonly l?: string | number | undefined;
|
|
5121
|
-
readonly xl?: string | number | undefined;
|
|
5122
|
-
} | undefined;
|
|
5123
|
-
flexDirection?: "row" | "column" | "column-reverse" | "row-reverse" | {
|
|
5124
|
-
readonly base?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
5125
|
-
readonly xs?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
5126
|
-
readonly s?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
5127
|
-
readonly m?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
5128
|
-
readonly l?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
5129
|
-
readonly xl?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
5130
|
-
} | undefined;
|
|
5131
|
-
flexGrow?: number | {
|
|
5132
|
-
readonly base?: number | undefined;
|
|
5133
|
-
readonly xs?: number | undefined;
|
|
5134
|
-
readonly s?: number | undefined;
|
|
5135
|
-
readonly m?: number | undefined;
|
|
5136
|
-
readonly l?: number | undefined;
|
|
5137
|
-
readonly xl?: number | undefined;
|
|
5138
|
-
} | undefined;
|
|
5139
|
-
flexShrink?: number | {
|
|
5140
|
-
readonly base?: number | undefined;
|
|
5141
|
-
readonly xs?: number | undefined;
|
|
5142
|
-
readonly s?: number | undefined;
|
|
5143
|
-
readonly m?: number | undefined;
|
|
5144
|
-
readonly l?: number | undefined;
|
|
5145
|
-
readonly xl?: number | undefined;
|
|
5146
|
-
} | undefined;
|
|
5147
|
-
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | {
|
|
5148
|
-
readonly base?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
5149
|
-
readonly xs?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
5150
|
-
readonly s?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
5151
|
-
readonly m?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
5152
|
-
readonly l?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
5153
|
-
readonly xl?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
5154
|
-
} | undefined;
|
|
5155
|
-
justifyContent?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | {
|
|
5156
|
-
readonly base?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
5157
|
-
readonly xs?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
5158
|
-
readonly s?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
5159
|
-
readonly m?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
5160
|
-
readonly l?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
5161
|
-
readonly xl?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
5162
|
-
} | undefined;
|
|
5163
|
-
justifyItems: never;
|
|
5164
|
-
justifySelf: never;
|
|
5165
|
-
order: never;
|
|
5166
|
-
rowGap: SpacingValueType | {
|
|
5167
|
-
readonly base?: SpacingValueType | undefined;
|
|
5168
|
-
readonly xs?: SpacingValueType | undefined;
|
|
5169
|
-
readonly s?: SpacingValueType | undefined;
|
|
5170
|
-
readonly m?: SpacingValueType | undefined;
|
|
5171
|
-
readonly l?: SpacingValueType | undefined;
|
|
5172
|
-
readonly xl?: SpacingValueType | undefined;
|
|
5173
|
-
};
|
|
5174
|
-
flex: string | number | {
|
|
5175
|
-
readonly base?: string | number | undefined;
|
|
5176
|
-
readonly xs?: string | number | undefined;
|
|
5177
|
-
readonly s?: string | number | undefined;
|
|
5178
|
-
readonly m?: string | number | undefined;
|
|
5179
|
-
readonly l?: string | number | undefined;
|
|
5180
|
-
readonly xl?: string | number | undefined;
|
|
5181
|
-
};
|
|
5182
|
-
gap: SpacingValueType | {
|
|
5183
|
-
readonly base?: SpacingValueType | undefined;
|
|
5184
|
-
readonly xs?: SpacingValueType | undefined;
|
|
5185
|
-
readonly s?: SpacingValueType | undefined;
|
|
5186
|
-
readonly m?: SpacingValueType | undefined;
|
|
5187
|
-
readonly l?: SpacingValueType | undefined;
|
|
5188
|
-
readonly xl?: SpacingValueType | undefined;
|
|
5189
|
-
};
|
|
5190
|
-
placeSelf: never;
|
|
5191
|
-
__brand__?: "platform-native" | {
|
|
5192
|
-
readonly base?: "platform-native" | undefined;
|
|
5193
|
-
readonly xs?: "platform-native" | undefined;
|
|
5194
|
-
readonly s?: "platform-native" | undefined;
|
|
5195
|
-
readonly m?: "platform-native" | undefined;
|
|
5196
|
-
readonly l?: "platform-native" | undefined;
|
|
5197
|
-
readonly xl?: "platform-native" | undefined;
|
|
5198
|
-
} | undefined;
|
|
5199
|
-
}, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
|
|
4905
|
+
} & Partial<Omit<MarginProps & Pick<FlexboxProps, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
|
|
5200
4906
|
bottom: SpacingValueType | {
|
|
5201
4907
|
readonly base?: SpacingValueType | undefined;
|
|
5202
4908
|
readonly xs?: SpacingValueType | undefined;
|
|
@@ -5309,125 +5015,8 @@ declare type PasswordInputExtraProps = {
|
|
|
5309
5015
|
*/
|
|
5310
5016
|
autoCompleteSuggestionType?: Extract<BaseInputProps['autoCompleteSuggestionType'], 'none' | 'password' | 'newPassword'>;
|
|
5311
5017
|
};
|
|
5312
|
-
declare type PasswordInputProps = Pick<BaseInputProps, 'label' | 'labelPosition' | 'maxCharacters' | 'validationState' | 'errorText' | 'successText' | 'helpText' | 'isDisabled' | 'defaultValue' | 'placeholder' | 'isRequired' | 'value' | 'onChange' | 'onBlur' | 'onSubmit' | 'onFocus' | 'name' | 'autoFocus' | 'keyboardReturnKeyType' | 'autoCompleteSuggestionType' | 'testID'> & PasswordInputExtraProps & StyledPropsBlade;
|
|
5313
|
-
declare const PasswordInput: React__default.ForwardRefExoticComponent<Pick<BaseInputProps, "placeholder" | "name" | "testID" | "value" | "label" | "
|
|
5314
|
-
alignContent?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | {
|
|
5315
|
-
readonly base?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
5316
|
-
readonly xs?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
5317
|
-
readonly s?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
5318
|
-
readonly m?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
5319
|
-
readonly l?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
5320
|
-
readonly xl?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
5321
|
-
} | undefined;
|
|
5322
|
-
alignItems?: react_native.FlexAlignType | {
|
|
5323
|
-
readonly base?: react_native.FlexAlignType | undefined;
|
|
5324
|
-
readonly xs?: react_native.FlexAlignType | undefined;
|
|
5325
|
-
readonly s?: react_native.FlexAlignType | undefined;
|
|
5326
|
-
readonly m?: react_native.FlexAlignType | undefined;
|
|
5327
|
-
readonly l?: react_native.FlexAlignType | undefined;
|
|
5328
|
-
readonly xl?: react_native.FlexAlignType | undefined;
|
|
5329
|
-
} | undefined;
|
|
5330
|
-
alignSelf?: "auto" | react_native.FlexAlignType | {
|
|
5331
|
-
readonly base?: "auto" | react_native.FlexAlignType | undefined;
|
|
5332
|
-
readonly xs?: "auto" | react_native.FlexAlignType | undefined;
|
|
5333
|
-
readonly s?: "auto" | react_native.FlexAlignType | undefined;
|
|
5334
|
-
readonly m?: "auto" | react_native.FlexAlignType | undefined;
|
|
5335
|
-
readonly l?: "auto" | react_native.FlexAlignType | undefined;
|
|
5336
|
-
readonly xl?: "auto" | react_native.FlexAlignType | undefined;
|
|
5337
|
-
} | undefined;
|
|
5338
|
-
columnGap: SpacingValueType | {
|
|
5339
|
-
readonly base?: SpacingValueType | undefined;
|
|
5340
|
-
readonly xs?: SpacingValueType | undefined;
|
|
5341
|
-
readonly s?: SpacingValueType | undefined;
|
|
5342
|
-
readonly m?: SpacingValueType | undefined;
|
|
5343
|
-
readonly l?: SpacingValueType | undefined;
|
|
5344
|
-
readonly xl?: SpacingValueType | undefined;
|
|
5345
|
-
};
|
|
5346
|
-
flexBasis?: string | number | {
|
|
5347
|
-
readonly base?: string | number | undefined;
|
|
5348
|
-
readonly xs?: string | number | undefined;
|
|
5349
|
-
readonly s?: string | number | undefined;
|
|
5350
|
-
readonly m?: string | number | undefined;
|
|
5351
|
-
readonly l?: string | number | undefined;
|
|
5352
|
-
readonly xl?: string | number | undefined;
|
|
5353
|
-
} | undefined;
|
|
5354
|
-
flexDirection?: "row" | "column" | "column-reverse" | "row-reverse" | {
|
|
5355
|
-
readonly base?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
5356
|
-
readonly xs?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
5357
|
-
readonly s?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
5358
|
-
readonly m?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
5359
|
-
readonly l?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
5360
|
-
readonly xl?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
5361
|
-
} | undefined;
|
|
5362
|
-
flexGrow?: number | {
|
|
5363
|
-
readonly base?: number | undefined;
|
|
5364
|
-
readonly xs?: number | undefined;
|
|
5365
|
-
readonly s?: number | undefined;
|
|
5366
|
-
readonly m?: number | undefined;
|
|
5367
|
-
readonly l?: number | undefined;
|
|
5368
|
-
readonly xl?: number | undefined;
|
|
5369
|
-
} | undefined;
|
|
5370
|
-
flexShrink?: number | {
|
|
5371
|
-
readonly base?: number | undefined;
|
|
5372
|
-
readonly xs?: number | undefined;
|
|
5373
|
-
readonly s?: number | undefined;
|
|
5374
|
-
readonly m?: number | undefined;
|
|
5375
|
-
readonly l?: number | undefined;
|
|
5376
|
-
readonly xl?: number | undefined;
|
|
5377
|
-
} | undefined;
|
|
5378
|
-
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | {
|
|
5379
|
-
readonly base?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
5380
|
-
readonly xs?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
5381
|
-
readonly s?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
5382
|
-
readonly m?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
5383
|
-
readonly l?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
5384
|
-
readonly xl?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
5385
|
-
} | undefined;
|
|
5386
|
-
justifyContent?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | {
|
|
5387
|
-
readonly base?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
5388
|
-
readonly xs?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
5389
|
-
readonly s?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
5390
|
-
readonly m?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
5391
|
-
readonly l?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
5392
|
-
readonly xl?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
5393
|
-
} | undefined;
|
|
5394
|
-
justifyItems: never;
|
|
5395
|
-
justifySelf: never;
|
|
5396
|
-
order: never;
|
|
5397
|
-
rowGap: SpacingValueType | {
|
|
5398
|
-
readonly base?: SpacingValueType | undefined;
|
|
5399
|
-
readonly xs?: SpacingValueType | undefined;
|
|
5400
|
-
readonly s?: SpacingValueType | undefined;
|
|
5401
|
-
readonly m?: SpacingValueType | undefined;
|
|
5402
|
-
readonly l?: SpacingValueType | undefined;
|
|
5403
|
-
readonly xl?: SpacingValueType | undefined;
|
|
5404
|
-
};
|
|
5405
|
-
flex: string | number | {
|
|
5406
|
-
readonly base?: string | number | undefined;
|
|
5407
|
-
readonly xs?: string | number | undefined;
|
|
5408
|
-
readonly s?: string | number | undefined;
|
|
5409
|
-
readonly m?: string | number | undefined;
|
|
5410
|
-
readonly l?: string | number | undefined;
|
|
5411
|
-
readonly xl?: string | number | undefined;
|
|
5412
|
-
};
|
|
5413
|
-
gap: SpacingValueType | {
|
|
5414
|
-
readonly base?: SpacingValueType | undefined;
|
|
5415
|
-
readonly xs?: SpacingValueType | undefined;
|
|
5416
|
-
readonly s?: SpacingValueType | undefined;
|
|
5417
|
-
readonly m?: SpacingValueType | undefined;
|
|
5418
|
-
readonly l?: SpacingValueType | undefined;
|
|
5419
|
-
readonly xl?: SpacingValueType | undefined;
|
|
5420
|
-
};
|
|
5421
|
-
placeSelf: never;
|
|
5422
|
-
__brand__?: "platform-native" | {
|
|
5423
|
-
readonly base?: "platform-native" | undefined;
|
|
5424
|
-
readonly xs?: "platform-native" | undefined;
|
|
5425
|
-
readonly s?: "platform-native" | undefined;
|
|
5426
|
-
readonly m?: "platform-native" | undefined;
|
|
5427
|
-
readonly l?: "platform-native" | undefined;
|
|
5428
|
-
readonly xl?: "platform-native" | undefined;
|
|
5429
|
-
} | undefined;
|
|
5430
|
-
}, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
|
|
5018
|
+
declare type PasswordInputProps = Pick<BaseInputProps, 'label' | 'labelPosition' | 'maxCharacters' | 'validationState' | 'errorText' | 'successText' | 'helpText' | 'isDisabled' | 'defaultValue' | 'placeholder' | 'isRequired' | 'value' | 'onChange' | 'onBlur' | 'onSubmit' | 'onFocus' | 'name' | 'autoFocus' | 'keyboardReturnKeyType' | 'autoCompleteSuggestionType' | 'testID'> & PasswordInputExtraProps & StyledPropsBlade$1;
|
|
5019
|
+
declare const PasswordInput: React__default.ForwardRefExoticComponent<Pick<BaseInputProps, "placeholder" | "name" | "testID" | "value" | "label" | "onBlur" | "onFocus" | "onChange" | "onSubmit" | "defaultValue" | "autoFocus" | "isDisabled" | "labelPosition" | "isRequired" | "validationState" | "helpText" | "errorText" | "successText" | "maxCharacters" | "keyboardReturnKeyType" | "autoCompleteSuggestionType"> & PasswordInputExtraProps & Partial<Omit<MarginProps & Pick<FlexboxProps, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
|
|
5431
5020
|
bottom: SpacingValueType | {
|
|
5432
5021
|
readonly base?: SpacingValueType | undefined;
|
|
5433
5022
|
readonly xs?: SpacingValueType | undefined;
|
|
@@ -5519,8 +5108,8 @@ declare type TextAreaProps = Pick<BaseInputProps, 'label' | 'labelPosition' | 'n
|
|
|
5519
5108
|
* Event handler to handle the onClick event for clear button. Used when `showClearButton` is `true`
|
|
5520
5109
|
*/
|
|
5521
5110
|
onClearButtonClick?: () => void;
|
|
5522
|
-
} & StyledPropsBlade;
|
|
5523
|
-
declare const TextArea: React__default.ForwardRefExoticComponent<Pick<BaseInputProps, "placeholder" | "name" | "testID" | "value" | "label" | "
|
|
5111
|
+
} & StyledPropsBlade$1;
|
|
5112
|
+
declare const TextArea: React__default.ForwardRefExoticComponent<Pick<BaseInputProps, "placeholder" | "name" | "testID" | "value" | "label" | "onBlur" | "onFocus" | "onChange" | "onSubmit" | "defaultValue" | "autoFocus" | "numberOfLines" | "isDisabled" | "labelPosition" | "isRequired" | "validationState" | "necessityIndicator" | "helpText" | "errorText" | "successText" | "maxCharacters"> & {
|
|
5524
5113
|
/**
|
|
5525
5114
|
* Decides whether to render a clear icon button
|
|
5526
5115
|
*/
|
|
@@ -5529,124 +5118,7 @@ declare const TextArea: React__default.ForwardRefExoticComponent<Pick<BaseInputP
|
|
|
5529
5118
|
* Event handler to handle the onClick event for clear button. Used when `showClearButton` is `true`
|
|
5530
5119
|
*/
|
|
5531
5120
|
onClearButtonClick?: (() => void) | undefined;
|
|
5532
|
-
} & Partial<Omit<MarginProps & Pick<{
|
|
5533
|
-
alignContent?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | {
|
|
5534
|
-
readonly base?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
5535
|
-
readonly xs?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
5536
|
-
readonly s?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
5537
|
-
readonly m?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
5538
|
-
readonly l?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
5539
|
-
readonly xl?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
5540
|
-
} | undefined;
|
|
5541
|
-
alignItems?: react_native.FlexAlignType | {
|
|
5542
|
-
readonly base?: react_native.FlexAlignType | undefined;
|
|
5543
|
-
readonly xs?: react_native.FlexAlignType | undefined;
|
|
5544
|
-
readonly s?: react_native.FlexAlignType | undefined;
|
|
5545
|
-
readonly m?: react_native.FlexAlignType | undefined;
|
|
5546
|
-
readonly l?: react_native.FlexAlignType | undefined;
|
|
5547
|
-
readonly xl?: react_native.FlexAlignType | undefined;
|
|
5548
|
-
} | undefined;
|
|
5549
|
-
alignSelf?: "auto" | react_native.FlexAlignType | {
|
|
5550
|
-
readonly base?: "auto" | react_native.FlexAlignType | undefined;
|
|
5551
|
-
readonly xs?: "auto" | react_native.FlexAlignType | undefined;
|
|
5552
|
-
readonly s?: "auto" | react_native.FlexAlignType | undefined;
|
|
5553
|
-
readonly m?: "auto" | react_native.FlexAlignType | undefined;
|
|
5554
|
-
readonly l?: "auto" | react_native.FlexAlignType | undefined;
|
|
5555
|
-
readonly xl?: "auto" | react_native.FlexAlignType | undefined;
|
|
5556
|
-
} | undefined;
|
|
5557
|
-
columnGap: SpacingValueType | {
|
|
5558
|
-
readonly base?: SpacingValueType | undefined;
|
|
5559
|
-
readonly xs?: SpacingValueType | undefined;
|
|
5560
|
-
readonly s?: SpacingValueType | undefined;
|
|
5561
|
-
readonly m?: SpacingValueType | undefined;
|
|
5562
|
-
readonly l?: SpacingValueType | undefined;
|
|
5563
|
-
readonly xl?: SpacingValueType | undefined;
|
|
5564
|
-
};
|
|
5565
|
-
flexBasis?: string | number | {
|
|
5566
|
-
readonly base?: string | number | undefined;
|
|
5567
|
-
readonly xs?: string | number | undefined;
|
|
5568
|
-
readonly s?: string | number | undefined;
|
|
5569
|
-
readonly m?: string | number | undefined;
|
|
5570
|
-
readonly l?: string | number | undefined;
|
|
5571
|
-
readonly xl?: string | number | undefined;
|
|
5572
|
-
} | undefined;
|
|
5573
|
-
flexDirection?: "row" | "column" | "column-reverse" | "row-reverse" | {
|
|
5574
|
-
readonly base?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
5575
|
-
readonly xs?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
5576
|
-
readonly s?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
5577
|
-
readonly m?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
5578
|
-
readonly l?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
5579
|
-
readonly xl?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
5580
|
-
} | undefined;
|
|
5581
|
-
flexGrow?: number | {
|
|
5582
|
-
readonly base?: number | undefined;
|
|
5583
|
-
readonly xs?: number | undefined;
|
|
5584
|
-
readonly s?: number | undefined;
|
|
5585
|
-
readonly m?: number | undefined;
|
|
5586
|
-
readonly l?: number | undefined;
|
|
5587
|
-
readonly xl?: number | undefined;
|
|
5588
|
-
} | undefined;
|
|
5589
|
-
flexShrink?: number | {
|
|
5590
|
-
readonly base?: number | undefined;
|
|
5591
|
-
readonly xs?: number | undefined;
|
|
5592
|
-
readonly s?: number | undefined;
|
|
5593
|
-
readonly m?: number | undefined;
|
|
5594
|
-
readonly l?: number | undefined;
|
|
5595
|
-
readonly xl?: number | undefined;
|
|
5596
|
-
} | undefined;
|
|
5597
|
-
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | {
|
|
5598
|
-
readonly base?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
5599
|
-
readonly xs?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
5600
|
-
readonly s?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
5601
|
-
readonly m?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
5602
|
-
readonly l?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
5603
|
-
readonly xl?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
5604
|
-
} | undefined;
|
|
5605
|
-
justifyContent?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | {
|
|
5606
|
-
readonly base?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
5607
|
-
readonly xs?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
5608
|
-
readonly s?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
5609
|
-
readonly m?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
5610
|
-
readonly l?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
5611
|
-
readonly xl?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
5612
|
-
} | undefined;
|
|
5613
|
-
justifyItems: never;
|
|
5614
|
-
justifySelf: never;
|
|
5615
|
-
order: never;
|
|
5616
|
-
rowGap: SpacingValueType | {
|
|
5617
|
-
readonly base?: SpacingValueType | undefined;
|
|
5618
|
-
readonly xs?: SpacingValueType | undefined;
|
|
5619
|
-
readonly s?: SpacingValueType | undefined;
|
|
5620
|
-
readonly m?: SpacingValueType | undefined;
|
|
5621
|
-
readonly l?: SpacingValueType | undefined;
|
|
5622
|
-
readonly xl?: SpacingValueType | undefined;
|
|
5623
|
-
};
|
|
5624
|
-
flex: string | number | {
|
|
5625
|
-
readonly base?: string | number | undefined;
|
|
5626
|
-
readonly xs?: string | number | undefined;
|
|
5627
|
-
readonly s?: string | number | undefined;
|
|
5628
|
-
readonly m?: string | number | undefined;
|
|
5629
|
-
readonly l?: string | number | undefined;
|
|
5630
|
-
readonly xl?: string | number | undefined;
|
|
5631
|
-
};
|
|
5632
|
-
gap: SpacingValueType | {
|
|
5633
|
-
readonly base?: SpacingValueType | undefined;
|
|
5634
|
-
readonly xs?: SpacingValueType | undefined;
|
|
5635
|
-
readonly s?: SpacingValueType | undefined;
|
|
5636
|
-
readonly m?: SpacingValueType | undefined;
|
|
5637
|
-
readonly l?: SpacingValueType | undefined;
|
|
5638
|
-
readonly xl?: SpacingValueType | undefined;
|
|
5639
|
-
};
|
|
5640
|
-
placeSelf: never;
|
|
5641
|
-
__brand__?: "platform-native" | {
|
|
5642
|
-
readonly base?: "platform-native" | undefined;
|
|
5643
|
-
readonly xs?: "platform-native" | undefined;
|
|
5644
|
-
readonly s?: "platform-native" | undefined;
|
|
5645
|
-
readonly m?: "platform-native" | undefined;
|
|
5646
|
-
readonly l?: "platform-native" | undefined;
|
|
5647
|
-
readonly xl?: "platform-native" | undefined;
|
|
5648
|
-
} | undefined;
|
|
5649
|
-
}, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
|
|
5121
|
+
} & Partial<Omit<MarginProps & Pick<FlexboxProps, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
|
|
5650
5122
|
bottom: SpacingValueType | {
|
|
5651
5123
|
readonly base?: SpacingValueType | undefined;
|
|
5652
5124
|
readonly xs?: SpacingValueType | undefined;
|
|
@@ -5770,7 +5242,7 @@ declare type OTPInputProps = Pick<BaseInputProps, 'label' | 'labelPosition' | 'v
|
|
|
5770
5242
|
* The callback function to be invoked when one of the input fields is blurred
|
|
5771
5243
|
*/
|
|
5772
5244
|
onBlur?: FormInputOnEventWithIndex;
|
|
5773
|
-
} & StyledPropsBlade;
|
|
5245
|
+
} & StyledPropsBlade$1;
|
|
5774
5246
|
/**
|
|
5775
5247
|
* OTPInput component can be used for accepting OTPs sent to users for authentication/verification purposes.
|
|
5776
5248
|
*
|
|
@@ -5831,7 +5303,7 @@ declare type SelectInputProps = Pick<BaseInputProps, 'label' | 'labelPosition' |
|
|
|
5831
5303
|
*
|
|
5832
5304
|
* Checkout {@link https://blade.razorpay.com/?path=/docs/components-dropdown-with-select--with-single-select SelectInput Documentation}.
|
|
5833
5305
|
*/
|
|
5834
|
-
declare const SelectInput: React__default.ForwardRefExoticComponent<Pick<BaseInputProps, "placeholder" | "name" | "testID" | "prefix" | "label" | "
|
|
5306
|
+
declare const SelectInput: React__default.ForwardRefExoticComponent<Pick<BaseInputProps, "placeholder" | "name" | "testID" | "prefix" | "label" | "onBlur" | "onFocus" | "onClick" | "autoFocus" | "isDisabled" | "labelPosition" | "isRequired" | "validationState" | "necessityIndicator" | "helpText" | "errorText" | "successText" | "suffix"> & {
|
|
5835
5307
|
icon?: IconComponent$1 | undefined;
|
|
5836
5308
|
/**
|
|
5837
5309
|
* Controlled value of the Select. Use it in combination of `onChange`.
|
|
@@ -5862,7 +5334,7 @@ declare type IndicatorCommonProps = {
|
|
|
5862
5334
|
* @default medium
|
|
5863
5335
|
*/
|
|
5864
5336
|
size?: 'small' | 'medium' | 'large';
|
|
5865
|
-
} & TestID & StyledPropsBlade;
|
|
5337
|
+
} & TestID & StyledPropsBlade$1;
|
|
5866
5338
|
declare type IndicatorWithoutA11yLabel = {
|
|
5867
5339
|
/**
|
|
5868
5340
|
* A text label to show alongside the indicator dot
|
|
@@ -5923,7 +5395,7 @@ declare type ListCommonProps = {
|
|
|
5923
5395
|
* @default 'medium'
|
|
5924
5396
|
*/
|
|
5925
5397
|
size?: 'small' | 'medium';
|
|
5926
|
-
} & TestID & StyledPropsBlade;
|
|
5398
|
+
} & TestID & StyledPropsBlade$1;
|
|
5927
5399
|
declare type ListWithIconProps = ListCommonProps & {
|
|
5928
5400
|
variant?: 'unordered';
|
|
5929
5401
|
icon?: IconComponent;
|
|
@@ -5943,10 +5415,11 @@ declare type FeedbackActionColors = `feedback.${Feedback}.action.text.${DotNotat
|
|
|
5943
5415
|
declare type SurfaceColors = `surface.text.${DotNotationColorStringToken<Theme$1['colors']['surface']['text']>}`;
|
|
5944
5416
|
declare type ActionColors = `action.text.${DotNotationColorStringToken<Theme$1['colors']['action']['text']>}`;
|
|
5945
5417
|
declare type BadgeTextColors = `badge.text.${DotNotationColorStringToken<Theme$1['colors']['badge']['text']>}`;
|
|
5418
|
+
declare type BrandPrimaryColors = `brand.primary.${keyof Theme$1['colors']['brand']['primary']}`;
|
|
5946
5419
|
declare type As = 'code' | 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'p' | 'span' | 'abbr' | 'q' | 'cite' | 'figcaption' | 'div';
|
|
5947
5420
|
declare type BaseTextProps = {
|
|
5948
5421
|
id?: string;
|
|
5949
|
-
color?: ActionColors | FeedbackColors | SurfaceColors | FeedbackActionColors | BadgeTextColors;
|
|
5422
|
+
color?: BrandPrimaryColors | ActionColors | FeedbackColors | SurfaceColors | FeedbackActionColors | BadgeTextColors;
|
|
5950
5423
|
fontFamily?: keyof Theme$1['typography']['fonts']['family'];
|
|
5951
5424
|
fontSize?: keyof Theme$1['typography']['fonts']['size'];
|
|
5952
5425
|
fontWeight?: keyof Theme$1['typography']['fonts']['weight'];
|
|
@@ -5968,7 +5441,7 @@ declare type BaseTextProps = {
|
|
|
5968
5441
|
*/
|
|
5969
5442
|
numberOfLines?: number;
|
|
5970
5443
|
componentName?: 'base-text' | 'text' | 'title' | 'heading' | 'code';
|
|
5971
|
-
} & TestID & StyledPropsBlade;
|
|
5444
|
+
} & TestID & StyledPropsBlade$1;
|
|
5972
5445
|
|
|
5973
5446
|
declare const validAsValues$2: readonly ["span", "h1", "h2", "h3", "h4", "h5", "h6"];
|
|
5974
5447
|
declare type TitleProps = {
|
|
@@ -5985,7 +5458,7 @@ declare type TitleProps = {
|
|
|
5985
5458
|
children: React.ReactNode;
|
|
5986
5459
|
textAlign?: BaseTextProps['textAlign'];
|
|
5987
5460
|
textDecorationLine?: BaseTextProps['textDecorationLine'];
|
|
5988
|
-
} & TestID & StyledPropsBlade;
|
|
5461
|
+
} & TestID & StyledPropsBlade$1;
|
|
5989
5462
|
declare const Title: ({ as, size, type, contrast, color, children, testID, textAlign, textDecorationLine, ...styledProps }: TitleProps) => ReactElement;
|
|
5990
5463
|
|
|
5991
5464
|
declare type HeadingVariant = 'regular' | 'subheading';
|
|
@@ -6004,7 +5477,7 @@ declare type HeadingCommonProps = {
|
|
|
6004
5477
|
children: React.ReactNode;
|
|
6005
5478
|
textAlign?: BaseTextProps['textAlign'];
|
|
6006
5479
|
textDecorationLine?: BaseTextProps['textDecorationLine'];
|
|
6007
|
-
} & TestID & StyledPropsBlade;
|
|
5480
|
+
} & TestID & StyledPropsBlade$1;
|
|
6008
5481
|
declare type HeadingNormalVariant = HeadingCommonProps & {
|
|
6009
5482
|
variant?: Exclude<HeadingVariant, 'subheading'>;
|
|
6010
5483
|
/**
|
|
@@ -6049,7 +5522,7 @@ declare type TextCommonProps = {
|
|
|
6049
5522
|
color?: BaseTextProps['color'];
|
|
6050
5523
|
textAlign?: BaseTextProps['textAlign'];
|
|
6051
5524
|
textDecorationLine?: BaseTextProps['textDecorationLine'];
|
|
6052
|
-
} & TestID & StyledPropsBlade;
|
|
5525
|
+
} & TestID & StyledPropsBlade$1;
|
|
6053
5526
|
declare type TextVariant = 'body' | 'caption';
|
|
6054
5527
|
declare type TextBodyVariant = TextCommonProps & {
|
|
6055
5528
|
variant?: Extract<TextVariant, 'body'>;
|
|
@@ -6091,7 +5564,7 @@ declare type CodeCommonProps = {
|
|
|
6091
5564
|
weight?: 'regular' | 'bold';
|
|
6092
5565
|
isHighlighted?: boolean;
|
|
6093
5566
|
color?: BaseTextProps['color'];
|
|
6094
|
-
} & TestID & StyledPropsBlade;
|
|
5567
|
+
} & TestID & StyledPropsBlade$1;
|
|
6095
5568
|
declare type CodeHighlightedProps = CodeCommonProps & {
|
|
6096
5569
|
/**
|
|
6097
5570
|
* Adds background color to highlight the text
|
|
@@ -6214,7 +5687,7 @@ declare type ProgressBarCommonProps = {
|
|
|
6214
5687
|
* @default 100
|
|
6215
5688
|
*/
|
|
6216
5689
|
max?: number;
|
|
6217
|
-
} & TestID & StyledPropsBlade;
|
|
5690
|
+
} & TestID & StyledPropsBlade$1;
|
|
6218
5691
|
declare type ProgressBarVariant = 'progress' | 'meter';
|
|
6219
5692
|
declare type ProgressBarProgressProps = ProgressBarCommonProps & {
|
|
6220
5693
|
/**
|
|
@@ -6279,7 +5752,7 @@ declare type RadioProps = {
|
|
|
6279
5752
|
* @default "medium"
|
|
6280
5753
|
*/
|
|
6281
5754
|
size?: 'small' | 'medium';
|
|
6282
|
-
} & TestID & StyledPropsBlade;
|
|
5755
|
+
} & TestID & StyledPropsBlade$1;
|
|
6283
5756
|
declare const Radio: React__default.ForwardRefExoticComponent<{
|
|
6284
5757
|
/**
|
|
6285
5758
|
* Sets the label text of the Radio
|
|
@@ -6306,124 +5779,7 @@ declare const Radio: React__default.ForwardRefExoticComponent<{
|
|
|
6306
5779
|
* @default "medium"
|
|
6307
5780
|
*/
|
|
6308
5781
|
size?: "small" | "medium" | undefined;
|
|
6309
|
-
} & TestID & Partial<Omit<MarginProps & Pick<{
|
|
6310
|
-
alignContent?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | {
|
|
6311
|
-
readonly base?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
6312
|
-
readonly xs?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
6313
|
-
readonly s?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
6314
|
-
readonly m?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
6315
|
-
readonly l?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
6316
|
-
readonly xl?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | undefined;
|
|
6317
|
-
} | undefined;
|
|
6318
|
-
alignItems?: react_native.FlexAlignType | {
|
|
6319
|
-
readonly base?: react_native.FlexAlignType | undefined;
|
|
6320
|
-
readonly xs?: react_native.FlexAlignType | undefined;
|
|
6321
|
-
readonly s?: react_native.FlexAlignType | undefined;
|
|
6322
|
-
readonly m?: react_native.FlexAlignType | undefined;
|
|
6323
|
-
readonly l?: react_native.FlexAlignType | undefined;
|
|
6324
|
-
readonly xl?: react_native.FlexAlignType | undefined;
|
|
6325
|
-
} | undefined;
|
|
6326
|
-
alignSelf?: "auto" | react_native.FlexAlignType | {
|
|
6327
|
-
readonly base?: "auto" | react_native.FlexAlignType | undefined;
|
|
6328
|
-
readonly xs?: "auto" | react_native.FlexAlignType | undefined;
|
|
6329
|
-
readonly s?: "auto" | react_native.FlexAlignType | undefined;
|
|
6330
|
-
readonly m?: "auto" | react_native.FlexAlignType | undefined;
|
|
6331
|
-
readonly l?: "auto" | react_native.FlexAlignType | undefined;
|
|
6332
|
-
readonly xl?: "auto" | react_native.FlexAlignType | undefined;
|
|
6333
|
-
} | undefined;
|
|
6334
|
-
columnGap: SpacingValueType | {
|
|
6335
|
-
readonly base?: SpacingValueType | undefined;
|
|
6336
|
-
readonly xs?: SpacingValueType | undefined;
|
|
6337
|
-
readonly s?: SpacingValueType | undefined;
|
|
6338
|
-
readonly m?: SpacingValueType | undefined;
|
|
6339
|
-
readonly l?: SpacingValueType | undefined;
|
|
6340
|
-
readonly xl?: SpacingValueType | undefined;
|
|
6341
|
-
};
|
|
6342
|
-
flexBasis?: string | number | {
|
|
6343
|
-
readonly base?: string | number | undefined;
|
|
6344
|
-
readonly xs?: string | number | undefined;
|
|
6345
|
-
readonly s?: string | number | undefined;
|
|
6346
|
-
readonly m?: string | number | undefined;
|
|
6347
|
-
readonly l?: string | number | undefined;
|
|
6348
|
-
readonly xl?: string | number | undefined;
|
|
6349
|
-
} | undefined;
|
|
6350
|
-
flexDirection?: "row" | "column" | "column-reverse" | "row-reverse" | {
|
|
6351
|
-
readonly base?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
6352
|
-
readonly xs?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
6353
|
-
readonly s?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
6354
|
-
readonly m?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
6355
|
-
readonly l?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
6356
|
-
readonly xl?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
6357
|
-
} | undefined;
|
|
6358
|
-
flexGrow?: number | {
|
|
6359
|
-
readonly base?: number | undefined;
|
|
6360
|
-
readonly xs?: number | undefined;
|
|
6361
|
-
readonly s?: number | undefined;
|
|
6362
|
-
readonly m?: number | undefined;
|
|
6363
|
-
readonly l?: number | undefined;
|
|
6364
|
-
readonly xl?: number | undefined;
|
|
6365
|
-
} | undefined;
|
|
6366
|
-
flexShrink?: number | {
|
|
6367
|
-
readonly base?: number | undefined;
|
|
6368
|
-
readonly xs?: number | undefined;
|
|
6369
|
-
readonly s?: number | undefined;
|
|
6370
|
-
readonly m?: number | undefined;
|
|
6371
|
-
readonly l?: number | undefined;
|
|
6372
|
-
readonly xl?: number | undefined;
|
|
6373
|
-
} | undefined;
|
|
6374
|
-
flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | {
|
|
6375
|
-
readonly base?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
6376
|
-
readonly xs?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
6377
|
-
readonly s?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
6378
|
-
readonly m?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
6379
|
-
readonly l?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
6380
|
-
readonly xl?: "nowrap" | "wrap" | "wrap-reverse" | undefined;
|
|
6381
|
-
} | undefined;
|
|
6382
|
-
justifyContent?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | {
|
|
6383
|
-
readonly base?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
6384
|
-
readonly xs?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
6385
|
-
readonly s?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
6386
|
-
readonly m?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
6387
|
-
readonly l?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
6388
|
-
readonly xl?: "center" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | undefined;
|
|
6389
|
-
} | undefined;
|
|
6390
|
-
justifyItems: never;
|
|
6391
|
-
justifySelf: never;
|
|
6392
|
-
order: never;
|
|
6393
|
-
rowGap: SpacingValueType | {
|
|
6394
|
-
readonly base?: SpacingValueType | undefined;
|
|
6395
|
-
readonly xs?: SpacingValueType | undefined;
|
|
6396
|
-
readonly s?: SpacingValueType | undefined;
|
|
6397
|
-
readonly m?: SpacingValueType | undefined;
|
|
6398
|
-
readonly l?: SpacingValueType | undefined;
|
|
6399
|
-
readonly xl?: SpacingValueType | undefined;
|
|
6400
|
-
};
|
|
6401
|
-
flex: string | number | {
|
|
6402
|
-
readonly base?: string | number | undefined;
|
|
6403
|
-
readonly xs?: string | number | undefined;
|
|
6404
|
-
readonly s?: string | number | undefined;
|
|
6405
|
-
readonly m?: string | number | undefined;
|
|
6406
|
-
readonly l?: string | number | undefined;
|
|
6407
|
-
readonly xl?: string | number | undefined;
|
|
6408
|
-
};
|
|
6409
|
-
gap: SpacingValueType | {
|
|
6410
|
-
readonly base?: SpacingValueType | undefined;
|
|
6411
|
-
readonly xs?: SpacingValueType | undefined;
|
|
6412
|
-
readonly s?: SpacingValueType | undefined;
|
|
6413
|
-
readonly m?: SpacingValueType | undefined;
|
|
6414
|
-
readonly l?: SpacingValueType | undefined;
|
|
6415
|
-
readonly xl?: SpacingValueType | undefined;
|
|
6416
|
-
};
|
|
6417
|
-
placeSelf: never;
|
|
6418
|
-
__brand__?: "platform-native" | {
|
|
6419
|
-
readonly base?: "platform-native" | undefined;
|
|
6420
|
-
readonly xs?: "platform-native" | undefined;
|
|
6421
|
-
readonly s?: "platform-native" | undefined;
|
|
6422
|
-
readonly m?: "platform-native" | undefined;
|
|
6423
|
-
readonly l?: "platform-native" | undefined;
|
|
6424
|
-
readonly xl?: "platform-native" | undefined;
|
|
6425
|
-
} | undefined;
|
|
6426
|
-
}, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
|
|
5782
|
+
} & TestID & Partial<Omit<MarginProps & Pick<FlexboxProps, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
|
|
6427
5783
|
bottom: SpacingValueType | {
|
|
6428
5784
|
readonly base?: SpacingValueType | undefined;
|
|
6429
5785
|
readonly xs?: SpacingValueType | undefined;
|
|
@@ -6584,7 +5940,7 @@ declare type RadioGroupProps = {
|
|
|
6584
5940
|
* @default "medium"
|
|
6585
5941
|
*/
|
|
6586
5942
|
size?: 'small' | 'medium';
|
|
6587
|
-
} & TestID & StyledPropsBlade;
|
|
5943
|
+
} & TestID & StyledPropsBlade$1;
|
|
6588
5944
|
declare const RadioGroup: ({ children, label, helpText, isDisabled, isRequired, necessityIndicator, labelPosition, validationState, errorText, name, defaultValue, onChange, value, size, testID, ...styledProps }: RadioGroupProps) => React__default.ReactElement;
|
|
6589
5945
|
|
|
6590
5946
|
declare type BaseSpinnerProps = {
|
|
@@ -6617,7 +5973,7 @@ declare type BaseSpinnerProps = {
|
|
|
6617
5973
|
*
|
|
6618
5974
|
*/
|
|
6619
5975
|
accessibilityLabel: string;
|
|
6620
|
-
} & TestID & StyledPropsBlade;
|
|
5976
|
+
} & TestID & StyledPropsBlade$1;
|
|
6621
5977
|
|
|
6622
5978
|
declare type SpinnerProps = Omit<BaseSpinnerProps, 'intent'>;
|
|
6623
5979
|
declare const Spinner: ({ label, labelPosition, accessibilityLabel, contrast, size, testID, ...styledProps }: SpinnerProps) => React.ReactElement;
|
|
@@ -6687,6 +6043,13 @@ declare type SwitchProps = {
|
|
|
6687
6043
|
|
|
6688
6044
|
declare const Switch: React__default.ForwardRefExoticComponent<SwitchProps & React__default.RefAttributes<BladeElementRef>>;
|
|
6689
6045
|
|
|
6046
|
+
declare type SkeletonProps = StyledPropsBlade & Pick<BaseBoxProps, 'width' | 'maxWidth' | 'minWidth' | 'height' | 'maxHeight' | 'minHeight' | 'borderRadius'> & Partial<FlexboxProps> & {
|
|
6047
|
+
contrast?: 'low' | 'high';
|
|
6048
|
+
testID?: string;
|
|
6049
|
+
};
|
|
6050
|
+
|
|
6051
|
+
declare const Skeleton: ({ contrast, width, maxWidth, minWidth, height, maxHeight, minHeight, borderRadius, flexWrap, flexDirection, flexGrow, flexShrink, flexBasis, alignItems, alignContent, alignSelf, justifyItems, justifyContent, justifySelf, placeSelf, order, testID, ...props }: SkeletonProps) => React.ReactElement;
|
|
6052
|
+
|
|
6690
6053
|
declare type VisuallyHiddenProps = {
|
|
6691
6054
|
children: React.ReactNode;
|
|
6692
6055
|
} & TestID;
|
|
@@ -6742,7 +6105,7 @@ declare type AmountProps = {
|
|
|
6742
6105
|
* @default 'INR'
|
|
6743
6106
|
* */
|
|
6744
6107
|
currency?: Currency;
|
|
6745
|
-
} & TestID & StyledPropsBlade;
|
|
6108
|
+
} & TestID & StyledPropsBlade$1;
|
|
6746
6109
|
declare const Amount: ({ value, suffix, size, isAffixSubtle, intent, prefix, testID, currency, ...styledProps }: AmountProps) => ReactElement;
|
|
6747
6110
|
|
|
6748
6111
|
declare type SnapPoints = [number, number, number];
|
|
@@ -6836,7 +6199,7 @@ declare type AccordionProps = {
|
|
|
6836
6199
|
* Accepts `AccordionItem` child nodes
|
|
6837
6200
|
*/
|
|
6838
6201
|
children: ReactElement | ReactElement[];
|
|
6839
|
-
} & TestID & StyledPropsBlade;
|
|
6202
|
+
} & TestID & StyledPropsBlade$1;
|
|
6840
6203
|
declare const Accordion: ({ defaultExpandedIndex, expandedIndex, onExpandChange, showNumberPrefix, children, testID, ...styledProps }: AccordionProps) => ReactElement;
|
|
6841
6204
|
|
|
6842
6205
|
declare type AccordionItemProps = {
|
|
@@ -6899,7 +6262,7 @@ declare type CollapsibleProps = {
|
|
|
6899
6262
|
* **Internal**: used to override responsive width restrictions
|
|
6900
6263
|
*/
|
|
6901
6264
|
_shouldApplyWidthRestrictions?: boolean;
|
|
6902
|
-
} & TestID & StyledPropsBlade;
|
|
6265
|
+
} & TestID & StyledPropsBlade$1;
|
|
6903
6266
|
declare const Collapsible: ({ children, direction, defaultIsExpanded, isExpanded, onExpandChange, testID, _shouldApplyWidthRestrictions, ...styledProps }: CollapsibleProps) => ReactElement;
|
|
6904
6267
|
|
|
6905
6268
|
declare type CollapsibleLinkProps = Pick<LinkProps, 'size' | 'isDisabled' | 'testID' | 'accessibilityLabel' | 'children'>;
|
|
@@ -6913,7 +6276,7 @@ declare type CollapsibleBodyProps = {
|
|
|
6913
6276
|
/**
|
|
6914
6277
|
* **Internal**: used for React Native specific workarounds. Collapsible automatically takes care of width, you shouldn't need to configure this
|
|
6915
6278
|
*/
|
|
6916
|
-
_width?: BaseBoxProps['width'];
|
|
6279
|
+
_width?: BaseBoxProps$1['width'];
|
|
6917
6280
|
} & TestID;
|
|
6918
6281
|
declare const CollapsibleBody: ({ children, testID, _width }: CollapsibleBodyProps) => ReactElement;
|
|
6919
6282
|
|
|
@@ -6973,4 +6336,4 @@ declare type BladeCommonEvents = {
|
|
|
6973
6336
|
}>;
|
|
6974
6337
|
};
|
|
6975
6338
|
|
|
6976
|
-
export { Accordion, AccordionItem, AccordionItemProps, AccordionProps, ActionList, ActionListItem, ActionListItemAsset, ActionListItemAssetProps, ActionListItemIcon, ActionListItemProps, ActionListItemText, ActionListProps, ActionListSection, ActionListSectionDivider, ActionListSectionProps, ActivityIcon, AirplayIcon, Alert, AlertCircleIcon, AlertTriangleIcon as AlertOctagonIcon, AlertOnlyIcon, AlertProps, AlertTriangleIcon$1 as AlertTriangleIcon, AlignCenterIcon, AlignJustifyIcon, AlignLeftIcon, AlignRightIcon, Amount, AmountProps, AnchorIcon, AnnouncementIcon, ApertureIcon, AppStoreIcon, ArrowDownIcon, ArrowDownLeftIcon, ArrowDownRightIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, ArrowUpLeftIcon, ArrowUpRightIcon, AtSignIcon, Attachment as AttachmentIcon, AwardIcon, Badge, BadgeProps, BankIcon, BarChartAltIcon, BarChartIcon, BatteryChargingIcon, BatteryIcon, BellIcon, BellOffIcon, BillIcon, BladeCommonEvents, BladeProvider, BladeProviderProps, BluetoothIcon, BoldIcon, BookIcon, BookmarkIcon, BottomSheet, BottomSheetBody, BottomSheetBodyProps, BottomSheetFooter, BottomSheetFooterProps, BottomSheetHeader, BottomSheetHeaderProps, BottomSheetProps, Box, BoxIcon, BoxProps, BoxRefType, BriefcaseIcon, BulkPayoutsIcon, Button, ButtonProps, CalendarIcon, CameraIcon, CameraOffIcon, Card, CardBody, CardFooter, CardFooterAction, CardFooterLeading, CardFooterTrailing, CardHeader, CardHeaderBadge, CardHeaderCounter, CardHeaderIcon, CardHeaderIconButton, CardHeaderLeading, CardHeaderLink, CardHeaderText, CardHeaderTrailing, CardProps, CastIcon, CheckCircleIcon, CheckIcon, CheckSquareIcon, Checkbox, CheckboxGroup, CheckboxGroupProps, CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsDownIcon, ChevronsLeftIcon, ChevronsRightIcon, ChevronsUpIcon, ChromeIcon, CircleIcon, ClipboardIcon, ClockIcon, CloseIcon, CloudDrizzleIcon, CloudIcon, CloudLightningIcon, CloudOffIcon, CloudRainIcon, CloudSnowIcon, Code, CodeProps, CodepenIcon, CoinsIcon, Collapsible, CollapsibleBody, CollapsibleBodyProps, CollapsibleButton, CollapsibleButtonProps, CollapsibleLink, CollapsibleLinkProps, CollapsibleProps, CommandIcon, CompassIcon, ComponentIds, CopyIcon, CornerDownLeftIcon, CornerDownRightIcon, CornerLeftDownIcon, CornerLeftUpIcon, CornerRightDownIcon, CornerRightUpIcon, CornerUpLeftIcon, CornerUpRightIcon, Counter, CounterProps, CpuIcon, CreditCardIcon, CropIcon, CrosshairIcon, CustomersIcon, CutIcon, DashboardIcon, DeleteIcon, DiscIcon, Divider, DividerProps, DollarIcon, DollarsIcon, DownloadCloudIcon, DownloadIcon, Dropdown, DropdownButton, DropdownFooter, DropdownHeader, DropdownLink, DropdownOverlay, DropdownOverlayProps, DropdownProps, DropletIcon, EditComposeIcon, EditIcon, EditInlineIcon, ExportIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FacebookIcon, FastForwardIcon, FeatherIcon, FileIcon, FileMinusIcon, FilePlusIcon, FileTextIcon, FilmIcon, FilterIcon, FlagIcon, FolderIcon, FullScreenEnterIcon, FullScreenExitIcon, GithubIcon, GitlabIcon, GlobeIcon, GridIcon, HashIcon, Heading, HeadingProps, HeadphonesIcon, HeartIcon, HelpCircleIcon, HistoryIcon, HomeIcon, IconButton, IconButtonProps, IconComponent, IconProps, IconSize, ImageIcon, InboxIcon, Indicator, IndicatorProps, InfoIcon, InstagramIcon, InvoicesIcon, ItalicIcon, LayersIcon, LayoutIcon, LifeBuoyIcon, Link, LinkButtonVariantProps, LinkIcon, LinkProps, List, ListIcon, ListItem, ListItemCode, ListItemCodeProps, ListItemLink, ListItemLinkProps, ListItemProps, ListProps, LoaderIcon, LockIcon, LogInIcon, LogOutIcon, MailIcon, MailOpenIcon, MapIcon, MapPinIcon, MaximizeIcon, MenuDotsIcon, MenuIcon, MessageCircleIcon, MessageSquareIcon, MicIcon, MicOffIcon, MinimizeIcon, MinusCircleIcon, MinusIcon, MinusSquareIcon, Modal, ModalBody, ModalBodyProps, ModalFooter, ModalFooterProps, ModalHeader, ModalHeaderProps, ModalProps, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoreVerticalIcon, MoveIcon, MusicIcon, MyAccountIcon, NavigationIcon, OTPInput, OTPInputProps, OctagonIcon, OffersIcon, PackageIcon, PaperclipIcon, PasswordInput, PasswordInputProps, PauseCircleIcon, PauseIcon, PaymentButtonsIcon, PaymentLinksIcon, PaymentPagesIcon, PercentIcon, PhoneCallIcon, PhoneForwardedIcon, PhoneIcon, PhoneIncomingIcon, PhoneMissedIcon, PhoneOffIcon, PhoneOutgoingIcon, PieChartIcon, PlayCircleIcon, PlayIcon, PlusCircleIcon, PlusIcon, PlusSquareIcon, PocketIcon, PowerIcon, PrinterIcon, ProgressBar, ProgressBarProps, ProgressBarVariant, QRCodeIcon, Radio, RadioGroup, RadioGroupProps, RadioIcon, RadioProps, RazorpayIcon, RazorpayXIcon, RefreshIcon, RepeatIcon, ReportsIcon, RewindIcon, RotateClockWiseIcon, RotateCounterClockWiseIcon, RoutesIcon, RupeeIcon, RupeesIcon, SaveIcon, ScissorsIcon, SearchIcon, SelectInput, SelectInputProps, SendIcon, ServerIcon, SettingsIcon, SettlementsIcon, ShareIcon, ShieldIcon, ShoppingCartIcon, ShuffleIcon, SidebarIcon, SkipBackIcon, SkipForwardIcon, SkipNavContent, SkipNavLink, SlackIcon, SlashIcon, SlidersIcon, SmartCollectIcon, SmartphoneIcon, SpeakerIcon, Spinner, SpinnerProps, SquareIcon, StampIcon, StarIcon, StopCircleIcon, SubscriptionsIcon, SunIcon, SunriseIcon, SunsetIcon, Switch, SwitchProps, TabletIcon, TagIcon, TargetIcon, Text, TextArea, TextAreaProps, TextInput, TextInputProps, TextProps, TextVariant, Theme, ThermometerIcon, ThumbsDownIcon, ThumbsUpIcon, Title, TitleProps, ToggleLeftIcon, ToggleRightIcon, Tooltip, TooltipInteractiveWrapper, TooltipProps, TransactionsIcon, TrashIcon, TrendingDownIcon, TrendingUpIcon, TriangleIcon, TvIcon, TwitterIcon, TypeIcon, UmbrellaIcon, UnderlineIcon, UnlockIcon, UploadCloudIcon, UploadIcon, UserCheckIcon, UserIcon, UserMinusIcon, UserPlusIcon, UserXIcon, UsersIcon, VideoIcon, VideoOffIcon, VisuallyHidden, VisuallyHiddenProps, VoicemailIcon, VolumeHighIcon, VolumeIcon, VolumeLowIcon, VolumeMuteIcon, WatchIcon, WifiIcon, WifiOffIcon, WindIcon, XCircleIcon, XSquareIcon, ZapIcon, ZoomInIcon, ZoomOutIcon, announce, clearAnnouncer, destroyAnnouncer, getTextProps, screenReaderStyles, useActionListContext, useTheme };
|
|
6339
|
+
export { Accordion, AccordionItem, AccordionItemProps, AccordionProps, ActionList, ActionListItem, ActionListItemAsset, ActionListItemAssetProps, ActionListItemIcon, ActionListItemProps, ActionListItemText, ActionListProps, ActionListSection, ActionListSectionDivider, ActionListSectionProps, ActivityIcon, AirplayIcon, Alert, AlertCircleIcon, AlertTriangleIcon as AlertOctagonIcon, AlertOnlyIcon, AlertProps, AlertTriangleIcon$1 as AlertTriangleIcon, AlignCenterIcon, AlignJustifyIcon, AlignLeftIcon, AlignRightIcon, Amount, AmountProps, AnchorIcon, AnnouncementIcon, ApertureIcon, AppStoreIcon, ArrowDownIcon, ArrowDownLeftIcon, ArrowDownRightIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, ArrowUpLeftIcon, ArrowUpRightIcon, AtSignIcon, Attachment as AttachmentIcon, AwardIcon, Badge, BadgeProps, BankIcon, BarChartAltIcon, BarChartIcon, BatteryChargingIcon, BatteryIcon, BellIcon, BellOffIcon, BillIcon, BladeCommonEvents, BladeProvider, BladeProviderProps, BluetoothIcon, BoldIcon, BookIcon, BookmarkIcon, BottomSheet, BottomSheetBody, BottomSheetBodyProps, BottomSheetFooter, BottomSheetFooterProps, BottomSheetHeader, BottomSheetHeaderProps, BottomSheetProps, Box, BoxIcon, BoxProps, BoxRefType, BriefcaseIcon, BulkPayoutsIcon, Button, ButtonProps, CalendarIcon, CameraIcon, CameraOffIcon, Card, CardBody, CardFooter, CardFooterAction, CardFooterLeading, CardFooterTrailing, CardHeader, CardHeaderBadge, CardHeaderCounter, CardHeaderIcon, CardHeaderIconButton, CardHeaderLeading, CardHeaderLink, CardHeaderText, CardHeaderTrailing, CardProps, CastIcon, CheckCircleIcon, CheckIcon, CheckSquareIcon, Checkbox, CheckboxGroup, CheckboxGroupProps, CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsDownIcon, ChevronsLeftIcon, ChevronsRightIcon, ChevronsUpIcon, ChromeIcon, CircleIcon, ClipboardIcon, ClockIcon, CloseIcon, CloudDrizzleIcon, CloudIcon, CloudLightningIcon, CloudOffIcon, CloudRainIcon, CloudSnowIcon, Code, CodeProps, CodepenIcon, CoinsIcon, Collapsible, CollapsibleBody, CollapsibleBodyProps, CollapsibleButton, CollapsibleButtonProps, CollapsibleLink, CollapsibleLinkProps, CollapsibleProps, CommandIcon, CompassIcon, ComponentIds, CopyIcon, CornerDownLeftIcon, CornerDownRightIcon, CornerLeftDownIcon, CornerLeftUpIcon, CornerRightDownIcon, CornerRightUpIcon, CornerUpLeftIcon, CornerUpRightIcon, Counter, CounterProps, CpuIcon, CreditCardIcon, CropIcon, CrosshairIcon, CustomersIcon, CutIcon, DashboardIcon, DeleteIcon, DiscIcon, Divider, DividerProps, DollarIcon, DollarsIcon, DownloadCloudIcon, DownloadIcon, Dropdown, DropdownButton, DropdownFooter, DropdownHeader, DropdownLink, DropdownOverlay, DropdownOverlayProps, DropdownProps, DropletIcon, EditComposeIcon, EditIcon, EditInlineIcon, ExportIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FacebookIcon, FastForwardIcon, FeatherIcon, FileIcon, FileMinusIcon, FilePlusIcon, FileTextIcon, FilmIcon, FilterIcon, FlagIcon, FolderIcon, FullScreenEnterIcon, FullScreenExitIcon, GithubIcon, GitlabIcon, GlobeIcon, GridIcon, HashIcon, Heading, HeadingProps, HeadphonesIcon, HeartIcon, HelpCircleIcon, HistoryIcon, HomeIcon, IconButton, IconButtonProps, IconComponent, IconProps, IconSize, ImageIcon, InboxIcon, Indicator, IndicatorProps, InfoIcon, InstagramIcon, InvoicesIcon, ItalicIcon, LayersIcon, LayoutIcon, LifeBuoyIcon, Link, LinkButtonVariantProps, LinkIcon, LinkProps, List, ListIcon, ListItem, ListItemCode, ListItemCodeProps, ListItemLink, ListItemLinkProps, ListItemProps, ListProps, LoaderIcon, LockIcon, LogInIcon, LogOutIcon, MailIcon, MailOpenIcon, MapIcon, MapPinIcon, MaximizeIcon, MenuDotsIcon, MenuIcon, MessageCircleIcon, MessageSquareIcon, MicIcon, MicOffIcon, MinimizeIcon, MinusCircleIcon, MinusIcon, MinusSquareIcon, Modal, ModalBody, ModalBodyProps, ModalFooter, ModalFooterProps, ModalHeader, ModalHeaderProps, ModalProps, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoreVerticalIcon, MoveIcon, MusicIcon, MyAccountIcon, NavigationIcon, OTPInput, OTPInputProps, OctagonIcon, OffersIcon, PackageIcon, PaperclipIcon, PasswordInput, PasswordInputProps, PauseCircleIcon, PauseIcon, PaymentButtonsIcon, PaymentLinksIcon, PaymentPagesIcon, PercentIcon, PhoneCallIcon, PhoneForwardedIcon, PhoneIcon, PhoneIncomingIcon, PhoneMissedIcon, PhoneOffIcon, PhoneOutgoingIcon, PieChartIcon, PlayCircleIcon, PlayIcon, PlusCircleIcon, PlusIcon, PlusSquareIcon, PocketIcon, PowerIcon, PrinterIcon, ProgressBar, ProgressBarProps, ProgressBarVariant, QRCodeIcon, Radio, RadioGroup, RadioGroupProps, RadioIcon, RadioProps, RazorpayIcon, RazorpayXIcon, RefreshIcon, RepeatIcon, ReportsIcon, RewindIcon, RotateClockWiseIcon, RotateCounterClockWiseIcon, RoutesIcon, RupeeIcon, RupeesIcon, SaveIcon, ScissorsIcon, SearchIcon, SelectInput, SelectInputProps, SendIcon, ServerIcon, SettingsIcon, SettlementsIcon, ShareIcon, ShieldIcon, ShoppingCartIcon, ShuffleIcon, SidebarIcon, Skeleton, SkeletonProps, SkipBackIcon, SkipForwardIcon, SkipNavContent, SkipNavLink, SlackIcon, SlashIcon, SlidersIcon, SmartCollectIcon, SmartphoneIcon, SpeakerIcon, Spinner, SpinnerProps, SquareIcon, StampIcon, StarIcon, StopCircleIcon, SubscriptionsIcon, SunIcon, SunriseIcon, SunsetIcon, Switch, SwitchProps, TabletIcon, TagIcon, TargetIcon, Text, TextArea, TextAreaProps, TextInput, TextInputProps, TextProps, TextVariant, Theme, ThermometerIcon, ThumbsDownIcon, ThumbsUpIcon, Title, TitleProps, ToggleLeftIcon, ToggleRightIcon, Tooltip, TooltipInteractiveWrapper, TooltipProps, TransactionsIcon, TrashIcon, TrendingDownIcon, TrendingUpIcon, TriangleIcon, TvIcon, TwitterIcon, TypeIcon, UmbrellaIcon, UnderlineIcon, UnlockIcon, UploadCloudIcon, UploadIcon, UserCheckIcon, UserIcon, UserMinusIcon, UserPlusIcon, UserXIcon, UsersIcon, VideoIcon, VideoOffIcon, VisuallyHidden, VisuallyHiddenProps, VoicemailIcon, VolumeHighIcon, VolumeIcon, VolumeLowIcon, VolumeMuteIcon, WatchIcon, WifiIcon, WifiOffIcon, WindIcon, XCircleIcon, XSquareIcon, ZapIcon, ZoomInIcon, ZoomOutIcon, announce, clearAnnouncer, destroyAnnouncer, getTextProps, screenReaderStyles, useActionListContext, useTheme };
|