@lets-events/react 7.1.0 → 8.0.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/dist/index.d.ts CHANGED
@@ -5,10 +5,11 @@ 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
7
  import * as react from 'react';
8
- import react__default, { ComponentProps, ElementType } from 'react';
8
+ import react__default, { ComponentProps, ElementType, ReactNode } 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, Dialog, AlertDialog, Switch as Switch$1 } from '@radix-ui/themes';
11
11
  import { CSS } from '@stitches/react';
12
+ import { MaskOptions, format, unformat } from '@react-input/mask';
12
13
 
13
14
  interface IconProps extends Omit<FontAwesomeIconProps, "icon" | "size"> {
14
15
  name: IconName;
@@ -2674,7 +2675,7 @@ declare const TextFieldSlotStyled: _stitches_react_types_styled_component.Styled
2674
2675
  zIndex: "zIndices";
2675
2676
  }, {}>>;
2676
2677
  type TextFieldProps = ComponentProps<typeof TextFieldStyled> & {
2677
- addon?: string;
2678
+ addon?: ReactNode;
2678
2679
  placeholder?: string;
2679
2680
  children?: React.ReactNode;
2680
2681
  isValid?: boolean;
@@ -2682,18 +2683,21 @@ type TextFieldProps = ComponentProps<typeof TextFieldStyled> & {
2682
2683
  typography?: string;
2683
2684
  fontWeight?: 'regular' | 'medium' | 'semibold' | 'bold';
2684
2685
  textAlign?: 'left' | 'right' | 'center';
2686
+ mask?: MaskOptions;
2685
2687
  };
2686
2688
  type TextFieldSlotProps = Omit<ComponentProps<typeof TextFieldStyled>, 'color'> & {
2687
2689
  placeholder?: string;
2688
2690
  children?: React.ReactNode;
2689
2691
  position?: 'flex-start' | 'flex-end';
2690
2692
  onClick?: () => void;
2691
- color?: "error" | "success" | undefined;
2693
+ color?: 'error' | 'success' | undefined;
2692
2694
  typography?: string;
2693
2695
  fontWeight?: 'regular' | 'medium' | 'semibold' | 'bold';
2694
2696
  textAlign?: 'left' | 'right' | 'center';
2695
2697
  };
2696
- declare function TextField({ children, isValid, name, color, typography, fontWeight, addon, textAlign, ...props }: TextFieldProps): react_jsx_runtime.JSX.Element;
2698
+ declare const maskFormat: typeof format;
2699
+ declare const maskUnformat: typeof unformat;
2700
+ declare function TextField({ children, isValid, name, color, typography, fontWeight, addon, textAlign, mask, ...props }: TextFieldProps): react_jsx_runtime.JSX.Element;
2697
2701
  declare function TextFieldSlot({ children, position, onClick, typography, fontWeight, textAlign, ...props }: TextFieldSlotProps): react_jsx_runtime.JSX.Element;
2698
2702
 
2699
2703
  declare const RadioGroupStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<RadioGroup$1.RootProps & react.RefAttributes<HTMLDivElement>>, {
@@ -9848,7 +9852,7 @@ declare const AlertDialoghrStyled: _stitches_react_types_styled_component.Styled
9848
9852
  }, {}>>;
9849
9853
  type AlertProps = {
9850
9854
  trigger: React.ReactNode;
9851
- color?: 'error' | 'warning' | 'success' | 'info';
9855
+ color?: "error" | "warning" | "success" | "info";
9852
9856
  simpleAlert?: {
9853
9857
  description: string;
9854
9858
  cancel: boolean;
@@ -10637,6 +10641,1132 @@ declare function StepWrapper({ children, ...props }: {
10637
10641
  children: react__default.ReactNode;
10638
10642
  }): react_jsx_runtime.JSX.Element;
10639
10643
 
10644
+ declare const CardStyled: _stitches_react_types_styled_component.StyledComponent<react__default.ForwardRefExoticComponent<_radix_ui_themes.CardProps & react__default.RefAttributes<HTMLDivElement>>, {
10645
+ color?: "error" | "primary" | "disable" | undefined;
10646
+ boxShadow?: boolean | "false" | "true" | undefined;
10647
+ }, {}, _stitches_react_types_css_util.CSS<{}, {
10648
+ colors: {
10649
+ brand50: string;
10650
+ brand100: string;
10651
+ brand200: string;
10652
+ brand300: string;
10653
+ brand400: string;
10654
+ brand500: string;
10655
+ brand600: string;
10656
+ brand700: string;
10657
+ brand800: string;
10658
+ brand900: string;
10659
+ brand950: string;
10660
+ blue50: string;
10661
+ blue100: string;
10662
+ blue200: string;
10663
+ blue300: string;
10664
+ blue400: string;
10665
+ blue500: string;
10666
+ blue600: string;
10667
+ blue700: string;
10668
+ blue800: string;
10669
+ blue900: string;
10670
+ blue950: string;
10671
+ red50: string;
10672
+ red100: string;
10673
+ red200: string;
10674
+ red300: string;
10675
+ red400: string;
10676
+ red500: string;
10677
+ red600: string;
10678
+ red700: string;
10679
+ red800: string;
10680
+ red900: string;
10681
+ red950: string;
10682
+ purple50: string;
10683
+ purple100: string;
10684
+ purple200: string;
10685
+ purple300: string;
10686
+ purple400: string;
10687
+ purple500: string;
10688
+ purple600: string;
10689
+ purple700: string;
10690
+ purple800: string;
10691
+ purple900: string;
10692
+ purple950: string;
10693
+ yellow50: string;
10694
+ yellow100: string;
10695
+ yellow200: string;
10696
+ yellow300: string;
10697
+ yellow400: string;
10698
+ yellow500: string;
10699
+ yellow600: string;
10700
+ yellow700: string;
10701
+ yellow800: string;
10702
+ yellow900: string;
10703
+ yellow950: string;
10704
+ dark50: string;
10705
+ dark100: string;
10706
+ dark200: string;
10707
+ dark300: string;
10708
+ dark400: string;
10709
+ dark500: string;
10710
+ dark600: string;
10711
+ dark700: string;
10712
+ dark800: string;
10713
+ dark900: string;
10714
+ dark950: string;
10715
+ neutral50: string;
10716
+ neutral100: string;
10717
+ neutral200: string;
10718
+ neutral300: string;
10719
+ neutral400: string;
10720
+ neutral500: string;
10721
+ neutral600: string;
10722
+ neutral700: string;
10723
+ neutral800: string;
10724
+ neutral900: string;
10725
+ neutral950: string;
10726
+ green50: string;
10727
+ green100: string;
10728
+ green200: string;
10729
+ green300: string;
10730
+ green400: string;
10731
+ green500: string;
10732
+ green600: string;
10733
+ green700: string;
10734
+ green800: string;
10735
+ green900: string;
10736
+ green950: string;
10737
+ grey50: string;
10738
+ grey100: string;
10739
+ grey200: string;
10740
+ grey300: string;
10741
+ grey400: string;
10742
+ grey500: string;
10743
+ grey600: string;
10744
+ grey700: string;
10745
+ grey800: string;
10746
+ grey900: string;
10747
+ grey950: string;
10748
+ error50: string;
10749
+ error100: string;
10750
+ error200: string;
10751
+ error300: string;
10752
+ error400: string;
10753
+ error500: string;
10754
+ error600: string;
10755
+ error700: string;
10756
+ error800: string;
10757
+ error900: string;
10758
+ error950: string;
10759
+ success50: string;
10760
+ success100: string;
10761
+ success200: string;
10762
+ success300: string;
10763
+ success400: string;
10764
+ success500: string;
10765
+ success600: string;
10766
+ success700: string;
10767
+ success800: string;
10768
+ success900: string;
10769
+ success950: string;
10770
+ warning50: string;
10771
+ warning100: string;
10772
+ warning200: string;
10773
+ warning300: string;
10774
+ warning400: string;
10775
+ warning500: string;
10776
+ warning600: string;
10777
+ warning700: string;
10778
+ warning800: string;
10779
+ warning900: string;
10780
+ warning950: string;
10781
+ info50: string;
10782
+ info100: string;
10783
+ info200: string;
10784
+ info300: string;
10785
+ info400: string;
10786
+ info500: string;
10787
+ info600: string;
10788
+ info700: string;
10789
+ info800: string;
10790
+ info900: string;
10791
+ info950: string;
10792
+ };
10793
+ fontSizes: {
10794
+ 2: string;
10795
+ 4: string;
10796
+ 6: string;
10797
+ 8: string;
10798
+ 10: string;
10799
+ 12: string;
10800
+ 13: string;
10801
+ 14: string;
10802
+ 16: string;
10803
+ 18: string;
10804
+ 20: string;
10805
+ 22: string;
10806
+ 24: string;
10807
+ 32: string;
10808
+ 36: string;
10809
+ 40: string;
10810
+ 48: string;
10811
+ 56: string;
10812
+ 64: string;
10813
+ 72: string;
10814
+ 80: string;
10815
+ xs: string;
10816
+ sm: string;
10817
+ md: string;
10818
+ lg: string;
10819
+ '2xl': string;
10820
+ '3xl': string;
10821
+ '4xl': string;
10822
+ full: string;
10823
+ };
10824
+ fonts: {
10825
+ default: string;
10826
+ };
10827
+ fontWeights: {
10828
+ regular: string;
10829
+ medium: string;
10830
+ semibold: string;
10831
+ bold: string;
10832
+ };
10833
+ lineHeights: {
10834
+ smaller: string;
10835
+ shorter: string;
10836
+ short: string;
10837
+ base: string;
10838
+ tall: string;
10839
+ };
10840
+ radii: {
10841
+ '3xs': string;
10842
+ '2xs': string;
10843
+ xs: string;
10844
+ sm: string;
10845
+ md: string;
10846
+ lg: string;
10847
+ xl: string;
10848
+ '2xl': string;
10849
+ '3xl': string;
10850
+ '4xl': string;
10851
+ '5xl': string;
10852
+ '6xl': string;
10853
+ '7xl': string;
10854
+ '8xl': string;
10855
+ '9xl': string;
10856
+ '10xl': string;
10857
+ '11xl': string;
10858
+ '12xl': string;
10859
+ '13xl': string;
10860
+ '14xl': string;
10861
+ full: string;
10862
+ };
10863
+ space: {
10864
+ 2: string;
10865
+ 4: string;
10866
+ 6: string;
10867
+ 8: string;
10868
+ 10: string;
10869
+ 12: string;
10870
+ 13: string;
10871
+ 14: string;
10872
+ 16: string;
10873
+ 18: string;
10874
+ 20: string;
10875
+ 22: string;
10876
+ 24: string;
10877
+ 32: string;
10878
+ 36: string;
10879
+ 40: string;
10880
+ 48: string;
10881
+ 56: string;
10882
+ 64: string;
10883
+ 72: string;
10884
+ 80: string;
10885
+ full: string;
10886
+ };
10887
+ }, {
10888
+ height: "space";
10889
+ width: "space";
10890
+ gap: "space";
10891
+ gridGap: "space";
10892
+ columnGap: "space";
10893
+ gridColumnGap: "space";
10894
+ rowGap: "space";
10895
+ gridRowGap: "space";
10896
+ inset: "space";
10897
+ insetBlock: "space";
10898
+ insetBlockEnd: "space";
10899
+ insetBlockStart: "space";
10900
+ insetInline: "space";
10901
+ insetInlineEnd: "space";
10902
+ insetInlineStart: "space";
10903
+ margin: "space";
10904
+ marginTop: "space";
10905
+ marginRight: "space";
10906
+ marginBottom: "space";
10907
+ marginLeft: "space";
10908
+ marginBlock: "space";
10909
+ marginBlockEnd: "space";
10910
+ marginBlockStart: "space";
10911
+ marginInline: "space";
10912
+ marginInlineEnd: "space";
10913
+ marginInlineStart: "space";
10914
+ padding: "space";
10915
+ paddingTop: "space";
10916
+ paddingRight: "space";
10917
+ paddingBottom: "space";
10918
+ paddingLeft: "space";
10919
+ paddingBlock: "space";
10920
+ paddingBlockEnd: "space";
10921
+ paddingBlockStart: "space";
10922
+ paddingInline: "space";
10923
+ paddingInlineEnd: "space";
10924
+ paddingInlineStart: "space";
10925
+ scrollMargin: "space";
10926
+ scrollMarginTop: "space";
10927
+ scrollMarginRight: "space";
10928
+ scrollMarginBottom: "space";
10929
+ scrollMarginLeft: "space";
10930
+ scrollMarginBlock: "space";
10931
+ scrollMarginBlockEnd: "space";
10932
+ scrollMarginBlockStart: "space";
10933
+ scrollMarginInline: "space";
10934
+ scrollMarginInlineEnd: "space";
10935
+ scrollMarginInlineStart: "space";
10936
+ scrollPadding: "space";
10937
+ scrollPaddingTop: "space";
10938
+ scrollPaddingRight: "space";
10939
+ scrollPaddingBottom: "space";
10940
+ scrollPaddingLeft: "space";
10941
+ scrollPaddingBlock: "space";
10942
+ scrollPaddingBlockEnd: "space";
10943
+ scrollPaddingBlockStart: "space";
10944
+ scrollPaddingInline: "space";
10945
+ scrollPaddingInlineEnd: "space";
10946
+ scrollPaddingInlineStart: "space";
10947
+ top: "space";
10948
+ right: "space";
10949
+ bottom: "space";
10950
+ left: "space";
10951
+ fontSize: "fontSizes";
10952
+ background: "colors";
10953
+ backgroundColor: "colors";
10954
+ backgroundImage: "colors";
10955
+ borderImage: "colors";
10956
+ border: "colors";
10957
+ borderBlock: "colors";
10958
+ borderBlockEnd: "colors";
10959
+ borderBlockStart: "colors";
10960
+ borderBottom: "colors";
10961
+ borderBottomColor: "colors";
10962
+ borderColor: "colors";
10963
+ borderInline: "colors";
10964
+ borderInlineEnd: "colors";
10965
+ borderInlineStart: "colors";
10966
+ borderLeft: "colors";
10967
+ borderLeftColor: "colors";
10968
+ borderRight: "colors";
10969
+ borderRightColor: "colors";
10970
+ borderTop: "colors";
10971
+ borderTopColor: "colors";
10972
+ caretColor: "colors";
10973
+ color: "colors";
10974
+ columnRuleColor: "colors";
10975
+ outline: "colors";
10976
+ outlineColor: "colors";
10977
+ fill: "colors";
10978
+ stroke: "colors";
10979
+ textDecorationColor: "colors";
10980
+ fontFamily: "fonts";
10981
+ fontWeight: "fontWeights";
10982
+ lineHeight: "lineHeights";
10983
+ letterSpacing: "letterSpacings";
10984
+ blockSize: "sizes";
10985
+ minBlockSize: "sizes";
10986
+ maxBlockSize: "sizes";
10987
+ inlineSize: "sizes";
10988
+ minInlineSize: "sizes";
10989
+ maxInlineSize: "sizes";
10990
+ minWidth: "sizes";
10991
+ maxWidth: "sizes";
10992
+ minHeight: "sizes";
10993
+ maxHeight: "sizes";
10994
+ flexBasis: "sizes";
10995
+ gridTemplateColumns: "sizes";
10996
+ gridTemplateRows: "sizes";
10997
+ borderWidth: "borderWidths";
10998
+ borderTopWidth: "borderWidths";
10999
+ borderLeftWidth: "borderWidths";
11000
+ borderRightWidth: "borderWidths";
11001
+ borderBottomWidth: "borderWidths";
11002
+ borderStyle: "borderStyles";
11003
+ borderTopStyle: "borderStyles";
11004
+ borderLeftStyle: "borderStyles";
11005
+ borderRightStyle: "borderStyles";
11006
+ borderBottomStyle: "borderStyles";
11007
+ borderRadius: "radii";
11008
+ borderTopLeftRadius: "radii";
11009
+ borderTopRightRadius: "radii";
11010
+ borderBottomRightRadius: "radii";
11011
+ borderBottomLeftRadius: "radii";
11012
+ boxShadow: "shadows";
11013
+ textShadow: "shadows";
11014
+ transition: "transitions";
11015
+ zIndex: "zIndices";
11016
+ }, {}>>;
11017
+ declare const CardContainer: _stitches_react_types_styled_component.StyledComponent<react__default.ForwardRefExoticComponent<_radix_ui_themes.BoxProps & react__default.RefAttributes<HTMLDivElement>>, {}, {}, _stitches_react_types_css_util.CSS<{}, {
11018
+ colors: {
11019
+ brand50: string;
11020
+ brand100: string;
11021
+ brand200: string;
11022
+ brand300: string;
11023
+ brand400: string;
11024
+ brand500: string;
11025
+ brand600: string;
11026
+ brand700: string;
11027
+ brand800: string;
11028
+ brand900: string;
11029
+ brand950: string;
11030
+ blue50: string;
11031
+ blue100: string;
11032
+ blue200: string;
11033
+ blue300: string;
11034
+ blue400: string;
11035
+ blue500: string;
11036
+ blue600: string;
11037
+ blue700: string;
11038
+ blue800: string;
11039
+ blue900: string;
11040
+ blue950: string;
11041
+ red50: string;
11042
+ red100: string;
11043
+ red200: string;
11044
+ red300: string;
11045
+ red400: string;
11046
+ red500: string;
11047
+ red600: string;
11048
+ red700: string;
11049
+ red800: string;
11050
+ red900: string;
11051
+ red950: string;
11052
+ purple50: string;
11053
+ purple100: string;
11054
+ purple200: string;
11055
+ purple300: string;
11056
+ purple400: string;
11057
+ purple500: string;
11058
+ purple600: string;
11059
+ purple700: string;
11060
+ purple800: string;
11061
+ purple900: string;
11062
+ purple950: string;
11063
+ yellow50: string;
11064
+ yellow100: string;
11065
+ yellow200: string;
11066
+ yellow300: string;
11067
+ yellow400: string;
11068
+ yellow500: string;
11069
+ yellow600: string;
11070
+ yellow700: string;
11071
+ yellow800: string;
11072
+ yellow900: string;
11073
+ yellow950: string;
11074
+ dark50: string;
11075
+ dark100: string;
11076
+ dark200: string;
11077
+ dark300: string;
11078
+ dark400: string;
11079
+ dark500: string;
11080
+ dark600: string;
11081
+ dark700: string;
11082
+ dark800: string;
11083
+ dark900: string;
11084
+ dark950: string;
11085
+ neutral50: string;
11086
+ neutral100: string;
11087
+ neutral200: string;
11088
+ neutral300: string;
11089
+ neutral400: string;
11090
+ neutral500: string;
11091
+ neutral600: string;
11092
+ neutral700: string;
11093
+ neutral800: string;
11094
+ neutral900: string;
11095
+ neutral950: string;
11096
+ green50: string;
11097
+ green100: string;
11098
+ green200: string;
11099
+ green300: string;
11100
+ green400: string;
11101
+ green500: string;
11102
+ green600: string;
11103
+ green700: string;
11104
+ green800: string;
11105
+ green900: string;
11106
+ green950: string;
11107
+ grey50: string;
11108
+ grey100: string;
11109
+ grey200: string;
11110
+ grey300: string;
11111
+ grey400: string;
11112
+ grey500: string;
11113
+ grey600: string;
11114
+ grey700: string;
11115
+ grey800: string;
11116
+ grey900: string;
11117
+ grey950: string;
11118
+ error50: string;
11119
+ error100: string;
11120
+ error200: string;
11121
+ error300: string;
11122
+ error400: string;
11123
+ error500: string;
11124
+ error600: string;
11125
+ error700: string;
11126
+ error800: string;
11127
+ error900: string;
11128
+ error950: string;
11129
+ success50: string;
11130
+ success100: string;
11131
+ success200: string;
11132
+ success300: string;
11133
+ success400: string;
11134
+ success500: string;
11135
+ success600: string;
11136
+ success700: string;
11137
+ success800: string;
11138
+ success900: string;
11139
+ success950: string;
11140
+ warning50: string;
11141
+ warning100: string;
11142
+ warning200: string;
11143
+ warning300: string;
11144
+ warning400: string;
11145
+ warning500: string;
11146
+ warning600: string;
11147
+ warning700: string;
11148
+ warning800: string;
11149
+ warning900: string;
11150
+ warning950: string;
11151
+ info50: string;
11152
+ info100: string;
11153
+ info200: string;
11154
+ info300: string;
11155
+ info400: string;
11156
+ info500: string;
11157
+ info600: string;
11158
+ info700: string;
11159
+ info800: string;
11160
+ info900: string;
11161
+ info950: string;
11162
+ };
11163
+ fontSizes: {
11164
+ 2: string;
11165
+ 4: string;
11166
+ 6: string;
11167
+ 8: string;
11168
+ 10: string;
11169
+ 12: string;
11170
+ 13: string;
11171
+ 14: string;
11172
+ 16: string;
11173
+ 18: string;
11174
+ 20: string;
11175
+ 22: string;
11176
+ 24: string;
11177
+ 32: string;
11178
+ 36: string;
11179
+ 40: string;
11180
+ 48: string;
11181
+ 56: string;
11182
+ 64: string;
11183
+ 72: string;
11184
+ 80: string;
11185
+ xs: string;
11186
+ sm: string;
11187
+ md: string;
11188
+ lg: string;
11189
+ '2xl': string;
11190
+ '3xl': string;
11191
+ '4xl': string;
11192
+ full: string;
11193
+ };
11194
+ fonts: {
11195
+ default: string;
11196
+ };
11197
+ fontWeights: {
11198
+ regular: string;
11199
+ medium: string;
11200
+ semibold: string;
11201
+ bold: string;
11202
+ };
11203
+ lineHeights: {
11204
+ smaller: string;
11205
+ shorter: string;
11206
+ short: string;
11207
+ base: string;
11208
+ tall: string;
11209
+ };
11210
+ radii: {
11211
+ '3xs': string;
11212
+ '2xs': string;
11213
+ xs: string;
11214
+ sm: string;
11215
+ md: string;
11216
+ lg: string;
11217
+ xl: string;
11218
+ '2xl': string;
11219
+ '3xl': string;
11220
+ '4xl': string;
11221
+ '5xl': string;
11222
+ '6xl': string;
11223
+ '7xl': string;
11224
+ '8xl': string;
11225
+ '9xl': string;
11226
+ '10xl': string;
11227
+ '11xl': string;
11228
+ '12xl': string;
11229
+ '13xl': string;
11230
+ '14xl': string;
11231
+ full: string;
11232
+ };
11233
+ space: {
11234
+ 2: string;
11235
+ 4: string;
11236
+ 6: string;
11237
+ 8: string;
11238
+ 10: string;
11239
+ 12: string;
11240
+ 13: string;
11241
+ 14: string;
11242
+ 16: string;
11243
+ 18: string;
11244
+ 20: string;
11245
+ 22: string;
11246
+ 24: string;
11247
+ 32: string;
11248
+ 36: string;
11249
+ 40: string;
11250
+ 48: string;
11251
+ 56: string;
11252
+ 64: string;
11253
+ 72: string;
11254
+ 80: string;
11255
+ full: string;
11256
+ };
11257
+ }, {
11258
+ height: "space";
11259
+ width: "space";
11260
+ gap: "space";
11261
+ gridGap: "space";
11262
+ columnGap: "space";
11263
+ gridColumnGap: "space";
11264
+ rowGap: "space";
11265
+ gridRowGap: "space";
11266
+ inset: "space";
11267
+ insetBlock: "space";
11268
+ insetBlockEnd: "space";
11269
+ insetBlockStart: "space";
11270
+ insetInline: "space";
11271
+ insetInlineEnd: "space";
11272
+ insetInlineStart: "space";
11273
+ margin: "space";
11274
+ marginTop: "space";
11275
+ marginRight: "space";
11276
+ marginBottom: "space";
11277
+ marginLeft: "space";
11278
+ marginBlock: "space";
11279
+ marginBlockEnd: "space";
11280
+ marginBlockStart: "space";
11281
+ marginInline: "space";
11282
+ marginInlineEnd: "space";
11283
+ marginInlineStart: "space";
11284
+ padding: "space";
11285
+ paddingTop: "space";
11286
+ paddingRight: "space";
11287
+ paddingBottom: "space";
11288
+ paddingLeft: "space";
11289
+ paddingBlock: "space";
11290
+ paddingBlockEnd: "space";
11291
+ paddingBlockStart: "space";
11292
+ paddingInline: "space";
11293
+ paddingInlineEnd: "space";
11294
+ paddingInlineStart: "space";
11295
+ scrollMargin: "space";
11296
+ scrollMarginTop: "space";
11297
+ scrollMarginRight: "space";
11298
+ scrollMarginBottom: "space";
11299
+ scrollMarginLeft: "space";
11300
+ scrollMarginBlock: "space";
11301
+ scrollMarginBlockEnd: "space";
11302
+ scrollMarginBlockStart: "space";
11303
+ scrollMarginInline: "space";
11304
+ scrollMarginInlineEnd: "space";
11305
+ scrollMarginInlineStart: "space";
11306
+ scrollPadding: "space";
11307
+ scrollPaddingTop: "space";
11308
+ scrollPaddingRight: "space";
11309
+ scrollPaddingBottom: "space";
11310
+ scrollPaddingLeft: "space";
11311
+ scrollPaddingBlock: "space";
11312
+ scrollPaddingBlockEnd: "space";
11313
+ scrollPaddingBlockStart: "space";
11314
+ scrollPaddingInline: "space";
11315
+ scrollPaddingInlineEnd: "space";
11316
+ scrollPaddingInlineStart: "space";
11317
+ top: "space";
11318
+ right: "space";
11319
+ bottom: "space";
11320
+ left: "space";
11321
+ fontSize: "fontSizes";
11322
+ background: "colors";
11323
+ backgroundColor: "colors";
11324
+ backgroundImage: "colors";
11325
+ borderImage: "colors";
11326
+ border: "colors";
11327
+ borderBlock: "colors";
11328
+ borderBlockEnd: "colors";
11329
+ borderBlockStart: "colors";
11330
+ borderBottom: "colors";
11331
+ borderBottomColor: "colors";
11332
+ borderColor: "colors";
11333
+ borderInline: "colors";
11334
+ borderInlineEnd: "colors";
11335
+ borderInlineStart: "colors";
11336
+ borderLeft: "colors";
11337
+ borderLeftColor: "colors";
11338
+ borderRight: "colors";
11339
+ borderRightColor: "colors";
11340
+ borderTop: "colors";
11341
+ borderTopColor: "colors";
11342
+ caretColor: "colors";
11343
+ color: "colors";
11344
+ columnRuleColor: "colors";
11345
+ outline: "colors";
11346
+ outlineColor: "colors";
11347
+ fill: "colors";
11348
+ stroke: "colors";
11349
+ textDecorationColor: "colors";
11350
+ fontFamily: "fonts";
11351
+ fontWeight: "fontWeights";
11352
+ lineHeight: "lineHeights";
11353
+ letterSpacing: "letterSpacings";
11354
+ blockSize: "sizes";
11355
+ minBlockSize: "sizes";
11356
+ maxBlockSize: "sizes";
11357
+ inlineSize: "sizes";
11358
+ minInlineSize: "sizes";
11359
+ maxInlineSize: "sizes";
11360
+ minWidth: "sizes";
11361
+ maxWidth: "sizes";
11362
+ minHeight: "sizes";
11363
+ maxHeight: "sizes";
11364
+ flexBasis: "sizes";
11365
+ gridTemplateColumns: "sizes";
11366
+ gridTemplateRows: "sizes";
11367
+ borderWidth: "borderWidths";
11368
+ borderTopWidth: "borderWidths";
11369
+ borderLeftWidth: "borderWidths";
11370
+ borderRightWidth: "borderWidths";
11371
+ borderBottomWidth: "borderWidths";
11372
+ borderStyle: "borderStyles";
11373
+ borderTopStyle: "borderStyles";
11374
+ borderLeftStyle: "borderStyles";
11375
+ borderRightStyle: "borderStyles";
11376
+ borderBottomStyle: "borderStyles";
11377
+ borderRadius: "radii";
11378
+ borderTopLeftRadius: "radii";
11379
+ borderTopRightRadius: "radii";
11380
+ borderBottomRightRadius: "radii";
11381
+ borderBottomLeftRadius: "radii";
11382
+ boxShadow: "shadows";
11383
+ textShadow: "shadows";
11384
+ transition: "transitions";
11385
+ zIndex: "zIndices";
11386
+ }, {}>>;
11387
+ type CardProps = ComponentProps<typeof CardStyled> & {
11388
+ children: react__default.ReactNode;
11389
+ as?: ElementType;
11390
+ };
11391
+ declare function Card({ asChild, children, ...props }: CardProps): react_jsx_runtime.JSX.Element;
11392
+
11393
+ declare const TextareaFieldStyle: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<_radix_ui_themes.TextAreaProps & react.RefAttributes<HTMLTextAreaElement>>, {
11394
+ 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;
11395
+ }, {}, _stitches_react_types_css_util.CSS<{}, {
11396
+ colors: {
11397
+ brand50: string;
11398
+ brand100: string;
11399
+ brand200: string;
11400
+ brand300: string;
11401
+ brand400: string;
11402
+ brand500: string;
11403
+ brand600: string;
11404
+ brand700: string;
11405
+ brand800: string;
11406
+ brand900: string;
11407
+ brand950: string;
11408
+ blue50: string;
11409
+ blue100: string;
11410
+ blue200: string;
11411
+ blue300: string;
11412
+ blue400: string;
11413
+ blue500: string;
11414
+ blue600: string;
11415
+ blue700: string;
11416
+ blue800: string;
11417
+ blue900: string;
11418
+ blue950: string;
11419
+ red50: string;
11420
+ red100: string;
11421
+ red200: string;
11422
+ red300: string;
11423
+ red400: string;
11424
+ red500: string;
11425
+ red600: string;
11426
+ red700: string;
11427
+ red800: string;
11428
+ red900: string;
11429
+ red950: string;
11430
+ purple50: string;
11431
+ purple100: string;
11432
+ purple200: string;
11433
+ purple300: string;
11434
+ purple400: string;
11435
+ purple500: string;
11436
+ purple600: string;
11437
+ purple700: string;
11438
+ purple800: string;
11439
+ purple900: string;
11440
+ purple950: string;
11441
+ yellow50: string;
11442
+ yellow100: string;
11443
+ yellow200: string;
11444
+ yellow300: string;
11445
+ yellow400: string;
11446
+ yellow500: string;
11447
+ yellow600: string;
11448
+ yellow700: string;
11449
+ yellow800: string;
11450
+ yellow900: string;
11451
+ yellow950: string;
11452
+ dark50: string;
11453
+ dark100: string;
11454
+ dark200: string;
11455
+ dark300: string;
11456
+ dark400: string;
11457
+ dark500: string;
11458
+ dark600: string;
11459
+ dark700: string;
11460
+ dark800: string;
11461
+ dark900: string;
11462
+ dark950: string;
11463
+ neutral50: string;
11464
+ neutral100: string;
11465
+ neutral200: string;
11466
+ neutral300: string;
11467
+ neutral400: string;
11468
+ neutral500: string;
11469
+ neutral600: string;
11470
+ neutral700: string;
11471
+ neutral800: string;
11472
+ neutral900: string;
11473
+ neutral950: string;
11474
+ green50: string;
11475
+ green100: string;
11476
+ green200: string;
11477
+ green300: string;
11478
+ green400: string;
11479
+ green500: string;
11480
+ green600: string;
11481
+ green700: string;
11482
+ green800: string;
11483
+ green900: string;
11484
+ green950: string;
11485
+ grey50: string;
11486
+ grey100: string;
11487
+ grey200: string;
11488
+ grey300: string;
11489
+ grey400: string;
11490
+ grey500: string;
11491
+ grey600: string;
11492
+ grey700: string;
11493
+ grey800: string;
11494
+ grey900: string;
11495
+ grey950: string;
11496
+ error50: string;
11497
+ error100: string;
11498
+ error200: string;
11499
+ error300: string;
11500
+ error400: string;
11501
+ error500: string;
11502
+ error600: string;
11503
+ error700: string;
11504
+ error800: string;
11505
+ error900: string;
11506
+ error950: string;
11507
+ success50: string;
11508
+ success100: string;
11509
+ success200: string;
11510
+ success300: string;
11511
+ success400: string;
11512
+ success500: string;
11513
+ success600: string;
11514
+ success700: string;
11515
+ success800: string;
11516
+ success900: string;
11517
+ success950: string;
11518
+ warning50: string;
11519
+ warning100: string;
11520
+ warning200: string;
11521
+ warning300: string;
11522
+ warning400: string;
11523
+ warning500: string;
11524
+ warning600: string;
11525
+ warning700: string;
11526
+ warning800: string;
11527
+ warning900: string;
11528
+ warning950: string;
11529
+ info50: string;
11530
+ info100: string;
11531
+ info200: string;
11532
+ info300: string;
11533
+ info400: string;
11534
+ info500: string;
11535
+ info600: string;
11536
+ info700: string;
11537
+ info800: string;
11538
+ info900: string;
11539
+ info950: string;
11540
+ };
11541
+ fontSizes: {
11542
+ 2: string;
11543
+ 4: string;
11544
+ 6: string;
11545
+ 8: string;
11546
+ 10: string;
11547
+ 12: string;
11548
+ 13: string;
11549
+ 14: string;
11550
+ 16: string;
11551
+ 18: string;
11552
+ 20: string;
11553
+ 22: string;
11554
+ 24: string;
11555
+ 32: string;
11556
+ 36: string;
11557
+ 40: string;
11558
+ 48: string;
11559
+ 56: string;
11560
+ 64: string;
11561
+ 72: string;
11562
+ 80: string;
11563
+ xs: string;
11564
+ sm: string;
11565
+ md: string;
11566
+ lg: string;
11567
+ '2xl': string;
11568
+ '3xl': string;
11569
+ '4xl': string;
11570
+ full: string;
11571
+ };
11572
+ fonts: {
11573
+ default: string;
11574
+ };
11575
+ fontWeights: {
11576
+ regular: string;
11577
+ medium: string;
11578
+ semibold: string;
11579
+ bold: string;
11580
+ };
11581
+ lineHeights: {
11582
+ smaller: string;
11583
+ shorter: string;
11584
+ short: string;
11585
+ base: string;
11586
+ tall: string;
11587
+ };
11588
+ radii: {
11589
+ '3xs': string;
11590
+ '2xs': string;
11591
+ xs: string;
11592
+ sm: string;
11593
+ md: string;
11594
+ lg: string;
11595
+ xl: string;
11596
+ '2xl': string;
11597
+ '3xl': string;
11598
+ '4xl': string;
11599
+ '5xl': string;
11600
+ '6xl': string;
11601
+ '7xl': string;
11602
+ '8xl': string;
11603
+ '9xl': string;
11604
+ '10xl': string;
11605
+ '11xl': string;
11606
+ '12xl': string;
11607
+ '13xl': string;
11608
+ '14xl': string;
11609
+ full: string;
11610
+ };
11611
+ space: {
11612
+ 2: string;
11613
+ 4: string;
11614
+ 6: string;
11615
+ 8: string;
11616
+ 10: string;
11617
+ 12: string;
11618
+ 13: string;
11619
+ 14: string;
11620
+ 16: string;
11621
+ 18: string;
11622
+ 20: string;
11623
+ 22: string;
11624
+ 24: string;
11625
+ 32: string;
11626
+ 36: string;
11627
+ 40: string;
11628
+ 48: string;
11629
+ 56: string;
11630
+ 64: string;
11631
+ 72: string;
11632
+ 80: string;
11633
+ full: string;
11634
+ };
11635
+ }, {
11636
+ height: "space";
11637
+ width: "space";
11638
+ gap: "space";
11639
+ gridGap: "space";
11640
+ columnGap: "space";
11641
+ gridColumnGap: "space";
11642
+ rowGap: "space";
11643
+ gridRowGap: "space";
11644
+ inset: "space";
11645
+ insetBlock: "space";
11646
+ insetBlockEnd: "space";
11647
+ insetBlockStart: "space";
11648
+ insetInline: "space";
11649
+ insetInlineEnd: "space";
11650
+ insetInlineStart: "space";
11651
+ margin: "space";
11652
+ marginTop: "space";
11653
+ marginRight: "space";
11654
+ marginBottom: "space";
11655
+ marginLeft: "space";
11656
+ marginBlock: "space";
11657
+ marginBlockEnd: "space";
11658
+ marginBlockStart: "space";
11659
+ marginInline: "space";
11660
+ marginInlineEnd: "space";
11661
+ marginInlineStart: "space";
11662
+ padding: "space";
11663
+ paddingTop: "space";
11664
+ paddingRight: "space";
11665
+ paddingBottom: "space";
11666
+ paddingLeft: "space";
11667
+ paddingBlock: "space";
11668
+ paddingBlockEnd: "space";
11669
+ paddingBlockStart: "space";
11670
+ paddingInline: "space";
11671
+ paddingInlineEnd: "space";
11672
+ paddingInlineStart: "space";
11673
+ scrollMargin: "space";
11674
+ scrollMarginTop: "space";
11675
+ scrollMarginRight: "space";
11676
+ scrollMarginBottom: "space";
11677
+ scrollMarginLeft: "space";
11678
+ scrollMarginBlock: "space";
11679
+ scrollMarginBlockEnd: "space";
11680
+ scrollMarginBlockStart: "space";
11681
+ scrollMarginInline: "space";
11682
+ scrollMarginInlineEnd: "space";
11683
+ scrollMarginInlineStart: "space";
11684
+ scrollPadding: "space";
11685
+ scrollPaddingTop: "space";
11686
+ scrollPaddingRight: "space";
11687
+ scrollPaddingBottom: "space";
11688
+ scrollPaddingLeft: "space";
11689
+ scrollPaddingBlock: "space";
11690
+ scrollPaddingBlockEnd: "space";
11691
+ scrollPaddingBlockStart: "space";
11692
+ scrollPaddingInline: "space";
11693
+ scrollPaddingInlineEnd: "space";
11694
+ scrollPaddingInlineStart: "space";
11695
+ top: "space";
11696
+ right: "space";
11697
+ bottom: "space";
11698
+ left: "space";
11699
+ fontSize: "fontSizes";
11700
+ background: "colors";
11701
+ backgroundColor: "colors";
11702
+ backgroundImage: "colors";
11703
+ borderImage: "colors";
11704
+ border: "colors";
11705
+ borderBlock: "colors";
11706
+ borderBlockEnd: "colors";
11707
+ borderBlockStart: "colors";
11708
+ borderBottom: "colors";
11709
+ borderBottomColor: "colors";
11710
+ borderColor: "colors";
11711
+ borderInline: "colors";
11712
+ borderInlineEnd: "colors";
11713
+ borderInlineStart: "colors";
11714
+ borderLeft: "colors";
11715
+ borderLeftColor: "colors";
11716
+ borderRight: "colors";
11717
+ borderRightColor: "colors";
11718
+ borderTop: "colors";
11719
+ borderTopColor: "colors";
11720
+ caretColor: "colors";
11721
+ color: "colors";
11722
+ columnRuleColor: "colors";
11723
+ outline: "colors";
11724
+ outlineColor: "colors";
11725
+ fill: "colors";
11726
+ stroke: "colors";
11727
+ textDecorationColor: "colors";
11728
+ fontFamily: "fonts";
11729
+ fontWeight: "fontWeights";
11730
+ lineHeight: "lineHeights";
11731
+ letterSpacing: "letterSpacings";
11732
+ blockSize: "sizes";
11733
+ minBlockSize: "sizes";
11734
+ maxBlockSize: "sizes";
11735
+ inlineSize: "sizes";
11736
+ minInlineSize: "sizes";
11737
+ maxInlineSize: "sizes";
11738
+ minWidth: "sizes";
11739
+ maxWidth: "sizes";
11740
+ minHeight: "sizes";
11741
+ maxHeight: "sizes";
11742
+ flexBasis: "sizes";
11743
+ gridTemplateColumns: "sizes";
11744
+ gridTemplateRows: "sizes";
11745
+ borderWidth: "borderWidths";
11746
+ borderTopWidth: "borderWidths";
11747
+ borderLeftWidth: "borderWidths";
11748
+ borderRightWidth: "borderWidths";
11749
+ borderBottomWidth: "borderWidths";
11750
+ borderStyle: "borderStyles";
11751
+ borderTopStyle: "borderStyles";
11752
+ borderLeftStyle: "borderStyles";
11753
+ borderRightStyle: "borderStyles";
11754
+ borderBottomStyle: "borderStyles";
11755
+ borderRadius: "radii";
11756
+ borderTopLeftRadius: "radii";
11757
+ borderTopRightRadius: "radii";
11758
+ borderBottomRightRadius: "radii";
11759
+ borderBottomLeftRadius: "radii";
11760
+ boxShadow: "shadows";
11761
+ textShadow: "shadows";
11762
+ transition: "transitions";
11763
+ zIndex: "zIndices";
11764
+ }, {}>>;
11765
+ type TextareaFieldProps = ComponentProps<typeof TextareaFieldStyle> & {
11766
+ limit: number;
11767
+ };
11768
+ declare function TextareaField({ maxLength, ...props }: TextareaFieldProps): react_jsx_runtime.JSX.Element;
11769
+
10640
11770
  declare const FlexStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<_radix_ui_themes.FlexProps & react.RefAttributes<HTMLDivElement>>, {
10641
11771
  display?: "flex" | "inline-flex" | undefined;
10642
11772
  align?: "end" | "stretch" | "center" | "start" | "baseline" | undefined;
@@ -12169,4 +13299,4 @@ type SectionProps = ComponentProps<typeof SectionStyled> & {
12169
13299
  };
12170
13300
  declare function Section({ children, ...props }: SectionProps): react_jsx_runtime.JSX.Element;
12171
13301
 
12172
- export { Alert, AlertDialogCompleteStyled, AlertDialogDescriptionStyled, AlertDialogRowStyled, AlertDialogSimpleStyled, AlertDialogSubtitleStyled, AlertDialogTitleStyled, AlertDialoghrStyled, type AlertProps, Avatar, type AvatarProps, AvatarStyled, Badge, type BadgeProps, BadgeStyled, Box, Button, ButtonGroup, type ButtonGroupProps, ButtonGroupStyled, ButtonItem, type ButtonItemProps, ButtonItemStyled, type ButtonProps, Calendar, type CalendarProps, CheckboxGroup, type CheckboxGroupProps, CheckboxGroupStyled, CheckboxItem, type CheckboxItemProps, Container, type ContainerProps, ContainerStyled, DropdownMenu, DropdownMenuItem, type DropdownMenuItemProps, type DropdownMenuProps, Filter, FilterItem, type FilterItemProps, type FilterProps, Flex, type FlexProps, FlexStyled, Grid, type GridProps, GridStyled, Icon, Modal, ModalContentStyled, type ModalProps, ModalStyled, ModalTitleStyled, RadioGroup, type RadioGroupProps, RadioGroupStyled, RadioItem, type RadioItemProps, Section, type SectionProps, SectionStyled, Step, StepContent, StepList, type StepProps, StepStyled, StepTrigger, StepWrapper, Switch, type SwitchProps, SwitchStyled, Text, TextField, type TextFieldProps, TextFieldSlot, type TextFieldSlotProps, TextFieldSlotStyled, TextFieldStyled, type TextProps, TextStyle, TimePicker, TimePickerDropdownStyled, TimePickerFooterStyled, type TimePickerProps, TimePickerStyled, TimerPickerContentStyled };
13302
+ export { Alert, AlertDialogCompleteStyled, AlertDialogDescriptionStyled, AlertDialogRowStyled, AlertDialogSimpleStyled, AlertDialogSubtitleStyled, AlertDialogTitleStyled, AlertDialoghrStyled, type AlertProps, Avatar, type AvatarProps, AvatarStyled, Badge, type BadgeProps, BadgeStyled, Box, Button, ButtonGroup, type ButtonGroupProps, ButtonGroupStyled, ButtonItem, type ButtonItemProps, ButtonItemStyled, type ButtonProps, Calendar, type CalendarProps, Card, CardContainer, type CardProps, CardStyled, CheckboxGroup, type CheckboxGroupProps, CheckboxGroupStyled, CheckboxItem, type CheckboxItemProps, Container, type ContainerProps, ContainerStyled, DropdownMenu, DropdownMenuItem, type DropdownMenuItemProps, type DropdownMenuProps, Filter, FilterItem, type FilterItemProps, type FilterProps, Flex, type FlexProps, FlexStyled, Grid, type GridProps, GridStyled, Icon, Modal, ModalContentStyled, type ModalProps, ModalStyled, ModalTitleStyled, RadioGroup, type RadioGroupProps, RadioGroupStyled, RadioItem, type RadioItemProps, Section, type SectionProps, SectionStyled, Step, StepContent, StepList, type StepProps, StepStyled, StepTrigger, StepWrapper, Switch, type SwitchProps, SwitchStyled, Text, TextField, type TextFieldProps, TextFieldSlot, type TextFieldSlotProps, TextFieldSlotStyled, TextFieldStyled, type TextProps, TextStyle, TextareaField, type TextareaFieldProps, TextareaFieldStyle, TimePicker, TimePickerDropdownStyled, TimePickerFooterStyled, type TimePickerProps, TimePickerStyled, TimerPickerContentStyled, maskFormat, maskUnformat };