@lets-events/react 11.6.3 → 11.6.5
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/.turbo/turbo-build.log +8 -8
- package/CHANGELOG.md +12 -0
- package/dist/index.d.mts +57 -425
- package/dist/index.d.ts +57 -425
- package/dist/index.js +164 -164
- package/dist/index.mjs +162 -158
- package/package.json +2 -3
- package/src/components/Dropdown.tsx +158 -50
- package/src/components/FormFields/PhoneFormField.tsx +75 -75
package/dist/index.d.mts
CHANGED
|
@@ -4,8 +4,8 @@ import { FontAwesomeIconProps } from '@fortawesome/react-fontawesome';
|
|
|
4
4
|
import PropTypes from 'prop-types';
|
|
5
5
|
import * as _stitches_react_types_styled_component from '@stitches/react/types/styled-component';
|
|
6
6
|
import * as _stitches_react_types_css_util from '@stitches/react/types/css-util';
|
|
7
|
-
import * as
|
|
8
|
-
import
|
|
7
|
+
import * as React$1 from 'react';
|
|
8
|
+
import React__default, { ComponentProps, ElementType, ReactNode, MouseEvent, JSX } from 'react';
|
|
9
9
|
import * as _radix_ui_themes from '@radix-ui/themes';
|
|
10
10
|
import { TextField as TextField$1, RadioGroup as RadioGroup$1, CheckboxGroup as CheckboxGroup$1, DropdownMenu as DropdownMenu$1, AlertDialog, Switch as Switch$1 } from '@radix-ui/themes';
|
|
11
11
|
import { Colors } from '@lets-events/tokens';
|
|
@@ -14,7 +14,6 @@ import { MaskOptions, format, unformat } from '@react-input/mask';
|
|
|
14
14
|
import { Dialog } from 'radix-ui';
|
|
15
15
|
import * as TooltipPrimitive from '@radix-ui/react-tooltip';
|
|
16
16
|
import { FieldError, Merge, FieldErrorsImpl, FieldValues, UseFormProps, SubmitHandler, useForm } from 'react-hook-form';
|
|
17
|
-
import { PhoneInputProps } from 'react-international-phone';
|
|
18
17
|
|
|
19
18
|
interface IconProps extends Omit<FontAwesomeIconProps, "icon" | "size"> {
|
|
20
19
|
name: IconName;
|
|
@@ -32,7 +31,7 @@ declare const Icon: {
|
|
|
32
31
|
};
|
|
33
32
|
};
|
|
34
33
|
|
|
35
|
-
declare const TextStyle: _stitches_react_types_styled_component.StyledComponent<
|
|
34
|
+
declare const TextStyle: _stitches_react_types_styled_component.StyledComponent<React$1.ForwardRefExoticComponent<_radix_ui_themes.TextProps & React$1.RefAttributes<HTMLSpanElement>>, {
|
|
36
35
|
typography?: "tooltip" | "displayLarge" | "displayMedium" | "displaySmall" | "headline1" | "headline2" | "headline3" | "headline4" | "headline5" | "headline6" | "headline7" | "headline8" | "bodyXL" | "bodyL" | "bodyM" | "bodyS" | "bodyXS" | "bodyXXS" | "badgeLarge" | "badgeMedium" | "badgeSmall" | "badgeExtraSmall" | "popoversRegular" | "captionLarge" | "captionMedium" | "captionSmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "buttonExtraSmall" | "labelLarge" | "labelMedium" | "labelSmall" | "labelExtraSmall" | undefined;
|
|
37
36
|
fontWeight?: "bold" | "medium" | "regular" | "semibold" | undefined;
|
|
38
37
|
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
@@ -412,7 +411,7 @@ type TextProps = Omit<ComponentProps<typeof TextStyle>, "color"> & {
|
|
|
412
411
|
};
|
|
413
412
|
declare function Text({ color, ...props }: TextProps): react_jsx_runtime.JSX.Element;
|
|
414
413
|
|
|
415
|
-
declare const ButtonStyled: _stitches_react_types_styled_component.StyledComponent<
|
|
414
|
+
declare const ButtonStyled: _stitches_react_types_styled_component.StyledComponent<React$1.ForwardRefExoticComponent<_radix_ui_themes.ButtonProps & React$1.RefAttributes<HTMLButtonElement>>, {
|
|
416
415
|
color?: "info" | "warning" | "purple" | "white" | "brand" | "error" | "success" | "neutral" | undefined;
|
|
417
416
|
size?: "medium" | "small" | "large" | "extraSmall" | undefined;
|
|
418
417
|
variant?: "text" | "contained" | "outlined" | "menuDropdownItem" | undefined;
|
|
@@ -796,7 +795,7 @@ interface ButtonProps extends ComponentProps<typeof ButtonStyled>, ButtonVariant
|
|
|
796
795
|
}
|
|
797
796
|
declare function Button({ asChild, ...props }: ButtonProps): react_jsx_runtime.JSX.Element;
|
|
798
797
|
|
|
799
|
-
declare const ButtonItemStyled: _stitches_react_types_styled_component.StyledComponent<
|
|
798
|
+
declare const ButtonItemStyled: _stitches_react_types_styled_component.StyledComponent<React$1.ForwardRefExoticComponent<_radix_ui_themes.ButtonProps & React$1.RefAttributes<HTMLButtonElement>>, {
|
|
800
799
|
active?: boolean | "true" | undefined;
|
|
801
800
|
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
802
801
|
colors: {
|
|
@@ -1168,7 +1167,7 @@ declare const ButtonItemStyled: _stitches_react_types_styled_component.StyledCom
|
|
|
1168
1167
|
transition: "transitions";
|
|
1169
1168
|
zIndex: "zIndices";
|
|
1170
1169
|
}, {}>>;
|
|
1171
|
-
declare const ButtonGroupStyled: _stitches_react_types_styled_component.StyledComponent<
|
|
1170
|
+
declare const ButtonGroupStyled: _stitches_react_types_styled_component.StyledComponent<React$1.ForwardRefExoticComponent<_radix_ui_themes.FlexProps & React$1.RefAttributes<HTMLDivElement>>, {
|
|
1172
1171
|
color?: "blue" | "green" | "purple" | "red" | "brand" | "neutral" | undefined;
|
|
1173
1172
|
variant?: "text" | "contained" | "outlined" | undefined;
|
|
1174
1173
|
typography?: "buttonLarge" | "buttonMedium" | "buttonSmall" | "buttonExtraSmall" | undefined;
|
|
@@ -1549,7 +1548,7 @@ type ButtonGroupProps = ComponentProps<typeof ButtonGroupStyled>;
|
|
|
1549
1548
|
declare function ButtonItem({ children, active, ...props }: ButtonItemProps): react_jsx_runtime.JSX.Element;
|
|
1550
1549
|
declare function ButtonGroup({ children, ...props }: ButtonGroupProps): react_jsx_runtime.JSX.Element;
|
|
1551
1550
|
|
|
1552
|
-
declare const AvatarStyled: _stitches_react_types_styled_component.StyledComponent<
|
|
1551
|
+
declare const AvatarStyled: _stitches_react_types_styled_component.StyledComponent<React$1.ForwardRefExoticComponent<_radix_ui_themes.AvatarProps & React$1.RefAttributes<HTMLImageElement>>, {
|
|
1553
1552
|
size?: "xs" | "sm" | "md" | "xl" | "lg" | undefined;
|
|
1554
1553
|
radii?: "full" | undefined;
|
|
1555
1554
|
variant?: "without-image" | "with-image" | undefined;
|
|
@@ -1930,7 +1929,7 @@ type AvatarProps = ComponentProps<typeof AvatarStyled> & {
|
|
|
1930
1929
|
};
|
|
1931
1930
|
declare function Avatar({ asChild, ...props }: AvatarProps): react_jsx_runtime.JSX.Element;
|
|
1932
1931
|
|
|
1933
|
-
declare const TextFieldStyled: _stitches_react_types_styled_component.StyledComponent<
|
|
1932
|
+
declare const TextFieldStyled: _stitches_react_types_styled_component.StyledComponent<React__default.ForwardRefExoticComponent<TextField$1.RootProps & React__default.RefAttributes<HTMLInputElement>>, {
|
|
1934
1933
|
color?: "default" | "error" | undefined;
|
|
1935
1934
|
typography?: "tooltip" | "displayLarge" | "displayMedium" | "displaySmall" | "headline1" | "headline2" | "headline3" | "headline4" | "headline5" | "headline6" | "headline7" | "headline8" | "bodyXL" | "bodyL" | "bodyM" | "bodyS" | "bodyXS" | "bodyXXS" | "badgeLarge" | "badgeMedium" | "badgeSmall" | "badgeExtraSmall" | "popoversRegular" | "captionLarge" | "captionMedium" | "captionSmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "buttonExtraSmall" | "labelLarge" | "labelMedium" | "labelSmall" | "labelExtraSmall" | undefined;
|
|
1936
1935
|
fontWeight?: "bold" | "medium" | "regular" | "semibold" | undefined;
|
|
@@ -2306,7 +2305,7 @@ declare const TextFieldStyled: _stitches_react_types_styled_component.StyledComp
|
|
|
2306
2305
|
transition: "transitions";
|
|
2307
2306
|
zIndex: "zIndices";
|
|
2308
2307
|
}, {}>>;
|
|
2309
|
-
declare const TextFieldSlotStyled: _stitches_react_types_styled_component.StyledComponent<
|
|
2308
|
+
declare const TextFieldSlotStyled: _stitches_react_types_styled_component.StyledComponent<React__default.ForwardRefExoticComponent<TextField$1.SlotProps & React__default.RefAttributes<HTMLDivElement>>, {
|
|
2310
2309
|
typography?: "tooltip" | "displayLarge" | "displayMedium" | "displaySmall" | "headline1" | "headline2" | "headline3" | "headline4" | "headline5" | "headline6" | "headline7" | "headline8" | "bodyXL" | "bodyL" | "bodyM" | "bodyS" | "bodyXS" | "bodyXXS" | "badgeLarge" | "badgeMedium" | "badgeSmall" | "badgeExtraSmall" | "popoversRegular" | "captionLarge" | "captionMedium" | "captionSmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "buttonExtraSmall" | "labelLarge" | "labelMedium" | "labelSmall" | "labelExtraSmall" | undefined;
|
|
2311
2310
|
fontWeight?: "bold" | "medium" | "regular" | "semibold" | undefined;
|
|
2312
2311
|
textAlign?: "left" | "right" | "center" | undefined;
|
|
@@ -2683,7 +2682,7 @@ declare const TextFieldSlotStyled: _stitches_react_types_styled_component.Styled
|
|
|
2683
2682
|
type TextFieldProps = ComponentProps<typeof TextFieldStyled> & {
|
|
2684
2683
|
addon?: ReactNode;
|
|
2685
2684
|
placeholder?: string;
|
|
2686
|
-
children?:
|
|
2685
|
+
children?: React__default.ReactNode;
|
|
2687
2686
|
isValid?: boolean;
|
|
2688
2687
|
name?: string;
|
|
2689
2688
|
typography?: string;
|
|
@@ -2693,7 +2692,7 @@ type TextFieldProps = ComponentProps<typeof TextFieldStyled> & {
|
|
|
2693
2692
|
};
|
|
2694
2693
|
type TextFieldSlotProps = Omit<ComponentProps<typeof TextFieldStyled>, "color"> & {
|
|
2695
2694
|
placeholder?: string;
|
|
2696
|
-
children?:
|
|
2695
|
+
children?: React__default.ReactNode;
|
|
2697
2696
|
position?: "flex-start" | "flex-end";
|
|
2698
2697
|
onClick?: () => void;
|
|
2699
2698
|
color?: "error" | "success" | undefined;
|
|
@@ -2703,10 +2702,10 @@ type TextFieldSlotProps = Omit<ComponentProps<typeof TextFieldStyled>, "color">
|
|
|
2703
2702
|
};
|
|
2704
2703
|
declare const maskFormat: typeof format;
|
|
2705
2704
|
declare const maskUnformat: typeof unformat;
|
|
2706
|
-
declare const TextField:
|
|
2705
|
+
declare const TextField: React__default.ForwardRefExoticComponent<Omit<TextFieldProps, "ref"> & React__default.RefAttributes<HTMLInputElement>>;
|
|
2707
2706
|
declare function TextFieldSlot({ children, position, onClick, typography, fontWeight, textAlign, ...props }: TextFieldSlotProps): react_jsx_runtime.JSX.Element;
|
|
2708
2707
|
|
|
2709
|
-
declare const RadioGroupStyled: _stitches_react_types_styled_component.StyledComponent<
|
|
2708
|
+
declare const RadioGroupStyled: _stitches_react_types_styled_component.StyledComponent<React$1.ForwardRefExoticComponent<RadioGroup$1.RootProps & React$1.RefAttributes<HTMLDivElement>>, {
|
|
2710
2709
|
color?: "blue" | "error" | "success" | undefined;
|
|
2711
2710
|
disabled?: boolean | "false" | "true" | undefined;
|
|
2712
2711
|
typography?: "labelLarge" | "labelMedium" | "labelSmall" | "labelExtraSmall" | undefined;
|
|
@@ -3096,7 +3095,7 @@ type RadioItemProps = {
|
|
|
3096
3095
|
declare function RadioGroup({ children, disabled, ...props }: RadioGroupProps): react_jsx_runtime.JSX.Element;
|
|
3097
3096
|
declare function RadioItem({ children, ...props }: RadioItemProps): react_jsx_runtime.JSX.Element;
|
|
3098
3097
|
|
|
3099
|
-
declare const CheckboxGroupStyled: _stitches_react_types_styled_component.StyledComponent<
|
|
3098
|
+
declare const CheckboxGroupStyled: _stitches_react_types_styled_component.StyledComponent<React$1.ForwardRefExoticComponent<CheckboxGroup$1.RootProps & React$1.RefAttributes<HTMLDivElement>>, {
|
|
3100
3099
|
color?: "blue" | "error" | "success" | undefined;
|
|
3101
3100
|
disabled?: boolean | "false" | "true" | undefined;
|
|
3102
3101
|
typography?: "labelLarge" | "labelMedium" | "labelSmall" | "labelExtraSmall" | undefined;
|
|
@@ -3471,7 +3470,7 @@ declare const CheckboxGroupStyled: _stitches_react_types_styled_component.Styled
|
|
|
3471
3470
|
transition: "transitions";
|
|
3472
3471
|
zIndex: "zIndices";
|
|
3473
3472
|
}, {}>>;
|
|
3474
|
-
declare const StyledItem: _stitches_react_types_styled_component.StyledComponent<
|
|
3473
|
+
declare const StyledItem: _stitches_react_types_styled_component.StyledComponent<React$1.ForwardRefExoticComponent<CheckboxGroup$1.ItemProps & React$1.RefAttributes<HTMLButtonElement>>, {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
3475
3474
|
colors: {
|
|
3476
3475
|
brand50: string;
|
|
3477
3476
|
brand100: string;
|
|
@@ -3870,397 +3869,30 @@ type FilterItemProps = ComponentProps<typeof CheckboxItem> & {
|
|
|
3870
3869
|
declare function Filter({ children, placeholder, typography, fontWeight, ...props }: FilterProps): react_jsx_runtime.JSX.Element;
|
|
3871
3870
|
declare function FilterItem({ children, ...props }: FilterItemProps): react_jsx_runtime.JSX.Element;
|
|
3872
3871
|
|
|
3873
|
-
|
|
3874
|
-
typography?: "labelLarge" | "labelMedium" | "labelSmall" | "labelExtraSmall" | undefined;
|
|
3875
|
-
fontWeight?: "bold" | "medium" | "regular" | "semibold" | undefined;
|
|
3876
|
-
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
3877
|
-
colors: {
|
|
3878
|
-
brand50: string;
|
|
3879
|
-
brand100: string;
|
|
3880
|
-
brand200: string;
|
|
3881
|
-
brand300: string;
|
|
3882
|
-
brand400: string;
|
|
3883
|
-
brand500: string;
|
|
3884
|
-
brand600: string;
|
|
3885
|
-
brand700: string;
|
|
3886
|
-
brand800: string;
|
|
3887
|
-
brand900: string;
|
|
3888
|
-
brand950: string;
|
|
3889
|
-
blue50: string;
|
|
3890
|
-
blue100: string;
|
|
3891
|
-
blue200: string;
|
|
3892
|
-
blue300: string;
|
|
3893
|
-
blue400: string;
|
|
3894
|
-
blue500: string;
|
|
3895
|
-
blue600: string;
|
|
3896
|
-
blue700: string;
|
|
3897
|
-
blue800: string;
|
|
3898
|
-
blue900: string;
|
|
3899
|
-
blue950: string;
|
|
3900
|
-
red50: string;
|
|
3901
|
-
red100: string;
|
|
3902
|
-
red200: string;
|
|
3903
|
-
red300: string;
|
|
3904
|
-
red400: string;
|
|
3905
|
-
red500: string;
|
|
3906
|
-
red600: string;
|
|
3907
|
-
red700: string;
|
|
3908
|
-
red800: string;
|
|
3909
|
-
red900: string;
|
|
3910
|
-
red950: string;
|
|
3911
|
-
purple50: string;
|
|
3912
|
-
purple100: string;
|
|
3913
|
-
purple200: string;
|
|
3914
|
-
purple300: string;
|
|
3915
|
-
purple400: string;
|
|
3916
|
-
purple500: string;
|
|
3917
|
-
purple600: string;
|
|
3918
|
-
purple700: string;
|
|
3919
|
-
purple800: string;
|
|
3920
|
-
purple900: string;
|
|
3921
|
-
purple950: string;
|
|
3922
|
-
yellow50: string;
|
|
3923
|
-
yellow100: string;
|
|
3924
|
-
yellow200: string;
|
|
3925
|
-
yellow300: string;
|
|
3926
|
-
yellow400: string;
|
|
3927
|
-
yellow500: string;
|
|
3928
|
-
yellow600: string;
|
|
3929
|
-
yellow700: string;
|
|
3930
|
-
yellow800: string;
|
|
3931
|
-
yellow900: string;
|
|
3932
|
-
yellow950: string;
|
|
3933
|
-
dark50: string;
|
|
3934
|
-
dark100: string;
|
|
3935
|
-
dark200: string;
|
|
3936
|
-
dark300: string;
|
|
3937
|
-
dark400: string;
|
|
3938
|
-
dark500: string;
|
|
3939
|
-
dark600: string;
|
|
3940
|
-
dark700: string;
|
|
3941
|
-
dark800: string;
|
|
3942
|
-
dark900: string;
|
|
3943
|
-
dark950: string;
|
|
3944
|
-
neutral50: string;
|
|
3945
|
-
neutral100: string;
|
|
3946
|
-
neutral200: string;
|
|
3947
|
-
neutral300: string;
|
|
3948
|
-
neutral400: string;
|
|
3949
|
-
neutral500: string;
|
|
3950
|
-
neutral600: string;
|
|
3951
|
-
neutral700: string;
|
|
3952
|
-
neutral800: string;
|
|
3953
|
-
neutral900: string;
|
|
3954
|
-
neutral950: string;
|
|
3955
|
-
green50: string;
|
|
3956
|
-
green100: string;
|
|
3957
|
-
green200: string;
|
|
3958
|
-
green300: string;
|
|
3959
|
-
green400: string;
|
|
3960
|
-
green500: string;
|
|
3961
|
-
green600: string;
|
|
3962
|
-
green700: string;
|
|
3963
|
-
green800: string;
|
|
3964
|
-
green900: string;
|
|
3965
|
-
green950: string;
|
|
3966
|
-
grey50: string;
|
|
3967
|
-
grey100: string;
|
|
3968
|
-
grey200: string;
|
|
3969
|
-
grey300: string;
|
|
3970
|
-
grey400: string;
|
|
3971
|
-
grey500: string;
|
|
3972
|
-
grey600: string;
|
|
3973
|
-
grey700: string;
|
|
3974
|
-
grey800: string;
|
|
3975
|
-
grey900: string;
|
|
3976
|
-
grey950: string;
|
|
3977
|
-
error50: string;
|
|
3978
|
-
error100: string;
|
|
3979
|
-
error200: string;
|
|
3980
|
-
error300: string;
|
|
3981
|
-
error400: string;
|
|
3982
|
-
error500: string;
|
|
3983
|
-
error600: string;
|
|
3984
|
-
error700: string;
|
|
3985
|
-
error800: string;
|
|
3986
|
-
error900: string;
|
|
3987
|
-
error950: string;
|
|
3988
|
-
success50: string;
|
|
3989
|
-
success100: string;
|
|
3990
|
-
success200: string;
|
|
3991
|
-
success300: string;
|
|
3992
|
-
success400: string;
|
|
3993
|
-
success500: string;
|
|
3994
|
-
success600: string;
|
|
3995
|
-
success700: string;
|
|
3996
|
-
success800: string;
|
|
3997
|
-
success900: string;
|
|
3998
|
-
success950: string;
|
|
3999
|
-
warning50: string;
|
|
4000
|
-
warning100: string;
|
|
4001
|
-
warning200: string;
|
|
4002
|
-
warning300: string;
|
|
4003
|
-
warning400: string;
|
|
4004
|
-
warning500: string;
|
|
4005
|
-
warning600: string;
|
|
4006
|
-
warning700: string;
|
|
4007
|
-
warning800: string;
|
|
4008
|
-
warning900: string;
|
|
4009
|
-
warning950: string;
|
|
4010
|
-
info50: string;
|
|
4011
|
-
info100: string;
|
|
4012
|
-
info200: string;
|
|
4013
|
-
info300: string;
|
|
4014
|
-
info400: string;
|
|
4015
|
-
info500: string;
|
|
4016
|
-
info600: string;
|
|
4017
|
-
info700: string;
|
|
4018
|
-
info800: string;
|
|
4019
|
-
info900: string;
|
|
4020
|
-
info950: string;
|
|
4021
|
-
};
|
|
4022
|
-
fontSizes: {
|
|
4023
|
-
2: string;
|
|
4024
|
-
4: string;
|
|
4025
|
-
6: string;
|
|
4026
|
-
8: string;
|
|
4027
|
-
10: string;
|
|
4028
|
-
12: string;
|
|
4029
|
-
13: string;
|
|
4030
|
-
14: string;
|
|
4031
|
-
16: string;
|
|
4032
|
-
18: string;
|
|
4033
|
-
20: string;
|
|
4034
|
-
22: string;
|
|
4035
|
-
24: string;
|
|
4036
|
-
32: string;
|
|
4037
|
-
36: string;
|
|
4038
|
-
40: string;
|
|
4039
|
-
48: string;
|
|
4040
|
-
56: string;
|
|
4041
|
-
64: string;
|
|
4042
|
-
72: string;
|
|
4043
|
-
80: string;
|
|
4044
|
-
xs: string;
|
|
4045
|
-
sm: string;
|
|
4046
|
-
md: string;
|
|
4047
|
-
lg: string;
|
|
4048
|
-
'2xl': string;
|
|
4049
|
-
'3xl': string;
|
|
4050
|
-
'4xl': string;
|
|
4051
|
-
full: string;
|
|
4052
|
-
};
|
|
4053
|
-
fonts: {
|
|
4054
|
-
default: string;
|
|
4055
|
-
};
|
|
4056
|
-
fontWeights: {
|
|
4057
|
-
regular: string;
|
|
4058
|
-
medium: string;
|
|
4059
|
-
semibold: string;
|
|
4060
|
-
bold: string;
|
|
4061
|
-
};
|
|
4062
|
-
lineHeights: {
|
|
4063
|
-
smaller: string;
|
|
4064
|
-
shorter: string;
|
|
4065
|
-
short: string;
|
|
4066
|
-
base: string;
|
|
4067
|
-
tall: string;
|
|
4068
|
-
};
|
|
4069
|
-
radii: {
|
|
4070
|
-
'3xs': string;
|
|
4071
|
-
'2xs': string;
|
|
4072
|
-
xs: string;
|
|
4073
|
-
sm: string;
|
|
4074
|
-
md: string;
|
|
4075
|
-
lg: string;
|
|
4076
|
-
xl: string;
|
|
4077
|
-
'2xl': string;
|
|
4078
|
-
'3xl': string;
|
|
4079
|
-
'4xl': string;
|
|
4080
|
-
'5xl': string;
|
|
4081
|
-
'6xl': string;
|
|
4082
|
-
'7xl': string;
|
|
4083
|
-
'8xl': string;
|
|
4084
|
-
'9xl': string;
|
|
4085
|
-
'10xl': string;
|
|
4086
|
-
'11xl': string;
|
|
4087
|
-
'12xl': string;
|
|
4088
|
-
'13xl': string;
|
|
4089
|
-
'14xl': string;
|
|
4090
|
-
full: string;
|
|
4091
|
-
};
|
|
4092
|
-
space: {
|
|
4093
|
-
2: string;
|
|
4094
|
-
4: string;
|
|
4095
|
-
6: string;
|
|
4096
|
-
8: string;
|
|
4097
|
-
10: string;
|
|
4098
|
-
12: string;
|
|
4099
|
-
13: string;
|
|
4100
|
-
14: string;
|
|
4101
|
-
16: string;
|
|
4102
|
-
18: string;
|
|
4103
|
-
20: string;
|
|
4104
|
-
22: string;
|
|
4105
|
-
24: string;
|
|
4106
|
-
32: string;
|
|
4107
|
-
36: string;
|
|
4108
|
-
40: string;
|
|
4109
|
-
48: string;
|
|
4110
|
-
56: string;
|
|
4111
|
-
64: string;
|
|
4112
|
-
72: string;
|
|
4113
|
-
80: string;
|
|
4114
|
-
full: string;
|
|
4115
|
-
};
|
|
4116
|
-
}, {
|
|
4117
|
-
height: "space";
|
|
4118
|
-
width: "space";
|
|
4119
|
-
gap: "space";
|
|
4120
|
-
gridGap: "space";
|
|
4121
|
-
columnGap: "space";
|
|
4122
|
-
gridColumnGap: "space";
|
|
4123
|
-
rowGap: "space";
|
|
4124
|
-
gridRowGap: "space";
|
|
4125
|
-
inset: "space";
|
|
4126
|
-
insetBlock: "space";
|
|
4127
|
-
insetBlockEnd: "space";
|
|
4128
|
-
insetBlockStart: "space";
|
|
4129
|
-
insetInline: "space";
|
|
4130
|
-
insetInlineEnd: "space";
|
|
4131
|
-
insetInlineStart: "space";
|
|
4132
|
-
margin: "space";
|
|
4133
|
-
marginTop: "space";
|
|
4134
|
-
marginRight: "space";
|
|
4135
|
-
marginBottom: "space";
|
|
4136
|
-
marginLeft: "space";
|
|
4137
|
-
marginBlock: "space";
|
|
4138
|
-
marginBlockEnd: "space";
|
|
4139
|
-
marginBlockStart: "space";
|
|
4140
|
-
marginInline: "space";
|
|
4141
|
-
marginInlineEnd: "space";
|
|
4142
|
-
marginInlineStart: "space";
|
|
4143
|
-
padding: "space";
|
|
4144
|
-
paddingTop: "space";
|
|
4145
|
-
paddingRight: "space";
|
|
4146
|
-
paddingBottom: "space";
|
|
4147
|
-
paddingLeft: "space";
|
|
4148
|
-
paddingBlock: "space";
|
|
4149
|
-
paddingBlockEnd: "space";
|
|
4150
|
-
paddingBlockStart: "space";
|
|
4151
|
-
paddingInline: "space";
|
|
4152
|
-
paddingInlineEnd: "space";
|
|
4153
|
-
paddingInlineStart: "space";
|
|
4154
|
-
scrollMargin: "space";
|
|
4155
|
-
scrollMarginTop: "space";
|
|
4156
|
-
scrollMarginRight: "space";
|
|
4157
|
-
scrollMarginBottom: "space";
|
|
4158
|
-
scrollMarginLeft: "space";
|
|
4159
|
-
scrollMarginBlock: "space";
|
|
4160
|
-
scrollMarginBlockEnd: "space";
|
|
4161
|
-
scrollMarginBlockStart: "space";
|
|
4162
|
-
scrollMarginInline: "space";
|
|
4163
|
-
scrollMarginInlineEnd: "space";
|
|
4164
|
-
scrollMarginInlineStart: "space";
|
|
4165
|
-
scrollPadding: "space";
|
|
4166
|
-
scrollPaddingTop: "space";
|
|
4167
|
-
scrollPaddingRight: "space";
|
|
4168
|
-
scrollPaddingBottom: "space";
|
|
4169
|
-
scrollPaddingLeft: "space";
|
|
4170
|
-
scrollPaddingBlock: "space";
|
|
4171
|
-
scrollPaddingBlockEnd: "space";
|
|
4172
|
-
scrollPaddingBlockStart: "space";
|
|
4173
|
-
scrollPaddingInline: "space";
|
|
4174
|
-
scrollPaddingInlineEnd: "space";
|
|
4175
|
-
scrollPaddingInlineStart: "space";
|
|
4176
|
-
top: "space";
|
|
4177
|
-
right: "space";
|
|
4178
|
-
bottom: "space";
|
|
4179
|
-
left: "space";
|
|
4180
|
-
fontSize: "fontSizes";
|
|
4181
|
-
background: "colors";
|
|
4182
|
-
backgroundColor: "colors";
|
|
4183
|
-
backgroundImage: "colors";
|
|
4184
|
-
borderImage: "colors";
|
|
4185
|
-
border: "colors";
|
|
4186
|
-
borderBlock: "colors";
|
|
4187
|
-
borderBlockEnd: "colors";
|
|
4188
|
-
borderBlockStart: "colors";
|
|
4189
|
-
borderBottom: "colors";
|
|
4190
|
-
borderBottomColor: "colors";
|
|
4191
|
-
borderColor: "colors";
|
|
4192
|
-
borderInline: "colors";
|
|
4193
|
-
borderInlineEnd: "colors";
|
|
4194
|
-
borderInlineStart: "colors";
|
|
4195
|
-
borderLeft: "colors";
|
|
4196
|
-
borderLeftColor: "colors";
|
|
4197
|
-
borderRight: "colors";
|
|
4198
|
-
borderRightColor: "colors";
|
|
4199
|
-
borderTop: "colors";
|
|
4200
|
-
borderTopColor: "colors";
|
|
4201
|
-
caretColor: "colors";
|
|
4202
|
-
color: "colors";
|
|
4203
|
-
columnRuleColor: "colors";
|
|
4204
|
-
outline: "colors";
|
|
4205
|
-
outlineColor: "colors";
|
|
4206
|
-
fill: "colors";
|
|
4207
|
-
stroke: "colors";
|
|
4208
|
-
textDecorationColor: "colors";
|
|
4209
|
-
fontFamily: "fonts";
|
|
4210
|
-
fontWeight: "fontWeights";
|
|
4211
|
-
lineHeight: "lineHeights";
|
|
4212
|
-
letterSpacing: "letterSpacings";
|
|
4213
|
-
blockSize: "sizes";
|
|
4214
|
-
minBlockSize: "sizes";
|
|
4215
|
-
maxBlockSize: "sizes";
|
|
4216
|
-
inlineSize: "sizes";
|
|
4217
|
-
minInlineSize: "sizes";
|
|
4218
|
-
maxInlineSize: "sizes";
|
|
4219
|
-
minWidth: "sizes";
|
|
4220
|
-
maxWidth: "sizes";
|
|
4221
|
-
minHeight: "sizes";
|
|
4222
|
-
maxHeight: "sizes";
|
|
4223
|
-
flexBasis: "sizes";
|
|
4224
|
-
gridTemplateColumns: "sizes";
|
|
4225
|
-
gridTemplateRows: "sizes";
|
|
4226
|
-
borderWidth: "borderWidths";
|
|
4227
|
-
borderTopWidth: "borderWidths";
|
|
4228
|
-
borderLeftWidth: "borderWidths";
|
|
4229
|
-
borderRightWidth: "borderWidths";
|
|
4230
|
-
borderBottomWidth: "borderWidths";
|
|
4231
|
-
borderStyle: "borderStyles";
|
|
4232
|
-
borderTopStyle: "borderStyles";
|
|
4233
|
-
borderLeftStyle: "borderStyles";
|
|
4234
|
-
borderRightStyle: "borderStyles";
|
|
4235
|
-
borderBottomStyle: "borderStyles";
|
|
4236
|
-
borderRadius: "radii";
|
|
4237
|
-
borderTopLeftRadius: "radii";
|
|
4238
|
-
borderTopRightRadius: "radii";
|
|
4239
|
-
borderBottomRightRadius: "radii";
|
|
4240
|
-
borderBottomLeftRadius: "radii";
|
|
4241
|
-
boxShadow: "shadows";
|
|
4242
|
-
textShadow: "shadows";
|
|
4243
|
-
transition: "transitions";
|
|
4244
|
-
zIndex: "zIndices";
|
|
4245
|
-
}, {}>>;
|
|
4246
|
-
type DropdownMenuProps = ComponentProps<typeof DropdownMenu$1.Root> & {
|
|
3872
|
+
type DropdownMenuProps = {
|
|
4247
3873
|
as?: ElementType;
|
|
4248
3874
|
placeholder?: string;
|
|
4249
3875
|
fontWeight: "regular" | "medium" | "semibold" | "bold";
|
|
4250
3876
|
typography: "labelExtraSmall" | "labelSmall" | "labelMedium" | "labelLarge";
|
|
4251
|
-
children:
|
|
3877
|
+
children: ReactNode;
|
|
4252
3878
|
color?: "default" | "error";
|
|
3879
|
+
open?: boolean;
|
|
3880
|
+
onOpenChange?: (open: boolean) => void;
|
|
3881
|
+
defaultOpen?: boolean;
|
|
4253
3882
|
};
|
|
4254
|
-
type DropdownMenuItemProps =
|
|
3883
|
+
type DropdownMenuItemProps = {
|
|
4255
3884
|
as?: ElementType;
|
|
4256
3885
|
value: string;
|
|
4257
3886
|
typography: DropdownMenuProps["typography"];
|
|
4258
3887
|
fontWeight: DropdownMenuProps["fontWeight"];
|
|
3888
|
+
children: ReactNode;
|
|
3889
|
+
onSelect?: (value: string) => void;
|
|
3890
|
+
onClick?: (event: MouseEvent<HTMLDivElement>) => void;
|
|
4259
3891
|
};
|
|
4260
|
-
declare function DropdownMenu({ children, placeholder, typography, color, fontWeight, ...props }: DropdownMenuProps): react_jsx_runtime.JSX.Element;
|
|
4261
|
-
declare function DropdownMenuItem({ children, typography, fontWeight, ...props }: DropdownMenuItemProps): react_jsx_runtime.JSX.Element;
|
|
3892
|
+
declare function DropdownMenu({ children, placeholder, typography, color, fontWeight, open: controlledOpen, onOpenChange, defaultOpen, ...props }: DropdownMenuProps): react_jsx_runtime.JSX.Element;
|
|
3893
|
+
declare function DropdownMenuItem({ children, typography, fontWeight, value, onSelect, onClick, ...props }: DropdownMenuItemProps): react_jsx_runtime.JSX.Element;
|
|
4262
3894
|
|
|
4263
|
-
declare const BadgeStyled: _stitches_react_types_styled_component.StyledComponent<
|
|
3895
|
+
declare const BadgeStyled: _stitches_react_types_styled_component.StyledComponent<React__default.ForwardRefExoticComponent<_radix_ui_themes.BadgeProps & React__default.RefAttributes<HTMLSpanElement>>, {
|
|
4264
3896
|
color?: "blue" | "green" | "grey" | "orange" | "pink" | "purple" | "red" | "yellow" | "dark" | "light" | "primary" | "disable" | undefined;
|
|
4265
3897
|
size?: "xs" | "sm" | "md" | "xl" | undefined;
|
|
4266
3898
|
fontWeight?: "bold" | "medium" | "regular" | "semibold" | undefined;
|
|
@@ -4638,7 +4270,7 @@ declare const BadgeStyled: _stitches_react_types_styled_component.StyledComponen
|
|
|
4638
4270
|
type BadgeProps = ComponentProps<typeof BadgeStyled> & {
|
|
4639
4271
|
as?: ElementType;
|
|
4640
4272
|
icon?: boolean;
|
|
4641
|
-
children:
|
|
4273
|
+
children: React__default.ReactNode;
|
|
4642
4274
|
};
|
|
4643
4275
|
declare function Badge({ asChild, children, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
|
|
4644
4276
|
|
|
@@ -5399,7 +5031,7 @@ declare const CalendarStyled: _stitches_react_types_styled_component.StyledCompo
|
|
|
5399
5031
|
type CalendarProps = ComponentProps<typeof CalendarStyled> & {
|
|
5400
5032
|
calendarLayout?: "label" | "dropdown" | "dropdown-months" | "dropdown-years";
|
|
5401
5033
|
selected: Date | undefined;
|
|
5402
|
-
setSelected:
|
|
5034
|
+
setSelected: React__default.Dispatch<React__default.SetStateAction<Date | undefined>>;
|
|
5403
5035
|
position?: "top" | "bottom";
|
|
5404
5036
|
action?: boolean;
|
|
5405
5037
|
actionText?: string;
|
|
@@ -8009,12 +7641,12 @@ declare const TimePickerButtonStyled: _stitches_react_types_styled_component.Sty
|
|
|
8009
7641
|
}, {}>>;
|
|
8010
7642
|
type TimePickerProps = {
|
|
8011
7643
|
selected: string | undefined;
|
|
8012
|
-
setSelected:
|
|
7644
|
+
setSelected: React__default.Dispatch<React__default.SetStateAction<string | undefined>>;
|
|
8013
7645
|
position?: "bottom" | "top";
|
|
8014
7646
|
};
|
|
8015
7647
|
declare function TimePicker({ selected, setSelected, position, }: TimePickerProps): react_jsx_runtime.JSX.Element;
|
|
8016
7648
|
|
|
8017
|
-
declare const AlertDialogSimpleStyled: _stitches_react_types_styled_component.StyledComponent<
|
|
7649
|
+
declare const AlertDialogSimpleStyled: _stitches_react_types_styled_component.StyledComponent<React$1.ForwardRefExoticComponent<AlertDialog.ContentProps & React$1.RefAttributes<HTMLDivElement>>, {
|
|
8018
7650
|
color?: "info" | "warning" | "error" | "success" | undefined;
|
|
8019
7651
|
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
8020
7652
|
colors: {
|
|
@@ -8386,7 +8018,7 @@ declare const AlertDialogSimpleStyled: _stitches_react_types_styled_component.St
|
|
|
8386
8018
|
transition: "transitions";
|
|
8387
8019
|
zIndex: "zIndices";
|
|
8388
8020
|
}, {}>>;
|
|
8389
|
-
declare const AlertDialogCompleteStyled: _stitches_react_types_styled_component.StyledComponent<
|
|
8021
|
+
declare const AlertDialogCompleteStyled: _stitches_react_types_styled_component.StyledComponent<React$1.ForwardRefExoticComponent<AlertDialog.ContentProps & React$1.RefAttributes<HTMLDivElement>>, {
|
|
8390
8022
|
color?: undefined;
|
|
8391
8023
|
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
8392
8024
|
colors: {
|
|
@@ -8758,7 +8390,7 @@ declare const AlertDialogCompleteStyled: _stitches_react_types_styled_component.
|
|
|
8758
8390
|
transition: "transitions";
|
|
8759
8391
|
zIndex: "zIndices";
|
|
8760
8392
|
}, {}>>;
|
|
8761
|
-
declare const AlertDialogDescriptionStyled: _stitches_react_types_styled_component.StyledComponent<
|
|
8393
|
+
declare const AlertDialogDescriptionStyled: _stitches_react_types_styled_component.StyledComponent<React$1.ForwardRefExoticComponent<AlertDialog.DescriptionProps & React$1.RefAttributes<HTMLParagraphElement>>, {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
8762
8394
|
colors: {
|
|
8763
8395
|
brand50: string;
|
|
8764
8396
|
brand100: string;
|
|
@@ -9128,7 +8760,7 @@ declare const AlertDialogDescriptionStyled: _stitches_react_types_styled_compone
|
|
|
9128
8760
|
transition: "transitions";
|
|
9129
8761
|
zIndex: "zIndices";
|
|
9130
8762
|
}, {}>>;
|
|
9131
|
-
declare const AlertDialogTitleStyled: _stitches_react_types_styled_component.StyledComponent<
|
|
8763
|
+
declare const AlertDialogTitleStyled: _stitches_react_types_styled_component.StyledComponent<React$1.ForwardRefExoticComponent<AlertDialog.TitleProps & React$1.RefAttributes<HTMLHeadingElement>>, {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
9132
8764
|
colors: {
|
|
9133
8765
|
brand50: string;
|
|
9134
8766
|
brand100: string;
|
|
@@ -10627,7 +10259,7 @@ type AlertProps = {
|
|
|
10627
10259
|
};
|
|
10628
10260
|
declare function Alert({ color, trigger, completAlert, simpleAlert, ...props }: AlertProps): react_jsx_runtime.JSX.Element;
|
|
10629
10261
|
|
|
10630
|
-
declare const SwitchStyled: _stitches_react_types_styled_component.StyledComponent<
|
|
10262
|
+
declare const SwitchStyled: _stitches_react_types_styled_component.StyledComponent<React$1.ForwardRefExoticComponent<_radix_ui_themes.SwitchProps & React$1.RefAttributes<HTMLButtonElement>>, {
|
|
10631
10263
|
color?: "brand" | undefined;
|
|
10632
10264
|
size?: "sm" | "md" | "lg" | undefined;
|
|
10633
10265
|
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
@@ -11377,29 +11009,29 @@ declare const StepStyled: _stitches_react_types_styled_component.StyledComponent
|
|
|
11377
11009
|
zIndex: "zIndices";
|
|
11378
11010
|
}, {}>>;
|
|
11379
11011
|
type StepProps = ComponentProps<typeof StepStyled> & {
|
|
11380
|
-
children:
|
|
11012
|
+
children: React__default.ReactNode;
|
|
11381
11013
|
defaultValue: number;
|
|
11382
11014
|
};
|
|
11383
11015
|
declare function Step({ children, defaultValue, ...props }: StepProps): react_jsx_runtime.JSX.Element;
|
|
11384
11016
|
declare function StepTrigger({ value, children, currentStep, ...props }: {
|
|
11385
11017
|
value: number;
|
|
11386
|
-
children:
|
|
11018
|
+
children: React__default.ReactNode | string;
|
|
11387
11019
|
currentStep?: number;
|
|
11388
11020
|
onClick: () => void;
|
|
11389
11021
|
}): react_jsx_runtime.JSX.Element;
|
|
11390
11022
|
declare function StepContent({ value, children, ...props }: {
|
|
11391
11023
|
value: number;
|
|
11392
|
-
children:
|
|
11024
|
+
children: React__default.ReactNode;
|
|
11393
11025
|
}): react_jsx_runtime.JSX.Element;
|
|
11394
11026
|
declare function StepList({ children, currentStep, ...props }: {
|
|
11395
|
-
children:
|
|
11027
|
+
children: React__default.ReactNode;
|
|
11396
11028
|
currentStep: number;
|
|
11397
11029
|
}): react_jsx_runtime.JSX.Element;
|
|
11398
11030
|
declare function StepWrapper({ children, ...props }: {
|
|
11399
|
-
children:
|
|
11031
|
+
children: React__default.ReactNode;
|
|
11400
11032
|
}): react_jsx_runtime.JSX.Element;
|
|
11401
11033
|
|
|
11402
|
-
declare const CardStyled: _stitches_react_types_styled_component.StyledComponent<
|
|
11034
|
+
declare const CardStyled: _stitches_react_types_styled_component.StyledComponent<React__default.ForwardRefExoticComponent<_radix_ui_themes.CardProps & React__default.RefAttributes<HTMLDivElement>>, {
|
|
11403
11035
|
color?: "error" | "primary" | "disable" | undefined;
|
|
11404
11036
|
boxShadow?: boolean | "false" | "true" | undefined;
|
|
11405
11037
|
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
@@ -11773,12 +11405,12 @@ declare const CardStyled: _stitches_react_types_styled_component.StyledComponent
|
|
|
11773
11405
|
zIndex: "zIndices";
|
|
11774
11406
|
}, {}>>;
|
|
11775
11407
|
type CardProps = ComponentProps<typeof CardStyled> & {
|
|
11776
|
-
children:
|
|
11408
|
+
children: React__default.ReactNode;
|
|
11777
11409
|
as?: ElementType;
|
|
11778
11410
|
};
|
|
11779
11411
|
declare function Card({ asChild, children, ...props }: CardProps): react_jsx_runtime.JSX.Element;
|
|
11780
11412
|
|
|
11781
|
-
declare const TextareaFieldStyle: _stitches_react_types_styled_component.StyledComponent<
|
|
11413
|
+
declare const TextareaFieldStyle: _stitches_react_types_styled_component.StyledComponent<React__default.ForwardRefExoticComponent<_radix_ui_themes.TextAreaProps & React__default.RefAttributes<HTMLTextAreaElement>>, {
|
|
11782
11414
|
typography?: "tooltip" | "displayLarge" | "displayMedium" | "displaySmall" | "headline1" | "headline2" | "headline3" | "headline4" | "headline5" | "headline6" | "headline7" | "headline8" | "bodyXL" | "bodyL" | "bodyM" | "bodyS" | "bodyXS" | "bodyXXS" | "badgeLarge" | "badgeMedium" | "badgeSmall" | "badgeExtraSmall" | "popoversRegular" | "captionLarge" | "captionMedium" | "captionSmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "buttonExtraSmall" | "labelLarge" | "labelMedium" | "labelSmall" | "labelExtraSmall" | undefined;
|
|
11783
11415
|
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
11784
11416
|
colors: {
|
|
@@ -12523,7 +12155,7 @@ declare const TextareaContainer: _stitches_react_types_styled_component.StyledCo
|
|
|
12523
12155
|
zIndex: "zIndices";
|
|
12524
12156
|
}, {}>>;
|
|
12525
12157
|
type TextareaFieldProps = Omit<ComponentProps<typeof TextareaFieldStyle>, "color"> & ComponentProps<typeof TextareaContainer>;
|
|
12526
|
-
declare const TextareaField:
|
|
12158
|
+
declare const TextareaField: React__default.ForwardRefExoticComponent<Omit<TextareaFieldProps, "ref"> & React__default.RefAttributes<HTMLTextAreaElement>>;
|
|
12527
12159
|
|
|
12528
12160
|
type ToastType = 'success' | 'error' | 'warning' | 'info';
|
|
12529
12161
|
interface ToastConfig {
|
|
@@ -12568,10 +12200,10 @@ declare function ToastProvider({ children, defaultDuration, maxToasts, swipeDire
|
|
|
12568
12200
|
|
|
12569
12201
|
declare const useToast: () => ToastContextType;
|
|
12570
12202
|
|
|
12571
|
-
declare const TooltipProvider:
|
|
12572
|
-
declare const TooltipRoot:
|
|
12573
|
-
declare const TooltipTrigger:
|
|
12574
|
-
declare const TooltipContent: _stitches_react_types_styled_component.StyledComponent<
|
|
12203
|
+
declare const TooltipProvider: React$1.FC<TooltipPrimitive.TooltipProviderProps>;
|
|
12204
|
+
declare const TooltipRoot: React$1.FC<TooltipPrimitive.TooltipProps>;
|
|
12205
|
+
declare const TooltipTrigger: React$1.ForwardRefExoticComponent<TooltipPrimitive.TooltipTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
12206
|
+
declare const TooltipContent: _stitches_react_types_styled_component.StyledComponent<React$1.ForwardRefExoticComponent<TooltipPrimitive.TooltipContentProps & React$1.RefAttributes<HTMLDivElement>>, {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
12575
12207
|
colors: {
|
|
12576
12208
|
brand50: string;
|
|
12577
12209
|
brand100: string;
|
|
@@ -12942,8 +12574,8 @@ declare const TooltipContent: _stitches_react_types_styled_component.StyledCompo
|
|
|
12942
12574
|
zIndex: "zIndices";
|
|
12943
12575
|
}, {}>>;
|
|
12944
12576
|
interface TooltipProps {
|
|
12945
|
-
children:
|
|
12946
|
-
content:
|
|
12577
|
+
children: React$1.ReactNode;
|
|
12578
|
+
content: React$1.ReactNode;
|
|
12947
12579
|
delayDuration?: number;
|
|
12948
12580
|
side?: 'top' | 'right' | 'bottom' | 'left';
|
|
12949
12581
|
}
|
|
@@ -13332,9 +12964,9 @@ type MultiSelectProps = ComponentProps<typeof StyledTrigger> & {
|
|
|
13332
12964
|
width?: string;
|
|
13333
12965
|
zIndex?: string;
|
|
13334
12966
|
};
|
|
13335
|
-
declare const MultiSelect:
|
|
12967
|
+
declare const MultiSelect: React__default.ForwardRefExoticComponent<Omit<MultiSelectProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
|
13336
12968
|
|
|
13337
|
-
declare const FlexStyled: _stitches_react_types_styled_component.StyledComponent<
|
|
12969
|
+
declare const FlexStyled: _stitches_react_types_styled_component.StyledComponent<React$1.ForwardRefExoticComponent<_radix_ui_themes.FlexProps & React$1.RefAttributes<HTMLDivElement>>, {
|
|
13338
12970
|
display?: "flex" | "inline-flex" | undefined;
|
|
13339
12971
|
align?: "end" | "stretch" | "center" | "start" | "baseline" | undefined;
|
|
13340
12972
|
justify?: "end" | "center" | "start" | "between" | "around" | "evenly" | undefined;
|
|
@@ -13718,9 +13350,9 @@ type FlexProps = ComponentProps<typeof FlexStyled> & {
|
|
|
13718
13350
|
};
|
|
13719
13351
|
declare function Flex({ children, ...props }: FlexProps): react_jsx_runtime.JSX.Element;
|
|
13720
13352
|
|
|
13721
|
-
declare const Box:
|
|
13353
|
+
declare const Box: React$1.ForwardRefExoticComponent<_radix_ui_themes.BoxProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
13722
13354
|
|
|
13723
|
-
declare const GridStyled: _stitches_react_types_styled_component.StyledComponent<
|
|
13355
|
+
declare const GridStyled: _stitches_react_types_styled_component.StyledComponent<React$1.ForwardRefExoticComponent<_radix_ui_themes.GridProps & React$1.RefAttributes<HTMLDivElement>>, {
|
|
13724
13356
|
display?: "grid" | "inline-grid" | undefined;
|
|
13725
13357
|
align?: "end" | "stretch" | "center" | "start" | undefined;
|
|
13726
13358
|
justify?: "end" | "center" | "start" | "between" | undefined;
|
|
@@ -14107,7 +13739,7 @@ type GridProps = ComponentProps<typeof GridStyled> & {
|
|
|
14107
13739
|
};
|
|
14108
13740
|
declare function Grid({ children, ...props }: GridProps): react_jsx_runtime.JSX.Element;
|
|
14109
13741
|
|
|
14110
|
-
declare const ContainerStyled: _stitches_react_types_styled_component.StyledComponent<
|
|
13742
|
+
declare const ContainerStyled: _stitches_react_types_styled_component.StyledComponent<React$1.ForwardRefExoticComponent<_radix_ui_themes.ContainerProps & React$1.RefAttributes<HTMLDivElement>>, {
|
|
14111
13743
|
size?: "xs" | "sm" | "md" | "xl" | "lg" | "xxl" | "responsive" | undefined;
|
|
14112
13744
|
display?: "initial" | "none" | undefined;
|
|
14113
13745
|
align?: "left" | "right" | "center" | undefined;
|
|
@@ -14487,7 +14119,7 @@ type ContainerProps = ComponentProps<typeof ContainerStyled> & {
|
|
|
14487
14119
|
};
|
|
14488
14120
|
declare function Container({ children, ...props }: ContainerProps): react_jsx_runtime.JSX.Element;
|
|
14489
14121
|
|
|
14490
|
-
declare const SectionStyled: _stitches_react_types_styled_component.StyledComponent<
|
|
14122
|
+
declare const SectionStyled: _stitches_react_types_styled_component.StyledComponent<React$1.ForwardRefExoticComponent<_radix_ui_themes.SectionProps & React$1.RefAttributes<HTMLDivElement>>, {
|
|
14491
14123
|
size?: "xs" | "sm" | "md" | "xl" | "lg" | "xxl" | "responsive" | undefined;
|
|
14492
14124
|
display?: "initial" | "none" | undefined;
|
|
14493
14125
|
}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
@@ -14917,7 +14549,7 @@ type MultiSelectFormFieldProps = MultiSelectProps & {
|
|
|
14917
14549
|
};
|
|
14918
14550
|
declare const MultiSelectFormField: ({ name, label, required, ...rest }: MultiSelectFormFieldProps) => react_jsx_runtime.JSX.Element;
|
|
14919
14551
|
|
|
14920
|
-
type PhoneFormFieldProps =
|
|
14552
|
+
type PhoneFormFieldProps = {
|
|
14921
14553
|
name: string;
|
|
14922
14554
|
label?: string;
|
|
14923
14555
|
required?: boolean;
|