@razorpay/blade 12.0.3 → 12.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/lib/native/components/Button/IconButton/IconButton.js +1 -1
- package/build/lib/native/components/Button/IconButton/IconButton.js.map +1 -1
- package/build/lib/native/components/Radio/Radio.js +1 -1
- package/build/lib/native/components/Radio/Radio.js.map +1 -1
- package/build/lib/native/components/Radio/RadioGroup/RadioGroup.js.map +1 -1
- package/build/lib/native/components/Radio/RadioGroup/useRadioGroup.js +1 -1
- package/build/lib/native/components/Radio/RadioGroup/useRadioGroup.js.map +1 -1
- package/build/lib/native/components/Radio/useRadio.js.map +1 -1
- package/build/lib/native/utils/useControllable.js +1 -1
- package/build/lib/native/utils/useControllable.js.map +1 -1
- package/build/lib/web/development/components/BottomSheet/BottomSheet.web.js +17 -1
- package/build/lib/web/development/components/BottomSheet/BottomSheet.web.js.map +1 -1
- package/build/lib/web/development/components/Button/IconButton/IconButton.js +2 -2
- package/build/lib/web/development/components/Button/IconButton/IconButton.js.map +1 -1
- package/build/lib/web/development/components/Button/IconButton/StyledIconButton.web.js +7 -4
- package/build/lib/web/development/components/Button/IconButton/StyledIconButton.web.js.map +1 -1
- package/build/lib/web/development/components/ButtonGroup/ButtonGroup.web.js +7 -17
- package/build/lib/web/development/components/ButtonGroup/ButtonGroup.web.js.map +1 -1
- package/build/lib/web/development/components/Drawer/Drawer.web.js +6 -4
- package/build/lib/web/development/components/Drawer/Drawer.web.js.map +1 -1
- package/build/lib/web/development/components/Radio/Radio.js +3 -2
- package/build/lib/web/development/components/Radio/Radio.js.map +1 -1
- package/build/lib/web/development/components/Radio/RadioGroup/RadioGroup.js.map +1 -1
- package/build/lib/web/development/components/Radio/RadioGroup/useRadioGroup.js +7 -6
- package/build/lib/web/development/components/Radio/RadioGroup/useRadioGroup.js.map +1 -1
- package/build/lib/web/development/components/Radio/useRadio.js.map +1 -1
- package/build/lib/web/development/components/SideNav/SideNavItems/SideNavLink.web.js +14 -7
- package/build/lib/web/development/components/SideNav/SideNavItems/SideNavLink.web.js.map +1 -1
- package/build/lib/web/development/components/Tooltip/Tooltip.web.js +7 -1
- package/build/lib/web/development/components/Tooltip/Tooltip.web.js.map +1 -1
- package/build/lib/web/development/components/Tooltip/componentIds.js +6 -0
- package/build/lib/web/development/components/Tooltip/componentIds.js.map +1 -0
- package/build/lib/web/development/utils/useControllable.js +2 -1
- package/build/lib/web/development/utils/useControllable.js.map +1 -1
- package/build/lib/web/production/components/BottomSheet/BottomSheet.web.js +17 -1
- package/build/lib/web/production/components/BottomSheet/BottomSheet.web.js.map +1 -1
- package/build/lib/web/production/components/Button/IconButton/IconButton.js +2 -2
- package/build/lib/web/production/components/Button/IconButton/IconButton.js.map +1 -1
- package/build/lib/web/production/components/Button/IconButton/StyledIconButton.web.js +7 -4
- package/build/lib/web/production/components/Button/IconButton/StyledIconButton.web.js.map +1 -1
- package/build/lib/web/production/components/ButtonGroup/ButtonGroup.web.js +7 -17
- package/build/lib/web/production/components/ButtonGroup/ButtonGroup.web.js.map +1 -1
- package/build/lib/web/production/components/Drawer/Drawer.web.js +6 -4
- package/build/lib/web/production/components/Drawer/Drawer.web.js.map +1 -1
- package/build/lib/web/production/components/Radio/Radio.js +3 -2
- package/build/lib/web/production/components/Radio/Radio.js.map +1 -1
- package/build/lib/web/production/components/Radio/RadioGroup/RadioGroup.js.map +1 -1
- package/build/lib/web/production/components/Radio/RadioGroup/useRadioGroup.js +7 -6
- package/build/lib/web/production/components/Radio/RadioGroup/useRadioGroup.js.map +1 -1
- package/build/lib/web/production/components/Radio/useRadio.js.map +1 -1
- package/build/lib/web/production/components/SideNav/SideNavItems/SideNavLink.web.js +14 -7
- package/build/lib/web/production/components/SideNav/SideNavItems/SideNavLink.web.js.map +1 -1
- package/build/lib/web/production/components/Tooltip/Tooltip.web.js +7 -1
- package/build/lib/web/production/components/Tooltip/Tooltip.web.js.map +1 -1
- package/build/lib/web/production/components/Tooltip/componentIds.js +6 -0
- package/build/lib/web/production/components/Tooltip/componentIds.js.map +1 -0
- package/build/lib/web/production/utils/useControllable.js +2 -1
- package/build/lib/web/production/utils/useControllable.js.map +1 -1
- package/build/types/components/index.d.ts +1168 -45
- package/build/types/components/index.native.d.ts +345 -4
- package/package.json +1 -1
|
@@ -7736,7 +7736,7 @@ type IconButtonProps = {
|
|
|
7736
7736
|
* Sets tabindex property on button element
|
|
7737
7737
|
*/
|
|
7738
7738
|
_tabIndex?: number;
|
|
7739
|
-
} & DataAnalyticsAttribute & BladeCommonEvents & Platform.Select<{
|
|
7739
|
+
} & DataAnalyticsAttribute & BladeCommonEvents & StyledPropsBlade & Platform.Select<{
|
|
7740
7740
|
web: {
|
|
7741
7741
|
onClick: (event: React__default.MouseEvent<HTMLButtonElement>) => void;
|
|
7742
7742
|
/**
|
|
@@ -7780,7 +7780,563 @@ declare const IconButton: React__default.ForwardRefExoticComponent<{
|
|
|
7780
7780
|
* Sets tabindex property on button element
|
|
7781
7781
|
*/
|
|
7782
7782
|
_tabIndex?: number | undefined;
|
|
7783
|
-
} & DataAnalyticsAttribute & BladeCommonEvents & {
|
|
7783
|
+
} & DataAnalyticsAttribute & BladeCommonEvents & Partial<Omit<MarginProps & Pick<FlexboxProps, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
|
|
7784
|
+
bottom: SpacingValueType | {
|
|
7785
|
+
readonly base?: SpacingValueType | undefined;
|
|
7786
|
+
readonly xs?: SpacingValueType | undefined;
|
|
7787
|
+
readonly s?: SpacingValueType | undefined;
|
|
7788
|
+
readonly m?: SpacingValueType | undefined;
|
|
7789
|
+
readonly l?: SpacingValueType | undefined;
|
|
7790
|
+
readonly xl?: SpacingValueType | undefined;
|
|
7791
|
+
};
|
|
7792
|
+
left: SpacingValueType | {
|
|
7793
|
+
readonly base?: SpacingValueType | undefined;
|
|
7794
|
+
readonly xs?: SpacingValueType | undefined;
|
|
7795
|
+
readonly s?: SpacingValueType | undefined;
|
|
7796
|
+
readonly m?: SpacingValueType | undefined;
|
|
7797
|
+
readonly l?: SpacingValueType | undefined;
|
|
7798
|
+
readonly xl?: SpacingValueType | undefined;
|
|
7799
|
+
};
|
|
7800
|
+
position?: csstype.Property.Position | {
|
|
7801
|
+
readonly base?: csstype.Property.Position | undefined;
|
|
7802
|
+
readonly xs?: csstype.Property.Position | undefined;
|
|
7803
|
+
readonly s?: csstype.Property.Position | undefined;
|
|
7804
|
+
readonly m?: csstype.Property.Position | undefined;
|
|
7805
|
+
readonly l?: csstype.Property.Position | undefined;
|
|
7806
|
+
readonly xl?: csstype.Property.Position | undefined;
|
|
7807
|
+
} | undefined;
|
|
7808
|
+
right: SpacingValueType | {
|
|
7809
|
+
readonly base?: SpacingValueType | undefined;
|
|
7810
|
+
readonly xs?: SpacingValueType | undefined;
|
|
7811
|
+
readonly s?: SpacingValueType | undefined;
|
|
7812
|
+
readonly m?: SpacingValueType | undefined;
|
|
7813
|
+
readonly l?: SpacingValueType | undefined;
|
|
7814
|
+
readonly xl?: SpacingValueType | undefined;
|
|
7815
|
+
};
|
|
7816
|
+
top: SpacingValueType | {
|
|
7817
|
+
readonly base?: SpacingValueType | undefined;
|
|
7818
|
+
readonly xs?: SpacingValueType | undefined;
|
|
7819
|
+
readonly s?: SpacingValueType | undefined;
|
|
7820
|
+
readonly m?: SpacingValueType | undefined;
|
|
7821
|
+
readonly l?: SpacingValueType | undefined;
|
|
7822
|
+
readonly xl?: SpacingValueType | undefined;
|
|
7823
|
+
};
|
|
7824
|
+
zIndex?: csstype.Property.ZIndex | {
|
|
7825
|
+
readonly base?: csstype.Property.ZIndex | undefined;
|
|
7826
|
+
readonly xs?: csstype.Property.ZIndex | undefined;
|
|
7827
|
+
readonly s?: csstype.Property.ZIndex | undefined;
|
|
7828
|
+
readonly m?: csstype.Property.ZIndex | undefined;
|
|
7829
|
+
readonly l?: csstype.Property.ZIndex | undefined;
|
|
7830
|
+
readonly xl?: csstype.Property.ZIndex | undefined;
|
|
7831
|
+
} | undefined;
|
|
7832
|
+
__brand__?: "platform-web" | {
|
|
7833
|
+
readonly base?: "platform-web" | undefined;
|
|
7834
|
+
readonly xs?: "platform-web" | undefined;
|
|
7835
|
+
readonly s?: "platform-web" | undefined;
|
|
7836
|
+
readonly m?: "platform-web" | undefined;
|
|
7837
|
+
readonly l?: "platform-web" | undefined;
|
|
7838
|
+
readonly xl?: "platform-web" | undefined;
|
|
7839
|
+
} | undefined;
|
|
7840
|
+
} & Pick<{
|
|
7841
|
+
gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | {
|
|
7842
|
+
readonly base?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
7843
|
+
readonly xs?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
7844
|
+
readonly s?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
7845
|
+
readonly m?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
7846
|
+
readonly l?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
7847
|
+
readonly xl?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
7848
|
+
} | undefined;
|
|
7849
|
+
gridAutoFlow?: csstype.Property.GridAutoFlow | {
|
|
7850
|
+
readonly base?: csstype.Property.GridAutoFlow | undefined;
|
|
7851
|
+
readonly xs?: csstype.Property.GridAutoFlow | undefined;
|
|
7852
|
+
readonly s?: csstype.Property.GridAutoFlow | undefined;
|
|
7853
|
+
readonly m?: csstype.Property.GridAutoFlow | undefined;
|
|
7854
|
+
readonly l?: csstype.Property.GridAutoFlow | undefined;
|
|
7855
|
+
readonly xl?: csstype.Property.GridAutoFlow | undefined;
|
|
7856
|
+
} | undefined;
|
|
7857
|
+
gridAutoRows?: csstype.Property.GridAutoRows<string | number> | {
|
|
7858
|
+
readonly base?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
7859
|
+
readonly xs?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
7860
|
+
readonly s?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
7861
|
+
readonly m?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
7862
|
+
readonly l?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
7863
|
+
readonly xl?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
7864
|
+
} | undefined;
|
|
7865
|
+
gridColumnEnd?: csstype.Property.GridColumnEnd | {
|
|
7866
|
+
readonly base?: csstype.Property.GridColumnEnd | undefined;
|
|
7867
|
+
readonly xs?: csstype.Property.GridColumnEnd | undefined;
|
|
7868
|
+
readonly s?: csstype.Property.GridColumnEnd | undefined;
|
|
7869
|
+
readonly m?: csstype.Property.GridColumnEnd | undefined;
|
|
7870
|
+
readonly l?: csstype.Property.GridColumnEnd | undefined;
|
|
7871
|
+
readonly xl?: csstype.Property.GridColumnEnd | undefined;
|
|
7872
|
+
} | undefined;
|
|
7873
|
+
gridColumnStart?: csstype.Property.GridColumnStart | {
|
|
7874
|
+
readonly base?: csstype.Property.GridColumnStart | undefined;
|
|
7875
|
+
readonly xs?: csstype.Property.GridColumnStart | undefined;
|
|
7876
|
+
readonly s?: csstype.Property.GridColumnStart | undefined;
|
|
7877
|
+
readonly m?: csstype.Property.GridColumnStart | undefined;
|
|
7878
|
+
readonly l?: csstype.Property.GridColumnStart | undefined;
|
|
7879
|
+
readonly xl?: csstype.Property.GridColumnStart | undefined;
|
|
7880
|
+
} | undefined;
|
|
7881
|
+
gridRowEnd?: csstype.Property.GridRowEnd | {
|
|
7882
|
+
readonly base?: csstype.Property.GridRowEnd | undefined;
|
|
7883
|
+
readonly xs?: csstype.Property.GridRowEnd | undefined;
|
|
7884
|
+
readonly s?: csstype.Property.GridRowEnd | undefined;
|
|
7885
|
+
readonly m?: csstype.Property.GridRowEnd | undefined;
|
|
7886
|
+
readonly l?: csstype.Property.GridRowEnd | undefined;
|
|
7887
|
+
readonly xl?: csstype.Property.GridRowEnd | undefined;
|
|
7888
|
+
} | undefined;
|
|
7889
|
+
gridRowStart?: csstype.Property.GridRowStart | {
|
|
7890
|
+
readonly base?: csstype.Property.GridRowStart | undefined;
|
|
7891
|
+
readonly xs?: csstype.Property.GridRowStart | undefined;
|
|
7892
|
+
readonly s?: csstype.Property.GridRowStart | undefined;
|
|
7893
|
+
readonly m?: csstype.Property.GridRowStart | undefined;
|
|
7894
|
+
readonly l?: csstype.Property.GridRowStart | undefined;
|
|
7895
|
+
readonly xl?: csstype.Property.GridRowStart | undefined;
|
|
7896
|
+
} | undefined;
|
|
7897
|
+
gridTemplateAreas?: csstype.Property.GridTemplateAreas | {
|
|
7898
|
+
readonly base?: csstype.Property.GridTemplateAreas | undefined;
|
|
7899
|
+
readonly xs?: csstype.Property.GridTemplateAreas | undefined;
|
|
7900
|
+
readonly s?: csstype.Property.GridTemplateAreas | undefined;
|
|
7901
|
+
readonly m?: csstype.Property.GridTemplateAreas | undefined;
|
|
7902
|
+
readonly l?: csstype.Property.GridTemplateAreas | undefined;
|
|
7903
|
+
readonly xl?: csstype.Property.GridTemplateAreas | undefined;
|
|
7904
|
+
} | undefined;
|
|
7905
|
+
gridTemplateColumns?: csstype.Property.GridTemplateColumns<string | number> | {
|
|
7906
|
+
readonly base?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
7907
|
+
readonly xs?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
7908
|
+
readonly s?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
7909
|
+
readonly m?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
7910
|
+
readonly l?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
7911
|
+
readonly xl?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
7912
|
+
} | undefined;
|
|
7913
|
+
gridTemplateRows?: csstype.Property.GridTemplateRows<string | number> | {
|
|
7914
|
+
readonly base?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
7915
|
+
readonly xs?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
7916
|
+
readonly s?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
7917
|
+
readonly m?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
7918
|
+
readonly l?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
7919
|
+
readonly xl?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
7920
|
+
} | undefined;
|
|
7921
|
+
grid?: csstype.Property.Grid | {
|
|
7922
|
+
readonly base?: csstype.Property.Grid | undefined;
|
|
7923
|
+
readonly xs?: csstype.Property.Grid | undefined;
|
|
7924
|
+
readonly s?: csstype.Property.Grid | undefined;
|
|
7925
|
+
readonly m?: csstype.Property.Grid | undefined;
|
|
7926
|
+
readonly l?: csstype.Property.Grid | undefined;
|
|
7927
|
+
readonly xl?: csstype.Property.Grid | undefined;
|
|
7928
|
+
} | undefined;
|
|
7929
|
+
gridArea?: csstype.Property.GridArea | {
|
|
7930
|
+
readonly base?: csstype.Property.GridArea | undefined;
|
|
7931
|
+
readonly xs?: csstype.Property.GridArea | undefined;
|
|
7932
|
+
readonly s?: csstype.Property.GridArea | undefined;
|
|
7933
|
+
readonly m?: csstype.Property.GridArea | undefined;
|
|
7934
|
+
readonly l?: csstype.Property.GridArea | undefined;
|
|
7935
|
+
readonly xl?: csstype.Property.GridArea | undefined;
|
|
7936
|
+
} | undefined;
|
|
7937
|
+
gridColumn?: csstype.Property.GridColumn | {
|
|
7938
|
+
readonly base?: csstype.Property.GridColumn | undefined;
|
|
7939
|
+
readonly xs?: csstype.Property.GridColumn | undefined;
|
|
7940
|
+
readonly s?: csstype.Property.GridColumn | undefined;
|
|
7941
|
+
readonly m?: csstype.Property.GridColumn | undefined;
|
|
7942
|
+
readonly l?: csstype.Property.GridColumn | undefined;
|
|
7943
|
+
readonly xl?: csstype.Property.GridColumn | undefined;
|
|
7944
|
+
} | undefined;
|
|
7945
|
+
gridRow?: csstype.Property.GridRow | {
|
|
7946
|
+
readonly base?: csstype.Property.GridRow | undefined;
|
|
7947
|
+
readonly xs?: csstype.Property.GridRow | undefined;
|
|
7948
|
+
readonly s?: csstype.Property.GridRow | undefined;
|
|
7949
|
+
readonly m?: csstype.Property.GridRow | undefined;
|
|
7950
|
+
readonly l?: csstype.Property.GridRow | undefined;
|
|
7951
|
+
readonly xl?: csstype.Property.GridRow | undefined;
|
|
7952
|
+
} | undefined;
|
|
7953
|
+
gridTemplate?: csstype.Property.GridTemplate | {
|
|
7954
|
+
readonly base?: csstype.Property.GridTemplate | undefined;
|
|
7955
|
+
readonly xs?: csstype.Property.GridTemplate | undefined;
|
|
7956
|
+
readonly s?: csstype.Property.GridTemplate | undefined;
|
|
7957
|
+
readonly m?: csstype.Property.GridTemplate | undefined;
|
|
7958
|
+
readonly l?: csstype.Property.GridTemplate | undefined;
|
|
7959
|
+
readonly xl?: csstype.Property.GridTemplate | undefined;
|
|
7960
|
+
} | undefined;
|
|
7961
|
+
__brand__?: "platform-web" | {
|
|
7962
|
+
readonly base?: "platform-web" | undefined;
|
|
7963
|
+
readonly xs?: "platform-web" | undefined;
|
|
7964
|
+
readonly s?: "platform-web" | undefined;
|
|
7965
|
+
readonly m?: "platform-web" | undefined;
|
|
7966
|
+
readonly l?: "platform-web" | undefined;
|
|
7967
|
+
readonly xl?: "platform-web" | undefined;
|
|
7968
|
+
} | undefined;
|
|
7969
|
+
}, "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridArea" | "gridColumn" | "gridRow"> & Pick<{
|
|
7970
|
+
width: SpacingValueType | {
|
|
7971
|
+
readonly base?: SpacingValueType | undefined;
|
|
7972
|
+
readonly xs?: SpacingValueType | undefined;
|
|
7973
|
+
readonly s?: SpacingValueType | undefined;
|
|
7974
|
+
readonly m?: SpacingValueType | undefined;
|
|
7975
|
+
readonly l?: SpacingValueType | undefined;
|
|
7976
|
+
readonly xl?: SpacingValueType | undefined;
|
|
7977
|
+
};
|
|
7978
|
+
display?: csstype.Property.Display | {
|
|
7979
|
+
readonly base?: csstype.Property.Display | undefined;
|
|
7980
|
+
readonly xs?: csstype.Property.Display | undefined;
|
|
7981
|
+
readonly s?: csstype.Property.Display | undefined;
|
|
7982
|
+
readonly m?: csstype.Property.Display | undefined;
|
|
7983
|
+
readonly l?: csstype.Property.Display | undefined;
|
|
7984
|
+
readonly xl?: csstype.Property.Display | undefined;
|
|
7985
|
+
} | undefined;
|
|
7986
|
+
height: SpacingValueType | {
|
|
7987
|
+
readonly base?: SpacingValueType | undefined;
|
|
7988
|
+
readonly xs?: SpacingValueType | undefined;
|
|
7989
|
+
readonly s?: SpacingValueType | undefined;
|
|
7990
|
+
readonly m?: SpacingValueType | undefined;
|
|
7991
|
+
readonly l?: SpacingValueType | undefined;
|
|
7992
|
+
readonly xl?: SpacingValueType | undefined;
|
|
7993
|
+
};
|
|
7994
|
+
maxHeight: SpacingValueType | {
|
|
7995
|
+
readonly base?: SpacingValueType | undefined;
|
|
7996
|
+
readonly xs?: SpacingValueType | undefined;
|
|
7997
|
+
readonly s?: SpacingValueType | undefined;
|
|
7998
|
+
readonly m?: SpacingValueType | undefined;
|
|
7999
|
+
readonly l?: SpacingValueType | undefined;
|
|
8000
|
+
readonly xl?: SpacingValueType | undefined;
|
|
8001
|
+
};
|
|
8002
|
+
maxWidth: SpacingValueType | {
|
|
8003
|
+
readonly base?: SpacingValueType | undefined;
|
|
8004
|
+
readonly xs?: SpacingValueType | undefined;
|
|
8005
|
+
readonly s?: SpacingValueType | undefined;
|
|
8006
|
+
readonly m?: SpacingValueType | undefined;
|
|
8007
|
+
readonly l?: SpacingValueType | undefined;
|
|
8008
|
+
readonly xl?: SpacingValueType | undefined;
|
|
8009
|
+
};
|
|
8010
|
+
minHeight: SpacingValueType | {
|
|
8011
|
+
readonly base?: SpacingValueType | undefined;
|
|
8012
|
+
readonly xs?: SpacingValueType | undefined;
|
|
8013
|
+
readonly s?: SpacingValueType | undefined;
|
|
8014
|
+
readonly m?: SpacingValueType | undefined;
|
|
8015
|
+
readonly l?: SpacingValueType | undefined;
|
|
8016
|
+
readonly xl?: SpacingValueType | undefined;
|
|
8017
|
+
};
|
|
8018
|
+
minWidth: SpacingValueType | {
|
|
8019
|
+
readonly base?: SpacingValueType | undefined;
|
|
8020
|
+
readonly xs?: SpacingValueType | undefined;
|
|
8021
|
+
readonly s?: SpacingValueType | undefined;
|
|
8022
|
+
readonly m?: SpacingValueType | undefined;
|
|
8023
|
+
readonly l?: SpacingValueType | undefined;
|
|
8024
|
+
readonly xl?: SpacingValueType | undefined;
|
|
8025
|
+
};
|
|
8026
|
+
overflowX?: csstype.Property.OverflowX | {
|
|
8027
|
+
readonly base?: csstype.Property.OverflowX | undefined;
|
|
8028
|
+
readonly xs?: csstype.Property.OverflowX | undefined;
|
|
8029
|
+
readonly s?: csstype.Property.OverflowX | undefined;
|
|
8030
|
+
readonly m?: csstype.Property.OverflowX | undefined;
|
|
8031
|
+
readonly l?: csstype.Property.OverflowX | undefined;
|
|
8032
|
+
readonly xl?: csstype.Property.OverflowX | undefined;
|
|
8033
|
+
} | undefined;
|
|
8034
|
+
overflowY?: csstype.Property.OverflowY | {
|
|
8035
|
+
readonly base?: csstype.Property.OverflowY | undefined;
|
|
8036
|
+
readonly xs?: csstype.Property.OverflowY | undefined;
|
|
8037
|
+
readonly s?: csstype.Property.OverflowY | undefined;
|
|
8038
|
+
readonly m?: csstype.Property.OverflowY | undefined;
|
|
8039
|
+
readonly l?: csstype.Property.OverflowY | undefined;
|
|
8040
|
+
readonly xl?: csstype.Property.OverflowY | undefined;
|
|
8041
|
+
} | undefined;
|
|
8042
|
+
textAlign?: csstype.Property.TextAlign | {
|
|
8043
|
+
readonly base?: csstype.Property.TextAlign | undefined;
|
|
8044
|
+
readonly xs?: csstype.Property.TextAlign | undefined;
|
|
8045
|
+
readonly s?: csstype.Property.TextAlign | undefined;
|
|
8046
|
+
readonly m?: csstype.Property.TextAlign | undefined;
|
|
8047
|
+
readonly l?: csstype.Property.TextAlign | undefined;
|
|
8048
|
+
readonly xl?: csstype.Property.TextAlign | undefined;
|
|
8049
|
+
} | undefined;
|
|
8050
|
+
whiteSpace?: csstype.Property.WhiteSpace | {
|
|
8051
|
+
readonly base?: csstype.Property.WhiteSpace | undefined;
|
|
8052
|
+
readonly xs?: csstype.Property.WhiteSpace | undefined;
|
|
8053
|
+
readonly s?: csstype.Property.WhiteSpace | undefined;
|
|
8054
|
+
readonly m?: csstype.Property.WhiteSpace | undefined;
|
|
8055
|
+
readonly l?: csstype.Property.WhiteSpace | undefined;
|
|
8056
|
+
readonly xl?: csstype.Property.WhiteSpace | undefined;
|
|
8057
|
+
} | undefined;
|
|
8058
|
+
overflow?: csstype.Property.Overflow | {
|
|
8059
|
+
readonly base?: csstype.Property.Overflow | undefined;
|
|
8060
|
+
readonly xs?: csstype.Property.Overflow | undefined;
|
|
8061
|
+
readonly s?: csstype.Property.Overflow | undefined;
|
|
8062
|
+
readonly m?: csstype.Property.Overflow | undefined;
|
|
8063
|
+
readonly l?: csstype.Property.Overflow | undefined;
|
|
8064
|
+
readonly xl?: csstype.Property.Overflow | undefined;
|
|
8065
|
+
} | undefined;
|
|
8066
|
+
__brand__?: "platform-web" | {
|
|
8067
|
+
readonly base?: "platform-web" | undefined;
|
|
8068
|
+
readonly xs?: "platform-web" | undefined;
|
|
8069
|
+
readonly s?: "platform-web" | undefined;
|
|
8070
|
+
readonly m?: "platform-web" | undefined;
|
|
8071
|
+
readonly l?: "platform-web" | undefined;
|
|
8072
|
+
readonly xl?: "platform-web" | undefined;
|
|
8073
|
+
} | undefined;
|
|
8074
|
+
}, "display"> & Pick<{
|
|
8075
|
+
elevation?: ElevationLevels | {
|
|
8076
|
+
readonly base?: ElevationLevels | undefined;
|
|
8077
|
+
readonly xs?: ElevationLevels | undefined;
|
|
8078
|
+
readonly s?: ElevationLevels | undefined;
|
|
8079
|
+
readonly m?: ElevationLevels | undefined;
|
|
8080
|
+
readonly l?: ElevationLevels | undefined;
|
|
8081
|
+
readonly xl?: ElevationLevels | undefined;
|
|
8082
|
+
} | undefined;
|
|
8083
|
+
backgroundImage?: csstype.Property.BackgroundImage | {
|
|
8084
|
+
readonly base?: csstype.Property.BackgroundImage | undefined;
|
|
8085
|
+
readonly xs?: csstype.Property.BackgroundImage | undefined;
|
|
8086
|
+
readonly s?: csstype.Property.BackgroundImage | undefined;
|
|
8087
|
+
readonly m?: csstype.Property.BackgroundImage | undefined;
|
|
8088
|
+
readonly l?: csstype.Property.BackgroundImage | undefined;
|
|
8089
|
+
readonly xl?: csstype.Property.BackgroundImage | undefined;
|
|
8090
|
+
} | undefined;
|
|
8091
|
+
backgroundOrigin?: csstype.Property.BackgroundOrigin | {
|
|
8092
|
+
readonly base?: csstype.Property.BackgroundOrigin | undefined;
|
|
8093
|
+
readonly xs?: csstype.Property.BackgroundOrigin | undefined;
|
|
8094
|
+
readonly s?: csstype.Property.BackgroundOrigin | undefined;
|
|
8095
|
+
readonly m?: csstype.Property.BackgroundOrigin | undefined;
|
|
8096
|
+
readonly l?: csstype.Property.BackgroundOrigin | undefined;
|
|
8097
|
+
readonly xl?: csstype.Property.BackgroundOrigin | undefined;
|
|
8098
|
+
} | undefined;
|
|
8099
|
+
backgroundRepeat?: csstype.Property.BackgroundRepeat | {
|
|
8100
|
+
readonly base?: csstype.Property.BackgroundRepeat | undefined;
|
|
8101
|
+
readonly xs?: csstype.Property.BackgroundRepeat | undefined;
|
|
8102
|
+
readonly s?: csstype.Property.BackgroundRepeat | undefined;
|
|
8103
|
+
readonly m?: csstype.Property.BackgroundRepeat | undefined;
|
|
8104
|
+
readonly l?: csstype.Property.BackgroundRepeat | undefined;
|
|
8105
|
+
readonly xl?: csstype.Property.BackgroundRepeat | undefined;
|
|
8106
|
+
} | undefined;
|
|
8107
|
+
backgroundSize?: csstype.Property.BackgroundSize<string | number> | {
|
|
8108
|
+
readonly base?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
8109
|
+
readonly xs?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
8110
|
+
readonly s?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
8111
|
+
readonly m?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
8112
|
+
readonly l?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
8113
|
+
readonly xl?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
8114
|
+
} | undefined;
|
|
8115
|
+
borderBottomColor: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | {
|
|
8116
|
+
readonly base?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8117
|
+
readonly xs?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8118
|
+
readonly s?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8119
|
+
readonly m?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8120
|
+
readonly l?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8121
|
+
readonly xl?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8122
|
+
};
|
|
8123
|
+
borderBottomLeftRadius: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | {
|
|
8124
|
+
readonly base?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8125
|
+
readonly xs?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8126
|
+
readonly s?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8127
|
+
readonly m?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8128
|
+
readonly l?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8129
|
+
readonly xl?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8130
|
+
};
|
|
8131
|
+
borderBottomRightRadius: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | {
|
|
8132
|
+
readonly base?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8133
|
+
readonly xs?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8134
|
+
readonly s?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8135
|
+
readonly m?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8136
|
+
readonly l?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8137
|
+
readonly xl?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8138
|
+
};
|
|
8139
|
+
borderBottomStyle?: csstype.Property.BorderBottomStyle | {
|
|
8140
|
+
readonly base?: csstype.Property.BorderBottomStyle | undefined;
|
|
8141
|
+
readonly xs?: csstype.Property.BorderBottomStyle | undefined;
|
|
8142
|
+
readonly s?: csstype.Property.BorderBottomStyle | undefined;
|
|
8143
|
+
readonly m?: csstype.Property.BorderBottomStyle | undefined;
|
|
8144
|
+
readonly l?: csstype.Property.BorderBottomStyle | undefined;
|
|
8145
|
+
readonly xl?: csstype.Property.BorderBottomStyle | undefined;
|
|
8146
|
+
} | undefined;
|
|
8147
|
+
borderBottomWidth: "none" | "thinner" | "thin" | "thick" | "thicker" | {
|
|
8148
|
+
readonly base?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8149
|
+
readonly xs?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8150
|
+
readonly s?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8151
|
+
readonly m?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8152
|
+
readonly l?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8153
|
+
readonly xl?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8154
|
+
};
|
|
8155
|
+
borderLeftColor: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | {
|
|
8156
|
+
readonly base?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8157
|
+
readonly xs?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8158
|
+
readonly s?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8159
|
+
readonly m?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8160
|
+
readonly l?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8161
|
+
readonly xl?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8162
|
+
};
|
|
8163
|
+
borderLeftStyle?: csstype.Property.BorderLeftStyle | {
|
|
8164
|
+
readonly base?: csstype.Property.BorderLeftStyle | undefined;
|
|
8165
|
+
readonly xs?: csstype.Property.BorderLeftStyle | undefined;
|
|
8166
|
+
readonly s?: csstype.Property.BorderLeftStyle | undefined;
|
|
8167
|
+
readonly m?: csstype.Property.BorderLeftStyle | undefined;
|
|
8168
|
+
readonly l?: csstype.Property.BorderLeftStyle | undefined;
|
|
8169
|
+
readonly xl?: csstype.Property.BorderLeftStyle | undefined;
|
|
8170
|
+
} | undefined;
|
|
8171
|
+
borderLeftWidth: "none" | "thinner" | "thin" | "thick" | "thicker" | {
|
|
8172
|
+
readonly base?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8173
|
+
readonly xs?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8174
|
+
readonly s?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8175
|
+
readonly m?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8176
|
+
readonly l?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8177
|
+
readonly xl?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8178
|
+
};
|
|
8179
|
+
borderRightColor: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | {
|
|
8180
|
+
readonly base?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8181
|
+
readonly xs?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8182
|
+
readonly s?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8183
|
+
readonly m?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8184
|
+
readonly l?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8185
|
+
readonly xl?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8186
|
+
};
|
|
8187
|
+
borderRightStyle?: csstype.Property.BorderRightStyle | {
|
|
8188
|
+
readonly base?: csstype.Property.BorderRightStyle | undefined;
|
|
8189
|
+
readonly xs?: csstype.Property.BorderRightStyle | undefined;
|
|
8190
|
+
readonly s?: csstype.Property.BorderRightStyle | undefined;
|
|
8191
|
+
readonly m?: csstype.Property.BorderRightStyle | undefined;
|
|
8192
|
+
readonly l?: csstype.Property.BorderRightStyle | undefined;
|
|
8193
|
+
readonly xl?: csstype.Property.BorderRightStyle | undefined;
|
|
8194
|
+
} | undefined;
|
|
8195
|
+
borderRightWidth: "none" | "thinner" | "thin" | "thick" | "thicker" | {
|
|
8196
|
+
readonly base?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8197
|
+
readonly xs?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8198
|
+
readonly s?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8199
|
+
readonly m?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8200
|
+
readonly l?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8201
|
+
readonly xl?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8202
|
+
};
|
|
8203
|
+
borderTopColor: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | {
|
|
8204
|
+
readonly base?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8205
|
+
readonly xs?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8206
|
+
readonly s?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8207
|
+
readonly m?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8208
|
+
readonly l?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8209
|
+
readonly xl?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8210
|
+
};
|
|
8211
|
+
borderTopLeftRadius: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | {
|
|
8212
|
+
readonly base?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8213
|
+
readonly xs?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8214
|
+
readonly s?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8215
|
+
readonly m?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8216
|
+
readonly l?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8217
|
+
readonly xl?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8218
|
+
};
|
|
8219
|
+
borderTopRightRadius: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | {
|
|
8220
|
+
readonly base?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8221
|
+
readonly xs?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8222
|
+
readonly s?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8223
|
+
readonly m?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8224
|
+
readonly l?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8225
|
+
readonly xl?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8226
|
+
};
|
|
8227
|
+
borderTopStyle?: csstype.Property.BorderTopStyle | {
|
|
8228
|
+
readonly base?: csstype.Property.BorderTopStyle | undefined;
|
|
8229
|
+
readonly xs?: csstype.Property.BorderTopStyle | undefined;
|
|
8230
|
+
readonly s?: csstype.Property.BorderTopStyle | undefined;
|
|
8231
|
+
readonly m?: csstype.Property.BorderTopStyle | undefined;
|
|
8232
|
+
readonly l?: csstype.Property.BorderTopStyle | undefined;
|
|
8233
|
+
readonly xl?: csstype.Property.BorderTopStyle | undefined;
|
|
8234
|
+
} | undefined;
|
|
8235
|
+
borderTopWidth: "none" | "thinner" | "thin" | "thick" | "thicker" | {
|
|
8236
|
+
readonly base?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8237
|
+
readonly xs?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8238
|
+
readonly s?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8239
|
+
readonly m?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8240
|
+
readonly l?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8241
|
+
readonly xl?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8242
|
+
};
|
|
8243
|
+
clipPath?: csstype.Property.ClipPath | {
|
|
8244
|
+
readonly base?: csstype.Property.ClipPath | undefined;
|
|
8245
|
+
readonly xs?: csstype.Property.ClipPath | undefined;
|
|
8246
|
+
readonly s?: csstype.Property.ClipPath | undefined;
|
|
8247
|
+
readonly m?: csstype.Property.ClipPath | undefined;
|
|
8248
|
+
readonly l?: csstype.Property.ClipPath | undefined;
|
|
8249
|
+
readonly xl?: csstype.Property.ClipPath | undefined;
|
|
8250
|
+
} | undefined;
|
|
8251
|
+
opacity?: csstype.Property.Opacity | {
|
|
8252
|
+
readonly base?: csstype.Property.Opacity | undefined;
|
|
8253
|
+
readonly xs?: csstype.Property.Opacity | undefined;
|
|
8254
|
+
readonly s?: csstype.Property.Opacity | undefined;
|
|
8255
|
+
readonly m?: csstype.Property.Opacity | undefined;
|
|
8256
|
+
readonly l?: csstype.Property.Opacity | undefined;
|
|
8257
|
+
readonly xl?: csstype.Property.Opacity | undefined;
|
|
8258
|
+
} | undefined;
|
|
8259
|
+
pointerEvents?: csstype.Property.PointerEvents | {
|
|
8260
|
+
readonly base?: csstype.Property.PointerEvents | undefined;
|
|
8261
|
+
readonly xs?: csstype.Property.PointerEvents | undefined;
|
|
8262
|
+
readonly s?: csstype.Property.PointerEvents | undefined;
|
|
8263
|
+
readonly m?: csstype.Property.PointerEvents | undefined;
|
|
8264
|
+
readonly l?: csstype.Property.PointerEvents | undefined;
|
|
8265
|
+
readonly xl?: csstype.Property.PointerEvents | undefined;
|
|
8266
|
+
} | undefined;
|
|
8267
|
+
transform?: csstype.Property.Transform | {
|
|
8268
|
+
readonly base?: csstype.Property.Transform | undefined;
|
|
8269
|
+
readonly xs?: csstype.Property.Transform | undefined;
|
|
8270
|
+
readonly s?: csstype.Property.Transform | undefined;
|
|
8271
|
+
readonly m?: csstype.Property.Transform | undefined;
|
|
8272
|
+
readonly l?: csstype.Property.Transform | undefined;
|
|
8273
|
+
readonly xl?: csstype.Property.Transform | undefined;
|
|
8274
|
+
} | undefined;
|
|
8275
|
+
transformOrigin?: csstype.Property.TransformOrigin<string | number> | {
|
|
8276
|
+
readonly base?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
8277
|
+
readonly xs?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
8278
|
+
readonly s?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
8279
|
+
readonly m?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
8280
|
+
readonly l?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
8281
|
+
readonly xl?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
8282
|
+
} | undefined;
|
|
8283
|
+
visibility?: csstype.Property.Visibility | {
|
|
8284
|
+
readonly base?: csstype.Property.Visibility | undefined;
|
|
8285
|
+
readonly xs?: csstype.Property.Visibility | undefined;
|
|
8286
|
+
readonly s?: csstype.Property.Visibility | undefined;
|
|
8287
|
+
readonly m?: csstype.Property.Visibility | undefined;
|
|
8288
|
+
readonly l?: csstype.Property.Visibility | undefined;
|
|
8289
|
+
readonly xl?: csstype.Property.Visibility | undefined;
|
|
8290
|
+
} | undefined;
|
|
8291
|
+
backgroundPosition?: csstype.Property.BackgroundPosition<string | number> | {
|
|
8292
|
+
readonly base?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
8293
|
+
readonly xs?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
8294
|
+
readonly s?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
8295
|
+
readonly m?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
8296
|
+
readonly l?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
8297
|
+
readonly xl?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
8298
|
+
} | undefined;
|
|
8299
|
+
borderColor: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | {
|
|
8300
|
+
readonly base?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8301
|
+
readonly xs?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8302
|
+
readonly s?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8303
|
+
readonly m?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8304
|
+
readonly l?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8305
|
+
readonly xl?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8306
|
+
};
|
|
8307
|
+
borderRadius: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | {
|
|
8308
|
+
readonly base?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8309
|
+
readonly xs?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8310
|
+
readonly s?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8311
|
+
readonly m?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8312
|
+
readonly l?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8313
|
+
readonly xl?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8314
|
+
};
|
|
8315
|
+
borderStyle?: csstype.Property.BorderStyle | {
|
|
8316
|
+
readonly base?: csstype.Property.BorderStyle | undefined;
|
|
8317
|
+
readonly xs?: csstype.Property.BorderStyle | undefined;
|
|
8318
|
+
readonly s?: csstype.Property.BorderStyle | undefined;
|
|
8319
|
+
readonly m?: csstype.Property.BorderStyle | undefined;
|
|
8320
|
+
readonly l?: csstype.Property.BorderStyle | undefined;
|
|
8321
|
+
readonly xl?: csstype.Property.BorderStyle | undefined;
|
|
8322
|
+
} | undefined;
|
|
8323
|
+
borderWidth: "none" | "thinner" | "thin" | "thick" | "thicker" | {
|
|
8324
|
+
readonly base?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8325
|
+
readonly xs?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8326
|
+
readonly s?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8327
|
+
readonly m?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8328
|
+
readonly l?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8329
|
+
readonly xl?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8330
|
+
};
|
|
8331
|
+
__brand__?: "platform-web" | {
|
|
8332
|
+
readonly base?: "platform-web" | undefined;
|
|
8333
|
+
readonly xs?: "platform-web" | undefined;
|
|
8334
|
+
readonly s?: "platform-web" | undefined;
|
|
8335
|
+
readonly m?: "platform-web" | undefined;
|
|
8336
|
+
readonly l?: "platform-web" | undefined;
|
|
8337
|
+
readonly xl?: "platform-web" | undefined;
|
|
8338
|
+
} | undefined;
|
|
8339
|
+
}, "visibility">, "__brand__">> & {
|
|
7784
8340
|
onClick: (event: React__default.MouseEvent<HTMLButtonElement>) => void;
|
|
7785
8341
|
/**
|
|
7786
8342
|
* This changes the hover interaction to highlight icon more
|
|
@@ -7829,7 +8385,7 @@ type ButtonGroupProps = {
|
|
|
7829
8385
|
* Test ID for automation
|
|
7830
8386
|
*/
|
|
7831
8387
|
testID?: string;
|
|
7832
|
-
} & DataAnalyticsAttribute;
|
|
8388
|
+
} & DataAnalyticsAttribute & StyledPropsBlade;
|
|
7833
8389
|
|
|
7834
8390
|
/**
|
|
7835
8391
|
* ### ButtonGroup Component
|
|
@@ -7865,7 +8421,563 @@ declare const ButtonGroup: React__default.ForwardRefExoticComponent<{
|
|
|
7865
8421
|
isFullWidth?: boolean | undefined;
|
|
7866
8422
|
isDisabled?: boolean | undefined;
|
|
7867
8423
|
testID?: string | undefined;
|
|
7868
|
-
} & DataAnalyticsAttribute &
|
|
8424
|
+
} & DataAnalyticsAttribute & Partial<Omit<MarginProps & Pick<FlexboxProps, "alignSelf" | "justifySelf" | "order" | "placeSelf"> & {
|
|
8425
|
+
bottom: SpacingValueType | {
|
|
8426
|
+
readonly base?: SpacingValueType | undefined;
|
|
8427
|
+
readonly xs?: SpacingValueType | undefined;
|
|
8428
|
+
readonly s?: SpacingValueType | undefined;
|
|
8429
|
+
readonly m?: SpacingValueType | undefined;
|
|
8430
|
+
readonly l?: SpacingValueType | undefined;
|
|
8431
|
+
readonly xl?: SpacingValueType | undefined;
|
|
8432
|
+
};
|
|
8433
|
+
left: SpacingValueType | {
|
|
8434
|
+
readonly base?: SpacingValueType | undefined;
|
|
8435
|
+
readonly xs?: SpacingValueType | undefined;
|
|
8436
|
+
readonly s?: SpacingValueType | undefined;
|
|
8437
|
+
readonly m?: SpacingValueType | undefined;
|
|
8438
|
+
readonly l?: SpacingValueType | undefined;
|
|
8439
|
+
readonly xl?: SpacingValueType | undefined;
|
|
8440
|
+
};
|
|
8441
|
+
position?: csstype.Property.Position | {
|
|
8442
|
+
readonly base?: csstype.Property.Position | undefined;
|
|
8443
|
+
readonly xs?: csstype.Property.Position | undefined;
|
|
8444
|
+
readonly s?: csstype.Property.Position | undefined;
|
|
8445
|
+
readonly m?: csstype.Property.Position | undefined;
|
|
8446
|
+
readonly l?: csstype.Property.Position | undefined;
|
|
8447
|
+
readonly xl?: csstype.Property.Position | undefined;
|
|
8448
|
+
} | undefined;
|
|
8449
|
+
right: SpacingValueType | {
|
|
8450
|
+
readonly base?: SpacingValueType | undefined;
|
|
8451
|
+
readonly xs?: SpacingValueType | undefined;
|
|
8452
|
+
readonly s?: SpacingValueType | undefined;
|
|
8453
|
+
readonly m?: SpacingValueType | undefined;
|
|
8454
|
+
readonly l?: SpacingValueType | undefined;
|
|
8455
|
+
readonly xl?: SpacingValueType | undefined;
|
|
8456
|
+
};
|
|
8457
|
+
top: SpacingValueType | {
|
|
8458
|
+
readonly base?: SpacingValueType | undefined;
|
|
8459
|
+
readonly xs?: SpacingValueType | undefined;
|
|
8460
|
+
readonly s?: SpacingValueType | undefined;
|
|
8461
|
+
readonly m?: SpacingValueType | undefined;
|
|
8462
|
+
readonly l?: SpacingValueType | undefined;
|
|
8463
|
+
readonly xl?: SpacingValueType | undefined;
|
|
8464
|
+
};
|
|
8465
|
+
zIndex?: csstype.Property.ZIndex | {
|
|
8466
|
+
readonly base?: csstype.Property.ZIndex | undefined;
|
|
8467
|
+
readonly xs?: csstype.Property.ZIndex | undefined;
|
|
8468
|
+
readonly s?: csstype.Property.ZIndex | undefined;
|
|
8469
|
+
readonly m?: csstype.Property.ZIndex | undefined;
|
|
8470
|
+
readonly l?: csstype.Property.ZIndex | undefined;
|
|
8471
|
+
readonly xl?: csstype.Property.ZIndex | undefined;
|
|
8472
|
+
} | undefined;
|
|
8473
|
+
__brand__?: "platform-web" | {
|
|
8474
|
+
readonly base?: "platform-web" | undefined;
|
|
8475
|
+
readonly xs?: "platform-web" | undefined;
|
|
8476
|
+
readonly s?: "platform-web" | undefined;
|
|
8477
|
+
readonly m?: "platform-web" | undefined;
|
|
8478
|
+
readonly l?: "platform-web" | undefined;
|
|
8479
|
+
readonly xl?: "platform-web" | undefined;
|
|
8480
|
+
} | undefined;
|
|
8481
|
+
} & Pick<{
|
|
8482
|
+
gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | {
|
|
8483
|
+
readonly base?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
8484
|
+
readonly xs?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
8485
|
+
readonly s?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
8486
|
+
readonly m?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
8487
|
+
readonly l?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
8488
|
+
readonly xl?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
8489
|
+
} | undefined;
|
|
8490
|
+
gridAutoFlow?: csstype.Property.GridAutoFlow | {
|
|
8491
|
+
readonly base?: csstype.Property.GridAutoFlow | undefined;
|
|
8492
|
+
readonly xs?: csstype.Property.GridAutoFlow | undefined;
|
|
8493
|
+
readonly s?: csstype.Property.GridAutoFlow | undefined;
|
|
8494
|
+
readonly m?: csstype.Property.GridAutoFlow | undefined;
|
|
8495
|
+
readonly l?: csstype.Property.GridAutoFlow | undefined;
|
|
8496
|
+
readonly xl?: csstype.Property.GridAutoFlow | undefined;
|
|
8497
|
+
} | undefined;
|
|
8498
|
+
gridAutoRows?: csstype.Property.GridAutoRows<string | number> | {
|
|
8499
|
+
readonly base?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
8500
|
+
readonly xs?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
8501
|
+
readonly s?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
8502
|
+
readonly m?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
8503
|
+
readonly l?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
8504
|
+
readonly xl?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
8505
|
+
} | undefined;
|
|
8506
|
+
gridColumnEnd?: csstype.Property.GridColumnEnd | {
|
|
8507
|
+
readonly base?: csstype.Property.GridColumnEnd | undefined;
|
|
8508
|
+
readonly xs?: csstype.Property.GridColumnEnd | undefined;
|
|
8509
|
+
readonly s?: csstype.Property.GridColumnEnd | undefined;
|
|
8510
|
+
readonly m?: csstype.Property.GridColumnEnd | undefined;
|
|
8511
|
+
readonly l?: csstype.Property.GridColumnEnd | undefined;
|
|
8512
|
+
readonly xl?: csstype.Property.GridColumnEnd | undefined;
|
|
8513
|
+
} | undefined;
|
|
8514
|
+
gridColumnStart?: csstype.Property.GridColumnStart | {
|
|
8515
|
+
readonly base?: csstype.Property.GridColumnStart | undefined;
|
|
8516
|
+
readonly xs?: csstype.Property.GridColumnStart | undefined;
|
|
8517
|
+
readonly s?: csstype.Property.GridColumnStart | undefined;
|
|
8518
|
+
readonly m?: csstype.Property.GridColumnStart | undefined;
|
|
8519
|
+
readonly l?: csstype.Property.GridColumnStart | undefined;
|
|
8520
|
+
readonly xl?: csstype.Property.GridColumnStart | undefined;
|
|
8521
|
+
} | undefined;
|
|
8522
|
+
gridRowEnd?: csstype.Property.GridRowEnd | {
|
|
8523
|
+
readonly base?: csstype.Property.GridRowEnd | undefined;
|
|
8524
|
+
readonly xs?: csstype.Property.GridRowEnd | undefined;
|
|
8525
|
+
readonly s?: csstype.Property.GridRowEnd | undefined;
|
|
8526
|
+
readonly m?: csstype.Property.GridRowEnd | undefined;
|
|
8527
|
+
readonly l?: csstype.Property.GridRowEnd | undefined;
|
|
8528
|
+
readonly xl?: csstype.Property.GridRowEnd | undefined;
|
|
8529
|
+
} | undefined;
|
|
8530
|
+
gridRowStart?: csstype.Property.GridRowStart | {
|
|
8531
|
+
readonly base?: csstype.Property.GridRowStart | undefined;
|
|
8532
|
+
readonly xs?: csstype.Property.GridRowStart | undefined;
|
|
8533
|
+
readonly s?: csstype.Property.GridRowStart | undefined;
|
|
8534
|
+
readonly m?: csstype.Property.GridRowStart | undefined;
|
|
8535
|
+
readonly l?: csstype.Property.GridRowStart | undefined;
|
|
8536
|
+
readonly xl?: csstype.Property.GridRowStart | undefined;
|
|
8537
|
+
} | undefined;
|
|
8538
|
+
gridTemplateAreas?: csstype.Property.GridTemplateAreas | {
|
|
8539
|
+
readonly base?: csstype.Property.GridTemplateAreas | undefined;
|
|
8540
|
+
readonly xs?: csstype.Property.GridTemplateAreas | undefined;
|
|
8541
|
+
readonly s?: csstype.Property.GridTemplateAreas | undefined;
|
|
8542
|
+
readonly m?: csstype.Property.GridTemplateAreas | undefined;
|
|
8543
|
+
readonly l?: csstype.Property.GridTemplateAreas | undefined;
|
|
8544
|
+
readonly xl?: csstype.Property.GridTemplateAreas | undefined;
|
|
8545
|
+
} | undefined;
|
|
8546
|
+
gridTemplateColumns?: csstype.Property.GridTemplateColumns<string | number> | {
|
|
8547
|
+
readonly base?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
8548
|
+
readonly xs?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
8549
|
+
readonly s?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
8550
|
+
readonly m?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
8551
|
+
readonly l?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
8552
|
+
readonly xl?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
8553
|
+
} | undefined;
|
|
8554
|
+
gridTemplateRows?: csstype.Property.GridTemplateRows<string | number> | {
|
|
8555
|
+
readonly base?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
8556
|
+
readonly xs?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
8557
|
+
readonly s?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
8558
|
+
readonly m?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
8559
|
+
readonly l?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
8560
|
+
readonly xl?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
8561
|
+
} | undefined;
|
|
8562
|
+
grid?: csstype.Property.Grid | {
|
|
8563
|
+
readonly base?: csstype.Property.Grid | undefined;
|
|
8564
|
+
readonly xs?: csstype.Property.Grid | undefined;
|
|
8565
|
+
readonly s?: csstype.Property.Grid | undefined;
|
|
8566
|
+
readonly m?: csstype.Property.Grid | undefined;
|
|
8567
|
+
readonly l?: csstype.Property.Grid | undefined;
|
|
8568
|
+
readonly xl?: csstype.Property.Grid | undefined;
|
|
8569
|
+
} | undefined;
|
|
8570
|
+
gridArea?: csstype.Property.GridArea | {
|
|
8571
|
+
readonly base?: csstype.Property.GridArea | undefined;
|
|
8572
|
+
readonly xs?: csstype.Property.GridArea | undefined;
|
|
8573
|
+
readonly s?: csstype.Property.GridArea | undefined;
|
|
8574
|
+
readonly m?: csstype.Property.GridArea | undefined;
|
|
8575
|
+
readonly l?: csstype.Property.GridArea | undefined;
|
|
8576
|
+
readonly xl?: csstype.Property.GridArea | undefined;
|
|
8577
|
+
} | undefined;
|
|
8578
|
+
gridColumn?: csstype.Property.GridColumn | {
|
|
8579
|
+
readonly base?: csstype.Property.GridColumn | undefined;
|
|
8580
|
+
readonly xs?: csstype.Property.GridColumn | undefined;
|
|
8581
|
+
readonly s?: csstype.Property.GridColumn | undefined;
|
|
8582
|
+
readonly m?: csstype.Property.GridColumn | undefined;
|
|
8583
|
+
readonly l?: csstype.Property.GridColumn | undefined;
|
|
8584
|
+
readonly xl?: csstype.Property.GridColumn | undefined;
|
|
8585
|
+
} | undefined;
|
|
8586
|
+
gridRow?: csstype.Property.GridRow | {
|
|
8587
|
+
readonly base?: csstype.Property.GridRow | undefined;
|
|
8588
|
+
readonly xs?: csstype.Property.GridRow | undefined;
|
|
8589
|
+
readonly s?: csstype.Property.GridRow | undefined;
|
|
8590
|
+
readonly m?: csstype.Property.GridRow | undefined;
|
|
8591
|
+
readonly l?: csstype.Property.GridRow | undefined;
|
|
8592
|
+
readonly xl?: csstype.Property.GridRow | undefined;
|
|
8593
|
+
} | undefined;
|
|
8594
|
+
gridTemplate?: csstype.Property.GridTemplate | {
|
|
8595
|
+
readonly base?: csstype.Property.GridTemplate | undefined;
|
|
8596
|
+
readonly xs?: csstype.Property.GridTemplate | undefined;
|
|
8597
|
+
readonly s?: csstype.Property.GridTemplate | undefined;
|
|
8598
|
+
readonly m?: csstype.Property.GridTemplate | undefined;
|
|
8599
|
+
readonly l?: csstype.Property.GridTemplate | undefined;
|
|
8600
|
+
readonly xl?: csstype.Property.GridTemplate | undefined;
|
|
8601
|
+
} | undefined;
|
|
8602
|
+
__brand__?: "platform-web" | {
|
|
8603
|
+
readonly base?: "platform-web" | undefined;
|
|
8604
|
+
readonly xs?: "platform-web" | undefined;
|
|
8605
|
+
readonly s?: "platform-web" | undefined;
|
|
8606
|
+
readonly m?: "platform-web" | undefined;
|
|
8607
|
+
readonly l?: "platform-web" | undefined;
|
|
8608
|
+
readonly xl?: "platform-web" | undefined;
|
|
8609
|
+
} | undefined;
|
|
8610
|
+
}, "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridArea" | "gridColumn" | "gridRow"> & Pick<{
|
|
8611
|
+
width: SpacingValueType | {
|
|
8612
|
+
readonly base?: SpacingValueType | undefined;
|
|
8613
|
+
readonly xs?: SpacingValueType | undefined;
|
|
8614
|
+
readonly s?: SpacingValueType | undefined;
|
|
8615
|
+
readonly m?: SpacingValueType | undefined;
|
|
8616
|
+
readonly l?: SpacingValueType | undefined;
|
|
8617
|
+
readonly xl?: SpacingValueType | undefined;
|
|
8618
|
+
};
|
|
8619
|
+
display?: csstype.Property.Display | {
|
|
8620
|
+
readonly base?: csstype.Property.Display | undefined;
|
|
8621
|
+
readonly xs?: csstype.Property.Display | undefined;
|
|
8622
|
+
readonly s?: csstype.Property.Display | undefined;
|
|
8623
|
+
readonly m?: csstype.Property.Display | undefined;
|
|
8624
|
+
readonly l?: csstype.Property.Display | undefined;
|
|
8625
|
+
readonly xl?: csstype.Property.Display | undefined;
|
|
8626
|
+
} | undefined;
|
|
8627
|
+
height: SpacingValueType | {
|
|
8628
|
+
readonly base?: SpacingValueType | undefined;
|
|
8629
|
+
readonly xs?: SpacingValueType | undefined;
|
|
8630
|
+
readonly s?: SpacingValueType | undefined;
|
|
8631
|
+
readonly m?: SpacingValueType | undefined;
|
|
8632
|
+
readonly l?: SpacingValueType | undefined;
|
|
8633
|
+
readonly xl?: SpacingValueType | undefined;
|
|
8634
|
+
};
|
|
8635
|
+
maxHeight: SpacingValueType | {
|
|
8636
|
+
readonly base?: SpacingValueType | undefined;
|
|
8637
|
+
readonly xs?: SpacingValueType | undefined;
|
|
8638
|
+
readonly s?: SpacingValueType | undefined;
|
|
8639
|
+
readonly m?: SpacingValueType | undefined;
|
|
8640
|
+
readonly l?: SpacingValueType | undefined;
|
|
8641
|
+
readonly xl?: SpacingValueType | undefined;
|
|
8642
|
+
};
|
|
8643
|
+
maxWidth: SpacingValueType | {
|
|
8644
|
+
readonly base?: SpacingValueType | undefined;
|
|
8645
|
+
readonly xs?: SpacingValueType | undefined;
|
|
8646
|
+
readonly s?: SpacingValueType | undefined;
|
|
8647
|
+
readonly m?: SpacingValueType | undefined;
|
|
8648
|
+
readonly l?: SpacingValueType | undefined;
|
|
8649
|
+
readonly xl?: SpacingValueType | undefined;
|
|
8650
|
+
};
|
|
8651
|
+
minHeight: SpacingValueType | {
|
|
8652
|
+
readonly base?: SpacingValueType | undefined;
|
|
8653
|
+
readonly xs?: SpacingValueType | undefined;
|
|
8654
|
+
readonly s?: SpacingValueType | undefined;
|
|
8655
|
+
readonly m?: SpacingValueType | undefined;
|
|
8656
|
+
readonly l?: SpacingValueType | undefined;
|
|
8657
|
+
readonly xl?: SpacingValueType | undefined;
|
|
8658
|
+
};
|
|
8659
|
+
minWidth: SpacingValueType | {
|
|
8660
|
+
readonly base?: SpacingValueType | undefined;
|
|
8661
|
+
readonly xs?: SpacingValueType | undefined;
|
|
8662
|
+
readonly s?: SpacingValueType | undefined;
|
|
8663
|
+
readonly m?: SpacingValueType | undefined;
|
|
8664
|
+
readonly l?: SpacingValueType | undefined;
|
|
8665
|
+
readonly xl?: SpacingValueType | undefined;
|
|
8666
|
+
};
|
|
8667
|
+
overflowX?: csstype.Property.OverflowX | {
|
|
8668
|
+
readonly base?: csstype.Property.OverflowX | undefined;
|
|
8669
|
+
readonly xs?: csstype.Property.OverflowX | undefined;
|
|
8670
|
+
readonly s?: csstype.Property.OverflowX | undefined;
|
|
8671
|
+
readonly m?: csstype.Property.OverflowX | undefined;
|
|
8672
|
+
readonly l?: csstype.Property.OverflowX | undefined;
|
|
8673
|
+
readonly xl?: csstype.Property.OverflowX | undefined;
|
|
8674
|
+
} | undefined;
|
|
8675
|
+
overflowY?: csstype.Property.OverflowY | {
|
|
8676
|
+
readonly base?: csstype.Property.OverflowY | undefined;
|
|
8677
|
+
readonly xs?: csstype.Property.OverflowY | undefined;
|
|
8678
|
+
readonly s?: csstype.Property.OverflowY | undefined;
|
|
8679
|
+
readonly m?: csstype.Property.OverflowY | undefined;
|
|
8680
|
+
readonly l?: csstype.Property.OverflowY | undefined;
|
|
8681
|
+
readonly xl?: csstype.Property.OverflowY | undefined;
|
|
8682
|
+
} | undefined;
|
|
8683
|
+
textAlign?: csstype.Property.TextAlign | {
|
|
8684
|
+
readonly base?: csstype.Property.TextAlign | undefined;
|
|
8685
|
+
readonly xs?: csstype.Property.TextAlign | undefined;
|
|
8686
|
+
readonly s?: csstype.Property.TextAlign | undefined;
|
|
8687
|
+
readonly m?: csstype.Property.TextAlign | undefined;
|
|
8688
|
+
readonly l?: csstype.Property.TextAlign | undefined;
|
|
8689
|
+
readonly xl?: csstype.Property.TextAlign | undefined;
|
|
8690
|
+
} | undefined;
|
|
8691
|
+
whiteSpace?: csstype.Property.WhiteSpace | {
|
|
8692
|
+
readonly base?: csstype.Property.WhiteSpace | undefined;
|
|
8693
|
+
readonly xs?: csstype.Property.WhiteSpace | undefined;
|
|
8694
|
+
readonly s?: csstype.Property.WhiteSpace | undefined;
|
|
8695
|
+
readonly m?: csstype.Property.WhiteSpace | undefined;
|
|
8696
|
+
readonly l?: csstype.Property.WhiteSpace | undefined;
|
|
8697
|
+
readonly xl?: csstype.Property.WhiteSpace | undefined;
|
|
8698
|
+
} | undefined;
|
|
8699
|
+
overflow?: csstype.Property.Overflow | {
|
|
8700
|
+
readonly base?: csstype.Property.Overflow | undefined;
|
|
8701
|
+
readonly xs?: csstype.Property.Overflow | undefined;
|
|
8702
|
+
readonly s?: csstype.Property.Overflow | undefined;
|
|
8703
|
+
readonly m?: csstype.Property.Overflow | undefined;
|
|
8704
|
+
readonly l?: csstype.Property.Overflow | undefined;
|
|
8705
|
+
readonly xl?: csstype.Property.Overflow | undefined;
|
|
8706
|
+
} | undefined;
|
|
8707
|
+
__brand__?: "platform-web" | {
|
|
8708
|
+
readonly base?: "platform-web" | undefined;
|
|
8709
|
+
readonly xs?: "platform-web" | undefined;
|
|
8710
|
+
readonly s?: "platform-web" | undefined;
|
|
8711
|
+
readonly m?: "platform-web" | undefined;
|
|
8712
|
+
readonly l?: "platform-web" | undefined;
|
|
8713
|
+
readonly xl?: "platform-web" | undefined;
|
|
8714
|
+
} | undefined;
|
|
8715
|
+
}, "display"> & Pick<{
|
|
8716
|
+
elevation?: ElevationLevels | {
|
|
8717
|
+
readonly base?: ElevationLevels | undefined;
|
|
8718
|
+
readonly xs?: ElevationLevels | undefined;
|
|
8719
|
+
readonly s?: ElevationLevels | undefined;
|
|
8720
|
+
readonly m?: ElevationLevels | undefined;
|
|
8721
|
+
readonly l?: ElevationLevels | undefined;
|
|
8722
|
+
readonly xl?: ElevationLevels | undefined;
|
|
8723
|
+
} | undefined;
|
|
8724
|
+
backgroundImage?: csstype.Property.BackgroundImage | {
|
|
8725
|
+
readonly base?: csstype.Property.BackgroundImage | undefined;
|
|
8726
|
+
readonly xs?: csstype.Property.BackgroundImage | undefined;
|
|
8727
|
+
readonly s?: csstype.Property.BackgroundImage | undefined;
|
|
8728
|
+
readonly m?: csstype.Property.BackgroundImage | undefined;
|
|
8729
|
+
readonly l?: csstype.Property.BackgroundImage | undefined;
|
|
8730
|
+
readonly xl?: csstype.Property.BackgroundImage | undefined;
|
|
8731
|
+
} | undefined;
|
|
8732
|
+
backgroundOrigin?: csstype.Property.BackgroundOrigin | {
|
|
8733
|
+
readonly base?: csstype.Property.BackgroundOrigin | undefined;
|
|
8734
|
+
readonly xs?: csstype.Property.BackgroundOrigin | undefined;
|
|
8735
|
+
readonly s?: csstype.Property.BackgroundOrigin | undefined;
|
|
8736
|
+
readonly m?: csstype.Property.BackgroundOrigin | undefined;
|
|
8737
|
+
readonly l?: csstype.Property.BackgroundOrigin | undefined;
|
|
8738
|
+
readonly xl?: csstype.Property.BackgroundOrigin | undefined;
|
|
8739
|
+
} | undefined;
|
|
8740
|
+
backgroundRepeat?: csstype.Property.BackgroundRepeat | {
|
|
8741
|
+
readonly base?: csstype.Property.BackgroundRepeat | undefined;
|
|
8742
|
+
readonly xs?: csstype.Property.BackgroundRepeat | undefined;
|
|
8743
|
+
readonly s?: csstype.Property.BackgroundRepeat | undefined;
|
|
8744
|
+
readonly m?: csstype.Property.BackgroundRepeat | undefined;
|
|
8745
|
+
readonly l?: csstype.Property.BackgroundRepeat | undefined;
|
|
8746
|
+
readonly xl?: csstype.Property.BackgroundRepeat | undefined;
|
|
8747
|
+
} | undefined;
|
|
8748
|
+
backgroundSize?: csstype.Property.BackgroundSize<string | number> | {
|
|
8749
|
+
readonly base?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
8750
|
+
readonly xs?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
8751
|
+
readonly s?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
8752
|
+
readonly m?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
8753
|
+
readonly l?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
8754
|
+
readonly xl?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
8755
|
+
} | undefined;
|
|
8756
|
+
borderBottomColor: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | {
|
|
8757
|
+
readonly base?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8758
|
+
readonly xs?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8759
|
+
readonly s?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8760
|
+
readonly m?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8761
|
+
readonly l?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8762
|
+
readonly xl?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8763
|
+
};
|
|
8764
|
+
borderBottomLeftRadius: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | {
|
|
8765
|
+
readonly base?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8766
|
+
readonly xs?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8767
|
+
readonly s?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8768
|
+
readonly m?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8769
|
+
readonly l?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8770
|
+
readonly xl?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8771
|
+
};
|
|
8772
|
+
borderBottomRightRadius: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | {
|
|
8773
|
+
readonly base?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8774
|
+
readonly xs?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8775
|
+
readonly s?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8776
|
+
readonly m?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8777
|
+
readonly l?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8778
|
+
readonly xl?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8779
|
+
};
|
|
8780
|
+
borderBottomStyle?: csstype.Property.BorderBottomStyle | {
|
|
8781
|
+
readonly base?: csstype.Property.BorderBottomStyle | undefined;
|
|
8782
|
+
readonly xs?: csstype.Property.BorderBottomStyle | undefined;
|
|
8783
|
+
readonly s?: csstype.Property.BorderBottomStyle | undefined;
|
|
8784
|
+
readonly m?: csstype.Property.BorderBottomStyle | undefined;
|
|
8785
|
+
readonly l?: csstype.Property.BorderBottomStyle | undefined;
|
|
8786
|
+
readonly xl?: csstype.Property.BorderBottomStyle | undefined;
|
|
8787
|
+
} | undefined;
|
|
8788
|
+
borderBottomWidth: "none" | "thinner" | "thin" | "thick" | "thicker" | {
|
|
8789
|
+
readonly base?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8790
|
+
readonly xs?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8791
|
+
readonly s?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8792
|
+
readonly m?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8793
|
+
readonly l?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8794
|
+
readonly xl?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8795
|
+
};
|
|
8796
|
+
borderLeftColor: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | {
|
|
8797
|
+
readonly base?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8798
|
+
readonly xs?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8799
|
+
readonly s?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8800
|
+
readonly m?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8801
|
+
readonly l?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8802
|
+
readonly xl?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8803
|
+
};
|
|
8804
|
+
borderLeftStyle?: csstype.Property.BorderLeftStyle | {
|
|
8805
|
+
readonly base?: csstype.Property.BorderLeftStyle | undefined;
|
|
8806
|
+
readonly xs?: csstype.Property.BorderLeftStyle | undefined;
|
|
8807
|
+
readonly s?: csstype.Property.BorderLeftStyle | undefined;
|
|
8808
|
+
readonly m?: csstype.Property.BorderLeftStyle | undefined;
|
|
8809
|
+
readonly l?: csstype.Property.BorderLeftStyle | undefined;
|
|
8810
|
+
readonly xl?: csstype.Property.BorderLeftStyle | undefined;
|
|
8811
|
+
} | undefined;
|
|
8812
|
+
borderLeftWidth: "none" | "thinner" | "thin" | "thick" | "thicker" | {
|
|
8813
|
+
readonly base?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8814
|
+
readonly xs?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8815
|
+
readonly s?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8816
|
+
readonly m?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8817
|
+
readonly l?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8818
|
+
readonly xl?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8819
|
+
};
|
|
8820
|
+
borderRightColor: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | {
|
|
8821
|
+
readonly base?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8822
|
+
readonly xs?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8823
|
+
readonly s?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8824
|
+
readonly m?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8825
|
+
readonly l?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8826
|
+
readonly xl?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8827
|
+
};
|
|
8828
|
+
borderRightStyle?: csstype.Property.BorderRightStyle | {
|
|
8829
|
+
readonly base?: csstype.Property.BorderRightStyle | undefined;
|
|
8830
|
+
readonly xs?: csstype.Property.BorderRightStyle | undefined;
|
|
8831
|
+
readonly s?: csstype.Property.BorderRightStyle | undefined;
|
|
8832
|
+
readonly m?: csstype.Property.BorderRightStyle | undefined;
|
|
8833
|
+
readonly l?: csstype.Property.BorderRightStyle | undefined;
|
|
8834
|
+
readonly xl?: csstype.Property.BorderRightStyle | undefined;
|
|
8835
|
+
} | undefined;
|
|
8836
|
+
borderRightWidth: "none" | "thinner" | "thin" | "thick" | "thicker" | {
|
|
8837
|
+
readonly base?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8838
|
+
readonly xs?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8839
|
+
readonly s?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8840
|
+
readonly m?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8841
|
+
readonly l?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8842
|
+
readonly xl?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8843
|
+
};
|
|
8844
|
+
borderTopColor: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | {
|
|
8845
|
+
readonly base?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8846
|
+
readonly xs?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8847
|
+
readonly s?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8848
|
+
readonly m?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8849
|
+
readonly l?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8850
|
+
readonly xl?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8851
|
+
};
|
|
8852
|
+
borderTopLeftRadius: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | {
|
|
8853
|
+
readonly base?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8854
|
+
readonly xs?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8855
|
+
readonly s?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8856
|
+
readonly m?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8857
|
+
readonly l?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8858
|
+
readonly xl?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8859
|
+
};
|
|
8860
|
+
borderTopRightRadius: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | {
|
|
8861
|
+
readonly base?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8862
|
+
readonly xs?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8863
|
+
readonly s?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8864
|
+
readonly m?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8865
|
+
readonly l?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8866
|
+
readonly xl?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8867
|
+
};
|
|
8868
|
+
borderTopStyle?: csstype.Property.BorderTopStyle | {
|
|
8869
|
+
readonly base?: csstype.Property.BorderTopStyle | undefined;
|
|
8870
|
+
readonly xs?: csstype.Property.BorderTopStyle | undefined;
|
|
8871
|
+
readonly s?: csstype.Property.BorderTopStyle | undefined;
|
|
8872
|
+
readonly m?: csstype.Property.BorderTopStyle | undefined;
|
|
8873
|
+
readonly l?: csstype.Property.BorderTopStyle | undefined;
|
|
8874
|
+
readonly xl?: csstype.Property.BorderTopStyle | undefined;
|
|
8875
|
+
} | undefined;
|
|
8876
|
+
borderTopWidth: "none" | "thinner" | "thin" | "thick" | "thicker" | {
|
|
8877
|
+
readonly base?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8878
|
+
readonly xs?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8879
|
+
readonly s?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8880
|
+
readonly m?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8881
|
+
readonly l?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8882
|
+
readonly xl?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8883
|
+
};
|
|
8884
|
+
clipPath?: csstype.Property.ClipPath | {
|
|
8885
|
+
readonly base?: csstype.Property.ClipPath | undefined;
|
|
8886
|
+
readonly xs?: csstype.Property.ClipPath | undefined;
|
|
8887
|
+
readonly s?: csstype.Property.ClipPath | undefined;
|
|
8888
|
+
readonly m?: csstype.Property.ClipPath | undefined;
|
|
8889
|
+
readonly l?: csstype.Property.ClipPath | undefined;
|
|
8890
|
+
readonly xl?: csstype.Property.ClipPath | undefined;
|
|
8891
|
+
} | undefined;
|
|
8892
|
+
opacity?: csstype.Property.Opacity | {
|
|
8893
|
+
readonly base?: csstype.Property.Opacity | undefined;
|
|
8894
|
+
readonly xs?: csstype.Property.Opacity | undefined;
|
|
8895
|
+
readonly s?: csstype.Property.Opacity | undefined;
|
|
8896
|
+
readonly m?: csstype.Property.Opacity | undefined;
|
|
8897
|
+
readonly l?: csstype.Property.Opacity | undefined;
|
|
8898
|
+
readonly xl?: csstype.Property.Opacity | undefined;
|
|
8899
|
+
} | undefined;
|
|
8900
|
+
pointerEvents?: csstype.Property.PointerEvents | {
|
|
8901
|
+
readonly base?: csstype.Property.PointerEvents | undefined;
|
|
8902
|
+
readonly xs?: csstype.Property.PointerEvents | undefined;
|
|
8903
|
+
readonly s?: csstype.Property.PointerEvents | undefined;
|
|
8904
|
+
readonly m?: csstype.Property.PointerEvents | undefined;
|
|
8905
|
+
readonly l?: csstype.Property.PointerEvents | undefined;
|
|
8906
|
+
readonly xl?: csstype.Property.PointerEvents | undefined;
|
|
8907
|
+
} | undefined;
|
|
8908
|
+
transform?: csstype.Property.Transform | {
|
|
8909
|
+
readonly base?: csstype.Property.Transform | undefined;
|
|
8910
|
+
readonly xs?: csstype.Property.Transform | undefined;
|
|
8911
|
+
readonly s?: csstype.Property.Transform | undefined;
|
|
8912
|
+
readonly m?: csstype.Property.Transform | undefined;
|
|
8913
|
+
readonly l?: csstype.Property.Transform | undefined;
|
|
8914
|
+
readonly xl?: csstype.Property.Transform | undefined;
|
|
8915
|
+
} | undefined;
|
|
8916
|
+
transformOrigin?: csstype.Property.TransformOrigin<string | number> | {
|
|
8917
|
+
readonly base?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
8918
|
+
readonly xs?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
8919
|
+
readonly s?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
8920
|
+
readonly m?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
8921
|
+
readonly l?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
8922
|
+
readonly xl?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
8923
|
+
} | undefined;
|
|
8924
|
+
visibility?: csstype.Property.Visibility | {
|
|
8925
|
+
readonly base?: csstype.Property.Visibility | undefined;
|
|
8926
|
+
readonly xs?: csstype.Property.Visibility | undefined;
|
|
8927
|
+
readonly s?: csstype.Property.Visibility | undefined;
|
|
8928
|
+
readonly m?: csstype.Property.Visibility | undefined;
|
|
8929
|
+
readonly l?: csstype.Property.Visibility | undefined;
|
|
8930
|
+
readonly xl?: csstype.Property.Visibility | undefined;
|
|
8931
|
+
} | undefined;
|
|
8932
|
+
backgroundPosition?: csstype.Property.BackgroundPosition<string | number> | {
|
|
8933
|
+
readonly base?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
8934
|
+
readonly xs?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
8935
|
+
readonly s?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
8936
|
+
readonly m?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
8937
|
+
readonly l?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
8938
|
+
readonly xl?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
8939
|
+
} | undefined;
|
|
8940
|
+
borderColor: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | {
|
|
8941
|
+
readonly base?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8942
|
+
readonly xs?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8943
|
+
readonly s?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8944
|
+
readonly m?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8945
|
+
readonly l?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8946
|
+
readonly xl?: "surface.border.gray.subtle" | "surface.border.gray.normal" | "surface.border.gray.muted" | "surface.border.primary.normal" | "surface.border.primary.muted" | undefined;
|
|
8947
|
+
};
|
|
8948
|
+
borderRadius: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | {
|
|
8949
|
+
readonly base?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8950
|
+
readonly xs?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8951
|
+
readonly s?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8952
|
+
readonly m?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8953
|
+
readonly l?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8954
|
+
readonly xl?: "none" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "2xlarge" | "max" | "round" | undefined;
|
|
8955
|
+
};
|
|
8956
|
+
borderStyle?: csstype.Property.BorderStyle | {
|
|
8957
|
+
readonly base?: csstype.Property.BorderStyle | undefined;
|
|
8958
|
+
readonly xs?: csstype.Property.BorderStyle | undefined;
|
|
8959
|
+
readonly s?: csstype.Property.BorderStyle | undefined;
|
|
8960
|
+
readonly m?: csstype.Property.BorderStyle | undefined;
|
|
8961
|
+
readonly l?: csstype.Property.BorderStyle | undefined;
|
|
8962
|
+
readonly xl?: csstype.Property.BorderStyle | undefined;
|
|
8963
|
+
} | undefined;
|
|
8964
|
+
borderWidth: "none" | "thinner" | "thin" | "thick" | "thicker" | {
|
|
8965
|
+
readonly base?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8966
|
+
readonly xs?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8967
|
+
readonly s?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8968
|
+
readonly m?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8969
|
+
readonly l?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8970
|
+
readonly xl?: "none" | "thinner" | "thin" | "thick" | "thicker" | undefined;
|
|
8971
|
+
};
|
|
8972
|
+
__brand__?: "platform-web" | {
|
|
8973
|
+
readonly base?: "platform-web" | undefined;
|
|
8974
|
+
readonly xs?: "platform-web" | undefined;
|
|
8975
|
+
readonly s?: "platform-web" | undefined;
|
|
8976
|
+
readonly m?: "platform-web" | undefined;
|
|
8977
|
+
readonly l?: "platform-web" | undefined;
|
|
8978
|
+
readonly xl?: "platform-web" | undefined;
|
|
8979
|
+
} | undefined;
|
|
8980
|
+
}, "visibility">, "__brand__">> & React__default.RefAttributes<BladeElementRef>>;
|
|
7869
8981
|
|
|
7870
8982
|
type CardSpacingValueType = Extract<SpacingValueType, 'spacing.0' | 'spacing.3' | 'spacing.4' | 'spacing.5' | 'spacing.7'>;
|
|
7871
8983
|
|
|
@@ -14183,6 +15295,54 @@ declare const Divider: React__default.ForwardRefExoticComponent<{
|
|
|
14183
15295
|
} | undefined;
|
|
14184
15296
|
}, "visibility">, "__brand__">> & React__default.RefAttributes<BladeElementRef>>;
|
|
14185
15297
|
|
|
15298
|
+
/**
|
|
15299
|
+
* ### Drawer Component
|
|
15300
|
+
*
|
|
15301
|
+
* A drawer is a panel that slides in mostly from right side of the screen over the existing content in the viewport.
|
|
15302
|
+
* It helps in providing additional details or context and can also be used to promote product features or new products.
|
|
15303
|
+
*
|
|
15304
|
+
* ---
|
|
15305
|
+
*
|
|
15306
|
+
* #### Usage
|
|
15307
|
+
*
|
|
15308
|
+
* ```jsx
|
|
15309
|
+
const MyDrawer = () => {
|
|
15310
|
+
const [showDrawer, setShowDrawer] = React.useState(false);
|
|
15311
|
+
return (
|
|
15312
|
+
<Box>
|
|
15313
|
+
<Button onClick={() => setShowDrawer(true)}>Open Drawer</Button>
|
|
15314
|
+
<Drawer
|
|
15315
|
+
isOpen={showDrawer}
|
|
15316
|
+
onDismiss={() => setShowDrawer(false)}
|
|
15317
|
+
>
|
|
15318
|
+
<DrawerHeader title="Announcements" />
|
|
15319
|
+
<DrawerBody>
|
|
15320
|
+
<FTXAnnouncement />
|
|
15321
|
+
<CatPictures />
|
|
15322
|
+
</DrawerBody>
|
|
15323
|
+
<Drawer>
|
|
15324
|
+
</Box>
|
|
15325
|
+
)
|
|
15326
|
+
}
|
|
15327
|
+
* ```
|
|
15328
|
+
*
|
|
15329
|
+
* ---
|
|
15330
|
+
*
|
|
15331
|
+
* Checkout {@link https://blade.razorpay.com/?path=/docs/components-drawer Drawer Documentation}
|
|
15332
|
+
*
|
|
15333
|
+
*
|
|
15334
|
+
*/
|
|
15335
|
+
declare const Drawer: React__default.ForwardRefExoticComponent<{
|
|
15336
|
+
isOpen: boolean;
|
|
15337
|
+
onDismiss: () => void;
|
|
15338
|
+
showOverlay?: boolean | undefined;
|
|
15339
|
+
children: React__default.ReactNode;
|
|
15340
|
+
zIndex?: number | undefined;
|
|
15341
|
+
accessibilityLabel?: string | undefined;
|
|
15342
|
+
initialFocusRef?: React__default.MutableRefObject<any> | undefined;
|
|
15343
|
+
isLazy?: boolean | undefined;
|
|
15344
|
+
} & DataAnalyticsAttribute & TestID & React__default.RefAttributes<BladeElementRef>>;
|
|
15345
|
+
|
|
14186
15346
|
type DrawerProps = {
|
|
14187
15347
|
/**
|
|
14188
15348
|
* Controls the state of the drawer, indicating whether it is open or closed
|
|
@@ -14255,45 +15415,6 @@ type DrawerHeaderProps = {
|
|
|
14255
15415
|
trailing?: React.ReactNode;
|
|
14256
15416
|
} & DataAnalyticsAttribute;
|
|
14257
15417
|
|
|
14258
|
-
/**
|
|
14259
|
-
* ### Drawer Component
|
|
14260
|
-
*
|
|
14261
|
-
* A drawer is a panel that slides in mostly from right side of the screen over the existing content in the viewport.
|
|
14262
|
-
* It helps in providing additional details or context and can also be used to promote product features or new products.
|
|
14263
|
-
*
|
|
14264
|
-
* ---
|
|
14265
|
-
*
|
|
14266
|
-
* #### Usage
|
|
14267
|
-
*
|
|
14268
|
-
* ```jsx
|
|
14269
|
-
const MyDrawer = () => {
|
|
14270
|
-
const [showDrawer, setShowDrawer] = React.useState(false);
|
|
14271
|
-
return (
|
|
14272
|
-
<Box>
|
|
14273
|
-
<Button onClick={() => setShowDrawer(true)}>Open Drawer</Button>
|
|
14274
|
-
<Drawer
|
|
14275
|
-
isOpen={showDrawer}
|
|
14276
|
-
onDismiss={() => setShowDrawer(false)}
|
|
14277
|
-
>
|
|
14278
|
-
<DrawerHeader title="Announcements" />
|
|
14279
|
-
<DrawerBody>
|
|
14280
|
-
<FTXAnnouncement />
|
|
14281
|
-
<CatPictures />
|
|
14282
|
-
</DrawerBody>
|
|
14283
|
-
<Drawer>
|
|
14284
|
-
</Box>
|
|
14285
|
-
)
|
|
14286
|
-
}
|
|
14287
|
-
* ```
|
|
14288
|
-
*
|
|
14289
|
-
* ---
|
|
14290
|
-
*
|
|
14291
|
-
* Checkout {@link https://blade.razorpay.com/?path=/docs/components-drawer Drawer Documentation}
|
|
14292
|
-
*
|
|
14293
|
-
*
|
|
14294
|
-
*/
|
|
14295
|
-
declare const Drawer: ({ isOpen, onDismiss, zIndex, children, accessibilityLabel, showOverlay, initialFocusRef, isLazy, testID, ...rest }: DrawerProps) => React__default.ReactElement;
|
|
14296
|
-
|
|
14297
15418
|
/**
|
|
14298
15419
|
* #### Usage
|
|
14299
15420
|
*
|
|
@@ -19303,9 +20424,10 @@ type RadioGroupProps = {
|
|
|
19303
20424
|
/**
|
|
19304
20425
|
* The callback invoked when any of the radio's state changes
|
|
19305
20426
|
*/
|
|
19306
|
-
onChange?: ({ name, value }: {
|
|
20427
|
+
onChange?: ({ name, value, event, }: {
|
|
19307
20428
|
name: string | undefined;
|
|
19308
20429
|
value: string;
|
|
20430
|
+
event: React__default.ChangeEvent<HTMLInputElement>;
|
|
19309
20431
|
}) => void;
|
|
19310
20432
|
/**
|
|
19311
20433
|
* The name of the input field in a radio
|
|
@@ -20060,6 +21182,7 @@ type SideNavLinkProps = {
|
|
|
20060
21182
|
* ```
|
|
20061
21183
|
*/
|
|
20062
21184
|
tooltip?: Pick<TooltipProps, 'title' | 'content' | 'onOpenChange'>;
|
|
21185
|
+
onClick?: (event: React__default.MouseEvent) => void;
|
|
20063
21186
|
} & DataAnalyticsAttribute;
|
|
20064
21187
|
type SideNavSectionProps = {
|
|
20065
21188
|
title?: string;
|
|
@@ -20140,7 +21263,7 @@ type SideNavLevelProps = {
|
|
|
20140
21263
|
children: React__default.ReactElement | React__default.ReactElement[];
|
|
20141
21264
|
};
|
|
20142
21265
|
|
|
20143
|
-
declare const SideNavLink: ({ title, href, children, titleSuffix, trailing, isActive, icon, tooltip, as, target, ...rest }: SideNavLinkProps) => React__default.ReactElement;
|
|
21266
|
+
declare const SideNavLink: ({ title, href, children, titleSuffix, trailing, isActive, icon, tooltip, as, target, onClick, ...rest }: SideNavLinkProps) => React__default.ReactElement;
|
|
20144
21267
|
|
|
20145
21268
|
declare const SideNavLevel: ({ children }: SideNavLevelProps) => React__default.ReactElement;
|
|
20146
21269
|
|