@lets-events/react 11.6.2 → 11.6.3

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.
Files changed (75) hide show
  1. package/.eslintrc.json +2 -2
  2. package/.turbo/turbo-build.log +20 -18
  3. package/CHANGELOG.md +6 -0
  4. package/dist/index.d.mts +33 -5
  5. package/dist/index.d.ts +33 -5
  6. package/dist/index.js +9 -3
  7. package/dist/index.mjs +7 -3
  8. package/package.json +1 -1
  9. package/src/components/Alert.tsx +303 -303
  10. package/src/components/Avatar.tsx +55 -55
  11. package/src/components/Badge.tsx +125 -125
  12. package/src/components/Box.tsx +3 -3
  13. package/src/components/Button/index.tsx +16 -16
  14. package/src/components/Button/styledComponents.ts +287 -287
  15. package/src/components/ButtonGroup.tsx +484 -484
  16. package/src/components/Calendar/index.tsx +136 -136
  17. package/src/components/Calendar/styledComponents.ts +209 -209
  18. package/src/components/Card.tsx +48 -48
  19. package/src/components/CheckboxGroup.tsx +176 -176
  20. package/src/components/Container.tsx +39 -39
  21. package/src/components/Drawer/index.tsx +48 -48
  22. package/src/components/Drawer/styledComponents.ts +46 -46
  23. package/src/components/Dropdown.tsx +194 -192
  24. package/src/components/Filter.tsx +164 -164
  25. package/src/components/Flex.tsx +118 -118
  26. package/src/components/FormFields/AddressFormFields/CityFormField.tsx +111 -111
  27. package/src/components/FormFields/AddressFormFields/CountryFormField.tsx +33 -33
  28. package/src/components/FormFields/AddressFormFields/PostalCodeFormField.tsx +45 -45
  29. package/src/components/FormFields/AddressFormFields/StateFormField.tsx +32 -32
  30. package/src/components/FormFields/AddressFormFields/index.tsx +139 -139
  31. package/src/components/FormFields/BirthDateFormField.tsx +87 -87
  32. package/src/components/FormFields/CNPJFormField.tsx +89 -89
  33. package/src/components/FormFields/CPFFormField.tsx +79 -79
  34. package/src/components/FormFields/CheckboxGroupFormField.tsx +90 -90
  35. package/src/components/FormFields/ErrorFormMessage.tsx +36 -36
  36. package/src/components/FormFields/Form.tsx +29 -29
  37. package/src/components/FormFields/FormLabel.tsx +29 -29
  38. package/src/components/FormFields/IdentityDocumentNumberFormField.tsx +42 -42
  39. package/src/components/FormFields/MultiSelectFormField.tsx +59 -59
  40. package/src/components/FormFields/PhoneFormField.tsx +130 -130
  41. package/src/components/FormFields/RadioGroupFormField.tsx +84 -84
  42. package/src/components/FormFields/SelectFormField.tsx +93 -93
  43. package/src/components/FormFields/TextAreaFormField.tsx +48 -48
  44. package/src/components/FormFields/TextFormField.tsx +76 -76
  45. package/src/components/Grid.tsx +137 -137
  46. package/src/components/Icon.tsx +47 -47
  47. package/src/components/MenuDropdown/index.tsx +30 -30
  48. package/src/components/MenuDropdown/styledComponents.ts +31 -31
  49. package/src/components/Modal.tsx +90 -90
  50. package/src/components/MultiSelect.tsx +218 -218
  51. package/src/components/RadioGroup.tsx +210 -210
  52. package/src/components/Section.tsx +33 -33
  53. package/src/components/Step.tsx +164 -164
  54. package/src/components/Switch.tsx +108 -108
  55. package/src/components/Text.tsx +38 -38
  56. package/src/components/TextField.tsx +312 -312
  57. package/src/components/TextareaField.tsx +128 -128
  58. package/src/components/TimePicker.tsx +298 -298
  59. package/src/components/Toast/components/ToastItem.tsx +41 -41
  60. package/src/components/Toast/components/ToastProvider.tsx +63 -63
  61. package/src/components/Toast/hooks/useToast.ts +12 -12
  62. package/src/components/Toast/index.tsx +5 -5
  63. package/src/components/Toast/styles/index.ts +135 -135
  64. package/src/components/Toast/types/index.ts +46 -46
  65. package/src/components/Tooltip/index.tsx +66 -66
  66. package/src/components/Tooltip/styles.ts +77 -77
  67. package/src/hooks/useCountries.ts +41 -41
  68. package/src/hooks/useOnClickOutside.tsx +20 -20
  69. package/src/index.tsx +54 -52
  70. package/src/styles/index.ts +38 -38
  71. package/src/types/typographyValues.ts +178 -178
  72. package/src/utils/getNestedValue.ts +3 -3
  73. package/src/utils/states.ts +29 -29
  74. package/tsconfig.json +3 -3
  75. package/dist/index.css +0 -171
package/.eslintrc.json CHANGED
@@ -1,3 +1,3 @@
1
- {
2
- "extends": "@lets-events/eslint-config"
1
+ {
2
+ "extends": "@lets-events/eslint-config"
3
3
  }
@@ -1,18 +1,20 @@
1
-
2
- > @lets-events/react@11.6.2 build
3
- > tsup src/index.tsx --format esm,cjs --dts --external react
4
-
5
- CLI Building entry: src/index.tsx
6
- CLI Using tsconfig: tsconfig.json
7
- CLI tsup v8.4.0
8
- CLI Target: es6
9
- ESM Build start
10
- CJS Build start
11
- CJS dist\index.js 330.71 KB
12
- CJS ⚡️ Build success in 251ms
13
- ESM dist\index.mjs 318.46 KB
14
- ESM ⚡️ Build success in 252ms
15
- DTS Build start
16
- DTS ⚡️ Build success in 4430ms
17
- DTS dist\index.d.mts 391.83 KB
18
- DTS dist\index.d.ts 391.83 KB
1
+
2
+
3
+ > @lets-events/react@11.6.3 build
4
+ > tsup src/index.tsx --format esm,cjs --dts --external react
5
+
6
+ CLI Building entry: src/index.tsx
7
+ CLI Using tsconfig: tsconfig.json
8
+ CLI tsup v8.4.0
9
+ CLI Target: es6
10
+ ESM Build start
11
+ CJS Build start
12
+ CJS dist/index.js 330.83 KB
13
+ CJS ⚡️ Build success in 388ms
14
+ ESM dist/index.mjs 318.50 KB
15
+ ESM ⚡️ Build success in 389ms
16
+ DTS Build start
17
+ DTS ⚡️ Build success in 6754ms
18
+ DTS dist/index.d.mts 392.72 KB
19
+ DTS dist/index.d.ts 392.72 KB
20
+ ⠙
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @lets-events/react
2
2
 
3
+ ## 11.6.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Dropdown portal adjustment
8
+
3
9
  ## 11.6.2
4
10
 
5
11
  ### Patch Changes
package/dist/index.d.mts CHANGED
@@ -14973,14 +14973,14 @@ type AddressFormFieldsProps = {
14973
14973
  };
14974
14974
  declare function AddressFormFields({ name, label, required, layout, }: AddressFormFieldsProps): react_jsx_runtime.JSX.Element;
14975
14975
 
14976
- type Option$1 = {
14976
+ type Option$2 = {
14977
14977
  label: string;
14978
14978
  value: string;
14979
14979
  };
14980
14980
  type RadioGroupFormFieldProps = {
14981
14981
  name: string;
14982
14982
  label: string;
14983
- options: Option$1[];
14983
+ options: Option$2[];
14984
14984
  required?: boolean;
14985
14985
  defaultValue?: string;
14986
14986
  validationErrorMessage?: string;
@@ -14990,14 +14990,14 @@ type RadioGroupFormFieldProps = {
14990
14990
  };
14991
14991
  declare const RadioGroupFormField: ({ name, label, options, required, defaultValue, validationErrorMessage, color, fontWeight, disabled, }: RadioGroupFormFieldProps) => react_jsx_runtime.JSX.Element;
14992
14992
 
14993
- type Option = {
14993
+ type Option$1 = {
14994
14994
  label: string;
14995
14995
  value: string;
14996
14996
  };
14997
14997
  type CheckboxGroupFormFieldProps = {
14998
14998
  name: string;
14999
14999
  label: string;
15000
- options: Option[];
15000
+ options: Option$1[];
15001
15001
  required?: boolean;
15002
15002
  validationErrorMessage?: string;
15003
15003
  defaultValue?: string[];
@@ -15007,4 +15007,32 @@ type CheckboxGroupFormFieldProps = {
15007
15007
  };
15008
15008
  declare const CheckboxGroupFormField: ({ name, label, options, required, validationErrorMessage, defaultValue, color, fontWeight, disabled, }: CheckboxGroupFormFieldProps) => react_jsx_runtime.JSX.Element;
15009
15009
 
15010
- export { AddressFormFields, Alert, AlertDialogCompleteStyled, AlertDialogDescriptionStyled, AlertDialogRowStyled, AlertDialogSimpleStyled, AlertDialogSubtitleStyled, AlertDialogTitleStyled, AlertDialoghrStyled, type AlertProps, Avatar, type AvatarProps, AvatarStyled, Badge, type BadgeProps, BadgeStyled, BirthDateFormField, Box, Button, ButtonGroup, type ButtonGroupProps, ButtonGroupStyled, ButtonItem, type ButtonItemProps, ButtonItemStyled, type ButtonProps, CNPJFormField, CPFFormField, Calendar, type CalendarProps, Card, type CardProps, CardStyled, CheckboxGroup, CheckboxGroupFormField, type CheckboxGroupFormFieldProps, type CheckboxGroupProps, CheckboxGroupStyled, CheckboxItem, type CheckboxItemProps, Container, type ContainerProps, ContainerStyled, Drawer, type DrawerProps, DropdownMenu, DropdownMenuItem, type DropdownMenuItemProps, type DropdownMenuProps, ErrorFormMessage, type ErrorFormMessageProps, Filter, FilterItem, type FilterItemProps, type FilterProps, Flex, type FlexProps, FlexStyled, Form, FormLabel, type FormLabelProps, type FormProps, Grid, type GridProps, GridStyled, Icon, IdentityDocumentNumberFormField, InputStyled, MenuDropdown, type MenuDropdownProps, Modal, type ModalProps, MultiSelect, MultiSelectFormField, type MultiSelectFormFieldProps, type MultiSelectProps, PhoneFormField, type PhoneFormFieldProps, RadioGroup, RadioGroupFormField, type RadioGroupFormFieldProps, type RadioGroupProps, RadioGroupStyled, RadioItem, type RadioItemProps, Section, type SectionProps, SectionStyled, Step, StepContent, StepList, type StepProps, StepStyled, StepTrigger, StepWrapper, Switch, type SwitchProps, SwitchStyled, Text, TextAreaFormField, type TextAreaFormFieldProps, TextField, type TextFieldProps, TextFieldSlot, type TextFieldSlotProps, TextFieldSlotStyled, TextFieldStyled, TextFormField, type TextFormFieldProps, type TextProps, TextStyle, TextareaField, type TextareaFieldProps, TextareaFieldStyle, TimePicker, TimePickerButtonStyled, TimePickerDropdownStyled, TimePickerFooterStyled, type TimePickerProps, TimePickerStyled, TimerPickerContentStyled, type Toast, type ToastComponentProps, type ToastConfig, type ToastContextType, ToastItem, type ToastOptions, ToastProvider, type ToastProviderProps, type ToastType, type ToasterShowOptions, Tooltip, TooltipContent, type TooltipProps, TooltipProvider, TooltipRoot, TooltipTrigger, isValidCNPJ, maskFormat, maskUnformat, useToast };
15010
+ type CountryFormFieldProps = {
15011
+ name: string;
15012
+ label: string;
15013
+ required?: boolean;
15014
+ placeholder?: string;
15015
+ language?: "es" | "pt-BR" | "en";
15016
+ haveError?: boolean;
15017
+ };
15018
+ declare function CountryFormField({ name, label, required, language, }: CountryFormFieldProps): react_jsx_runtime.JSX.Element;
15019
+
15020
+ type Option = {
15021
+ label: string;
15022
+ value: string;
15023
+ };
15024
+ type SelectFormFieldProps = {
15025
+ name: string;
15026
+ label: string;
15027
+ required?: boolean;
15028
+ placeholder?: string;
15029
+ options: Option[];
15030
+ validation?: {
15031
+ validate?: (value: string) => boolean | string;
15032
+ };
15033
+ validationErrorMessage?: string;
15034
+ defaultValue?: string;
15035
+ };
15036
+ declare const SelectFormField: ({ name, label, required, placeholder, options, validation, validationErrorMessage, defaultValue, }: SelectFormFieldProps) => react_jsx_runtime.JSX.Element;
15037
+
15038
+ export { AddressFormFields, Alert, AlertDialogCompleteStyled, AlertDialogDescriptionStyled, AlertDialogRowStyled, AlertDialogSimpleStyled, AlertDialogSubtitleStyled, AlertDialogTitleStyled, AlertDialoghrStyled, type AlertProps, Avatar, type AvatarProps, AvatarStyled, Badge, type BadgeProps, BadgeStyled, BirthDateFormField, Box, Button, ButtonGroup, type ButtonGroupProps, ButtonGroupStyled, ButtonItem, type ButtonItemProps, ButtonItemStyled, type ButtonProps, CNPJFormField, CPFFormField, Calendar, type CalendarProps, Card, type CardProps, CardStyled, CheckboxGroup, CheckboxGroupFormField, type CheckboxGroupFormFieldProps, type CheckboxGroupProps, CheckboxGroupStyled, CheckboxItem, type CheckboxItemProps, Container, type ContainerProps, ContainerStyled, CountryFormField, Drawer, type DrawerProps, DropdownMenu, DropdownMenuItem, type DropdownMenuItemProps, type DropdownMenuProps, ErrorFormMessage, type ErrorFormMessageProps, Filter, FilterItem, type FilterItemProps, type FilterProps, Flex, type FlexProps, FlexStyled, Form, FormLabel, type FormLabelProps, type FormProps, Grid, type GridProps, GridStyled, Icon, IdentityDocumentNumberFormField, InputStyled, MenuDropdown, type MenuDropdownProps, Modal, type ModalProps, MultiSelect, MultiSelectFormField, type MultiSelectFormFieldProps, type MultiSelectProps, PhoneFormField, type PhoneFormFieldProps, RadioGroup, RadioGroupFormField, type RadioGroupFormFieldProps, type RadioGroupProps, RadioGroupStyled, RadioItem, type RadioItemProps, Section, type SectionProps, SectionStyled, SelectFormField, type SelectFormFieldProps, Step, StepContent, StepList, type StepProps, StepStyled, StepTrigger, StepWrapper, Switch, type SwitchProps, SwitchStyled, Text, TextAreaFormField, type TextAreaFormFieldProps, TextField, type TextFieldProps, TextFieldSlot, type TextFieldSlotProps, TextFieldSlotStyled, TextFieldStyled, TextFormField, type TextFormFieldProps, type TextProps, TextStyle, TextareaField, type TextareaFieldProps, TextareaFieldStyle, TimePicker, TimePickerButtonStyled, TimePickerDropdownStyled, TimePickerFooterStyled, type TimePickerProps, TimePickerStyled, TimerPickerContentStyled, type Toast, type ToastComponentProps, type ToastConfig, type ToastContextType, ToastItem, type ToastOptions, ToastProvider, type ToastProviderProps, type ToastType, type ToasterShowOptions, Tooltip, TooltipContent, type TooltipProps, TooltipProvider, TooltipRoot, TooltipTrigger, isValidCNPJ, maskFormat, maskUnformat, useToast };
package/dist/index.d.ts CHANGED
@@ -14973,14 +14973,14 @@ type AddressFormFieldsProps = {
14973
14973
  };
14974
14974
  declare function AddressFormFields({ name, label, required, layout, }: AddressFormFieldsProps): react_jsx_runtime.JSX.Element;
14975
14975
 
14976
- type Option$1 = {
14976
+ type Option$2 = {
14977
14977
  label: string;
14978
14978
  value: string;
14979
14979
  };
14980
14980
  type RadioGroupFormFieldProps = {
14981
14981
  name: string;
14982
14982
  label: string;
14983
- options: Option$1[];
14983
+ options: Option$2[];
14984
14984
  required?: boolean;
14985
14985
  defaultValue?: string;
14986
14986
  validationErrorMessage?: string;
@@ -14990,14 +14990,14 @@ type RadioGroupFormFieldProps = {
14990
14990
  };
14991
14991
  declare const RadioGroupFormField: ({ name, label, options, required, defaultValue, validationErrorMessage, color, fontWeight, disabled, }: RadioGroupFormFieldProps) => react_jsx_runtime.JSX.Element;
14992
14992
 
14993
- type Option = {
14993
+ type Option$1 = {
14994
14994
  label: string;
14995
14995
  value: string;
14996
14996
  };
14997
14997
  type CheckboxGroupFormFieldProps = {
14998
14998
  name: string;
14999
14999
  label: string;
15000
- options: Option[];
15000
+ options: Option$1[];
15001
15001
  required?: boolean;
15002
15002
  validationErrorMessage?: string;
15003
15003
  defaultValue?: string[];
@@ -15007,4 +15007,32 @@ type CheckboxGroupFormFieldProps = {
15007
15007
  };
15008
15008
  declare const CheckboxGroupFormField: ({ name, label, options, required, validationErrorMessage, defaultValue, color, fontWeight, disabled, }: CheckboxGroupFormFieldProps) => react_jsx_runtime.JSX.Element;
15009
15009
 
15010
- export { AddressFormFields, Alert, AlertDialogCompleteStyled, AlertDialogDescriptionStyled, AlertDialogRowStyled, AlertDialogSimpleStyled, AlertDialogSubtitleStyled, AlertDialogTitleStyled, AlertDialoghrStyled, type AlertProps, Avatar, type AvatarProps, AvatarStyled, Badge, type BadgeProps, BadgeStyled, BirthDateFormField, Box, Button, ButtonGroup, type ButtonGroupProps, ButtonGroupStyled, ButtonItem, type ButtonItemProps, ButtonItemStyled, type ButtonProps, CNPJFormField, CPFFormField, Calendar, type CalendarProps, Card, type CardProps, CardStyled, CheckboxGroup, CheckboxGroupFormField, type CheckboxGroupFormFieldProps, type CheckboxGroupProps, CheckboxGroupStyled, CheckboxItem, type CheckboxItemProps, Container, type ContainerProps, ContainerStyled, Drawer, type DrawerProps, DropdownMenu, DropdownMenuItem, type DropdownMenuItemProps, type DropdownMenuProps, ErrorFormMessage, type ErrorFormMessageProps, Filter, FilterItem, type FilterItemProps, type FilterProps, Flex, type FlexProps, FlexStyled, Form, FormLabel, type FormLabelProps, type FormProps, Grid, type GridProps, GridStyled, Icon, IdentityDocumentNumberFormField, InputStyled, MenuDropdown, type MenuDropdownProps, Modal, type ModalProps, MultiSelect, MultiSelectFormField, type MultiSelectFormFieldProps, type MultiSelectProps, PhoneFormField, type PhoneFormFieldProps, RadioGroup, RadioGroupFormField, type RadioGroupFormFieldProps, type RadioGroupProps, RadioGroupStyled, RadioItem, type RadioItemProps, Section, type SectionProps, SectionStyled, Step, StepContent, StepList, type StepProps, StepStyled, StepTrigger, StepWrapper, Switch, type SwitchProps, SwitchStyled, Text, TextAreaFormField, type TextAreaFormFieldProps, TextField, type TextFieldProps, TextFieldSlot, type TextFieldSlotProps, TextFieldSlotStyled, TextFieldStyled, TextFormField, type TextFormFieldProps, type TextProps, TextStyle, TextareaField, type TextareaFieldProps, TextareaFieldStyle, TimePicker, TimePickerButtonStyled, TimePickerDropdownStyled, TimePickerFooterStyled, type TimePickerProps, TimePickerStyled, TimerPickerContentStyled, type Toast, type ToastComponentProps, type ToastConfig, type ToastContextType, ToastItem, type ToastOptions, ToastProvider, type ToastProviderProps, type ToastType, type ToasterShowOptions, Tooltip, TooltipContent, type TooltipProps, TooltipProvider, TooltipRoot, TooltipTrigger, isValidCNPJ, maskFormat, maskUnformat, useToast };
15010
+ type CountryFormFieldProps = {
15011
+ name: string;
15012
+ label: string;
15013
+ required?: boolean;
15014
+ placeholder?: string;
15015
+ language?: "es" | "pt-BR" | "en";
15016
+ haveError?: boolean;
15017
+ };
15018
+ declare function CountryFormField({ name, label, required, language, }: CountryFormFieldProps): react_jsx_runtime.JSX.Element;
15019
+
15020
+ type Option = {
15021
+ label: string;
15022
+ value: string;
15023
+ };
15024
+ type SelectFormFieldProps = {
15025
+ name: string;
15026
+ label: string;
15027
+ required?: boolean;
15028
+ placeholder?: string;
15029
+ options: Option[];
15030
+ validation?: {
15031
+ validate?: (value: string) => boolean | string;
15032
+ };
15033
+ validationErrorMessage?: string;
15034
+ defaultValue?: string;
15035
+ };
15036
+ declare const SelectFormField: ({ name, label, required, placeholder, options, validation, validationErrorMessage, defaultValue, }: SelectFormFieldProps) => react_jsx_runtime.JSX.Element;
15037
+
15038
+ export { AddressFormFields, Alert, AlertDialogCompleteStyled, AlertDialogDescriptionStyled, AlertDialogRowStyled, AlertDialogSimpleStyled, AlertDialogSubtitleStyled, AlertDialogTitleStyled, AlertDialoghrStyled, type AlertProps, Avatar, type AvatarProps, AvatarStyled, Badge, type BadgeProps, BadgeStyled, BirthDateFormField, Box, Button, ButtonGroup, type ButtonGroupProps, ButtonGroupStyled, ButtonItem, type ButtonItemProps, ButtonItemStyled, type ButtonProps, CNPJFormField, CPFFormField, Calendar, type CalendarProps, Card, type CardProps, CardStyled, CheckboxGroup, CheckboxGroupFormField, type CheckboxGroupFormFieldProps, type CheckboxGroupProps, CheckboxGroupStyled, CheckboxItem, type CheckboxItemProps, Container, type ContainerProps, ContainerStyled, CountryFormField, Drawer, type DrawerProps, DropdownMenu, DropdownMenuItem, type DropdownMenuItemProps, type DropdownMenuProps, ErrorFormMessage, type ErrorFormMessageProps, Filter, FilterItem, type FilterItemProps, type FilterProps, Flex, type FlexProps, FlexStyled, Form, FormLabel, type FormLabelProps, type FormProps, Grid, type GridProps, GridStyled, Icon, IdentityDocumentNumberFormField, InputStyled, MenuDropdown, type MenuDropdownProps, Modal, type ModalProps, MultiSelect, MultiSelectFormField, type MultiSelectFormFieldProps, type MultiSelectProps, PhoneFormField, type PhoneFormFieldProps, RadioGroup, RadioGroupFormField, type RadioGroupFormFieldProps, type RadioGroupProps, RadioGroupStyled, RadioItem, type RadioItemProps, Section, type SectionProps, SectionStyled, SelectFormField, type SelectFormFieldProps, Step, StepContent, StepList, type StepProps, StepStyled, StepTrigger, StepWrapper, Switch, type SwitchProps, SwitchStyled, Text, TextAreaFormField, type TextAreaFormFieldProps, TextField, type TextFieldProps, TextFieldSlot, type TextFieldSlotProps, TextFieldSlotStyled, TextFieldStyled, TextFormField, type TextFormFieldProps, type TextProps, TextStyle, TextareaField, type TextareaFieldProps, TextareaFieldStyle, TimePicker, TimePickerButtonStyled, TimePickerDropdownStyled, TimePickerFooterStyled, type TimePickerProps, TimePickerStyled, TimerPickerContentStyled, type Toast, type ToastComponentProps, type ToastConfig, type ToastContextType, ToastItem, type ToastOptions, ToastProvider, type ToastProviderProps, type ToastType, type ToasterShowOptions, Tooltip, TooltipContent, type TooltipProps, TooltipProvider, TooltipRoot, TooltipTrigger, isValidCNPJ, maskFormat, maskUnformat, useToast };
package/dist/index.js CHANGED
@@ -1062,6 +1062,7 @@ __export(index_exports, {
1062
1062
  CheckboxItem: () => CheckboxItem,
1063
1063
  Container: () => Container,
1064
1064
  ContainerStyled: () => ContainerStyled,
1065
+ CountryFormField: () => CountryFormField,
1065
1066
  Drawer: () => Drawer,
1066
1067
  DropdownMenu: () => DropdownMenu2,
1067
1068
  DropdownMenuItem: () => DropdownMenuItem,
@@ -1088,6 +1089,7 @@ __export(index_exports, {
1088
1089
  RadioItem: () => RadioItem,
1089
1090
  Section: () => Section,
1090
1091
  SectionStyled: () => SectionStyled,
1092
+ SelectFormField: () => SelectFormField,
1091
1093
  Step: () => Step,
1092
1094
  StepContent: () => StepContent,
1093
1095
  StepList: () => StepList,
@@ -3431,7 +3433,7 @@ var DropdownMenuStyled = styled("div", {
3431
3433
  border: "1px solid $dark300",
3432
3434
  borderRadius: "$xs",
3433
3435
  padding: "$8 $12",
3434
- width: "calc(100% - 24px)",
3436
+ width: "100%",
3435
3437
  display: "flex",
3436
3438
  button: {
3437
3439
  fontFamily: "$default",
@@ -3497,13 +3499,14 @@ var DropdownMenuContentStyled = styled(import_themes11.DropdownMenu.Content, {
3497
3499
  border: "1px solid $dark300",
3498
3500
  borderRadius: "$xs",
3499
3501
  boxShadow: "0px 4px 4px 0px rgba(35, 53, 67, 0.08)",
3500
- width: "calc(var(--radix-popper-anchor-width) + 24px);",
3502
+ width: "100%",
3501
3503
  minWidth: "100%",
3502
3504
  marginTop: "3px",
3503
3505
  maxHeight: "400px",
3504
3506
  height: "100%",
3505
3507
  position: "relative",
3506
- overflow: "auto"
3508
+ overflow: "auto",
3509
+ zIndex: 9999999999
3507
3510
  });
3508
3511
  function DropdownMenu2(_a) {
3509
3512
  var _b = _a, {
@@ -3541,6 +3544,7 @@ function DropdownMenu2(_a) {
3541
3544
  /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
3542
3545
  DropdownMenuContentStyled,
3543
3546
  {
3547
+ container: document.body,
3544
3548
  avoidCollisions: false,
3545
3549
  align: "start",
3546
3550
  alignOffset: -14,
@@ -10797,6 +10801,7 @@ var CheckboxGroupFormField = ({
10797
10801
  CheckboxItem,
10798
10802
  Container,
10799
10803
  ContainerStyled,
10804
+ CountryFormField,
10800
10805
  Drawer,
10801
10806
  DropdownMenu,
10802
10807
  DropdownMenuItem,
@@ -10823,6 +10828,7 @@ var CheckboxGroupFormField = ({
10823
10828
  RadioItem,
10824
10829
  Section,
10825
10830
  SectionStyled,
10831
+ SelectFormField,
10826
10832
  Step,
10827
10833
  StepContent,
10828
10834
  StepList,
package/dist/index.mjs CHANGED
@@ -3327,7 +3327,7 @@ var DropdownMenuStyled = styled("div", {
3327
3327
  border: "1px solid $dark300",
3328
3328
  borderRadius: "$xs",
3329
3329
  padding: "$8 $12",
3330
- width: "calc(100% - 24px)",
3330
+ width: "100%",
3331
3331
  display: "flex",
3332
3332
  button: {
3333
3333
  fontFamily: "$default",
@@ -3393,13 +3393,14 @@ var DropdownMenuContentStyled = styled(DropdownMenuRadix.Content, {
3393
3393
  border: "1px solid $dark300",
3394
3394
  borderRadius: "$xs",
3395
3395
  boxShadow: "0px 4px 4px 0px rgba(35, 53, 67, 0.08)",
3396
- width: "calc(var(--radix-popper-anchor-width) + 24px);",
3396
+ width: "100%",
3397
3397
  minWidth: "100%",
3398
3398
  marginTop: "3px",
3399
3399
  maxHeight: "400px",
3400
3400
  height: "100%",
3401
3401
  position: "relative",
3402
- overflow: "auto"
3402
+ overflow: "auto",
3403
+ zIndex: 9999999999
3403
3404
  });
3404
3405
  function DropdownMenu2(_a) {
3405
3406
  var _b = _a, {
@@ -3437,6 +3438,7 @@ function DropdownMenu2(_a) {
3437
3438
  /* @__PURE__ */ jsx11(
3438
3439
  DropdownMenuContentStyled,
3439
3440
  {
3441
+ container: document.body,
3440
3442
  avoidCollisions: false,
3441
3443
  align: "start",
3442
3444
  alignOffset: -14,
@@ -10699,6 +10701,7 @@ export {
10699
10701
  CheckboxItem,
10700
10702
  Container,
10701
10703
  ContainerStyled,
10704
+ CountryFormField,
10702
10705
  Drawer,
10703
10706
  DropdownMenu2 as DropdownMenu,
10704
10707
  DropdownMenuItem,
@@ -10725,6 +10728,7 @@ export {
10725
10728
  RadioItem,
10726
10729
  Section,
10727
10730
  SectionStyled,
10731
+ SelectFormField,
10728
10732
  Step,
10729
10733
  StepContent,
10730
10734
  StepList,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lets-events/react",
3
- "version": "11.6.2",
3
+ "version": "11.6.3",
4
4
  "description": "",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",