@lets-events/react 11.6.2 → 11.6.4

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 +12 -0
  4. package/dist/index.d.mts +34 -7
  5. package/dist/index.d.ts +34 -7
  6. package/dist/index.js +9 -86
  7. package/dist/index.mjs +7 -86
  8. package/package.json +2 -3
  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
@@ -1,139 +1,139 @@
1
- import { useEffect } from "react";
2
- import { useFormContext, useWatch, useFormState } from "react-hook-form";
3
- import { CountryFormField } from "./CountryFormField";
4
- import { PostalCodeFormField } from "./PostalCodeFormField";
5
- import { StateFormField } from "./StateFormField";
6
- import { CityFormField } from "./CityFormField";
7
- import { FormLabel } from "../FormLabel";
8
- import { TextFormField } from "../TextFormField";
9
- import { styled } from "../../../styles";
10
-
11
- type AddressFormFieldsProps = {
12
- name: string;
13
- label: string;
14
- required?: boolean;
15
- layout?: "column" | "grid";
16
- };
17
-
18
- function getNestedValue(obj: any, path: string): any {
19
- return path.split(".").reduce((acc, key) => acc?.[key], obj);
20
- }
21
-
22
- const AddressContainerStyled = styled("div", {
23
- variants: {
24
- layout: {
25
- column: {
26
- display: "flex",
27
- flexDirection: "column",
28
- gap: "$4",
29
- },
30
- grid: {
31
- display: "grid",
32
- gap: "$8 $16",
33
- gridTemplateColumns: "repeat(2, 1fr)",
34
-
35
- "& > *:nth-child(1)": {
36
- gridColumn: "span 2",
37
- },
38
- },
39
- },
40
- },
41
- });
42
- export function AddressFormFields({
43
- name,
44
- label,
45
- required,
46
- layout = "column",
47
- }: AddressFormFieldsProps) {
48
- const { control, setValue } = useFormContext();
49
- const { errors } = useFormState({ control });
50
-
51
- const selectedCountry = useWatch({ control, name: `${name}.country` });
52
- const cep = useWatch({ control, name: `${name}.zip_code` });
53
- const isBrazil = selectedCountry === "Brasil";
54
-
55
- const addressErrors = getNestedValue(errors, name);
56
- const haveError = !!addressErrors;
57
-
58
- useEffect(() => {
59
- const cleanedCep = cep?.replace(/\D/g, "");
60
-
61
- if (isBrazil && cleanedCep?.length === 8) {
62
- fetch(`https://viacep.com.br/ws/${cleanedCep}/json`)
63
- .then((res) => res.json())
64
- .then((data) => {
65
- if (!data.erro) {
66
- setValue(`${name}.street`, data.logradouro || "");
67
- setValue(`${name}.neighborhood`, data.bairro || "");
68
- setValue(`${name}.city`, data.localidade || "");
69
- setValue(`${name}.state`, data.uf || "");
70
- }
71
- })
72
- .catch(() => {
73
- console.error("Erro ao buscar CEP");
74
- });
75
- }
76
- }, [cep, isBrazil]);
77
-
78
- return (
79
- <AddressContainerStyled layout={layout}>
80
- <FormLabel
81
- name={name}
82
- label={label}
83
- required={required}
84
- haveError={haveError}
85
- />
86
-
87
- <CountryFormField
88
- name={`${name}.country`}
89
- label="País"
90
- required={required}
91
- language="pt-BR"
92
- />
93
-
94
- {isBrazil ? (
95
- <PostalCodeFormField
96
- name={`${name}.zip_code`}
97
- label="CEP"
98
- required={required}
99
- placeholder="00000-000"
100
- validationErrorMessage="CEP inválido"
101
- />
102
- ) : (
103
- <TextFormField
104
- name={`${name}.zip_code`}
105
- label="Código Postal"
106
- required={required}
107
- />
108
- )}
109
-
110
- <StateFormField
111
- name={`${name}.state`}
112
- label="Estado"
113
- required={required}
114
- isBrazil={isBrazil}
115
- />
116
-
117
- <CityFormField
118
- name={`${name}.city`}
119
- stateName={`${name}.state`}
120
- label="Cidade"
121
- required={required}
122
- isBrazil={isBrazil}
123
- />
124
-
125
- <TextFormField name={`${name}.street`} label="Rua" required={required} />
126
- <TextFormField
127
- name={`${name}.number`}
128
- label="Número"
129
- required={required}
130
- />
131
- <TextFormField
132
- name={`${name}.neighborhood`}
133
- label="Bairro"
134
- required={required}
135
- />
136
- <TextFormField name={`${name}.complement`} label="Complemento" />
137
- </AddressContainerStyled>
138
- );
139
- }
1
+ import { useEffect } from "react";
2
+ import { useFormContext, useWatch, useFormState } from "react-hook-form";
3
+ import { CountryFormField } from "./CountryFormField";
4
+ import { PostalCodeFormField } from "./PostalCodeFormField";
5
+ import { StateFormField } from "./StateFormField";
6
+ import { CityFormField } from "./CityFormField";
7
+ import { FormLabel } from "../FormLabel";
8
+ import { TextFormField } from "../TextFormField";
9
+ import { styled } from "../../../styles";
10
+
11
+ type AddressFormFieldsProps = {
12
+ name: string;
13
+ label: string;
14
+ required?: boolean;
15
+ layout?: "column" | "grid";
16
+ };
17
+
18
+ function getNestedValue(obj: any, path: string): any {
19
+ return path.split(".").reduce((acc, key) => acc?.[key], obj);
20
+ }
21
+
22
+ const AddressContainerStyled = styled("div", {
23
+ variants: {
24
+ layout: {
25
+ column: {
26
+ display: "flex",
27
+ flexDirection: "column",
28
+ gap: "$4",
29
+ },
30
+ grid: {
31
+ display: "grid",
32
+ gap: "$8 $16",
33
+ gridTemplateColumns: "repeat(2, 1fr)",
34
+
35
+ "& > *:nth-child(1)": {
36
+ gridColumn: "span 2",
37
+ },
38
+ },
39
+ },
40
+ },
41
+ });
42
+ export function AddressFormFields({
43
+ name,
44
+ label,
45
+ required,
46
+ layout = "column",
47
+ }: AddressFormFieldsProps) {
48
+ const { control, setValue } = useFormContext();
49
+ const { errors } = useFormState({ control });
50
+
51
+ const selectedCountry = useWatch({ control, name: `${name}.country` });
52
+ const cep = useWatch({ control, name: `${name}.zip_code` });
53
+ const isBrazil = selectedCountry === "Brasil";
54
+
55
+ const addressErrors = getNestedValue(errors, name);
56
+ const haveError = !!addressErrors;
57
+
58
+ useEffect(() => {
59
+ const cleanedCep = cep?.replace(/\D/g, "");
60
+
61
+ if (isBrazil && cleanedCep?.length === 8) {
62
+ fetch(`https://viacep.com.br/ws/${cleanedCep}/json`)
63
+ .then((res) => res.json())
64
+ .then((data) => {
65
+ if (!data.erro) {
66
+ setValue(`${name}.street`, data.logradouro || "");
67
+ setValue(`${name}.neighborhood`, data.bairro || "");
68
+ setValue(`${name}.city`, data.localidade || "");
69
+ setValue(`${name}.state`, data.uf || "");
70
+ }
71
+ })
72
+ .catch(() => {
73
+ console.error("Erro ao buscar CEP");
74
+ });
75
+ }
76
+ }, [cep, isBrazil]);
77
+
78
+ return (
79
+ <AddressContainerStyled layout={layout}>
80
+ <FormLabel
81
+ name={name}
82
+ label={label}
83
+ required={required}
84
+ haveError={haveError}
85
+ />
86
+
87
+ <CountryFormField
88
+ name={`${name}.country`}
89
+ label="País"
90
+ required={required}
91
+ language="pt-BR"
92
+ />
93
+
94
+ {isBrazil ? (
95
+ <PostalCodeFormField
96
+ name={`${name}.zip_code`}
97
+ label="CEP"
98
+ required={required}
99
+ placeholder="00000-000"
100
+ validationErrorMessage="CEP inválido"
101
+ />
102
+ ) : (
103
+ <TextFormField
104
+ name={`${name}.zip_code`}
105
+ label="Código Postal"
106
+ required={required}
107
+ />
108
+ )}
109
+
110
+ <StateFormField
111
+ name={`${name}.state`}
112
+ label="Estado"
113
+ required={required}
114
+ isBrazil={isBrazil}
115
+ />
116
+
117
+ <CityFormField
118
+ name={`${name}.city`}
119
+ stateName={`${name}.state`}
120
+ label="Cidade"
121
+ required={required}
122
+ isBrazil={isBrazil}
123
+ />
124
+
125
+ <TextFormField name={`${name}.street`} label="Rua" required={required} />
126
+ <TextFormField
127
+ name={`${name}.number`}
128
+ label="Número"
129
+ required={required}
130
+ />
131
+ <TextFormField
132
+ name={`${name}.neighborhood`}
133
+ label="Bairro"
134
+ required={required}
135
+ />
136
+ <TextFormField name={`${name}.complement`} label="Complemento" />
137
+ </AddressContainerStyled>
138
+ );
139
+ }
@@ -1,87 +1,87 @@
1
- import { TextFormField } from "./TextFormField";
2
-
3
- type Language = "pt-BR" | "en" | "es";
4
-
5
- type BirthDateFormFieldProps = {
6
- name: string;
7
- label: string;
8
- required?: boolean;
9
- placeholder?: string;
10
- validationErrorMessage: string;
11
- language: Language;
12
- };
13
-
14
- const isValidDate = (day: number, month: number, year: number): boolean => {
15
- const date = new Date(year, month - 1, day);
16
- return (
17
- date.getFullYear() === year &&
18
- date.getMonth() === month - 1 &&
19
- date.getDate() === day
20
- );
21
- };
22
-
23
- const isValidBirthDate = (value: string, language: Language): boolean => {
24
- const [part1, part2, part3] = value.split("/").map(Number);
25
- let day = 0,
26
- month = 0,
27
- year = 0;
28
-
29
- if (language === "en") {
30
- month = part1;
31
- day = part2;
32
- year = part3;
33
- } else {
34
- day = part1;
35
- month = part2;
36
- year = part3;
37
- }
38
-
39
- if (!isValidDate(day, month, year)) return false;
40
-
41
- const today = new Date();
42
- const birthDate = new Date(year, month - 1, day);
43
-
44
- if (birthDate > today) return false;
45
-
46
- const age = today.getFullYear() - birthDate.getFullYear();
47
- const beforeBirthday =
48
- today.getMonth() < birthDate.getMonth() ||
49
- (today.getMonth() === birthDate.getMonth() &&
50
- today.getDate() < birthDate.getDate());
51
-
52
- const realAge = beforeBirthday ? age - 1 : age;
53
-
54
- return realAge <= 100;
55
- };
56
-
57
- export const BirthDateFormField = ({
58
- name,
59
- label,
60
- required,
61
- placeholder,
62
- validationErrorMessage,
63
- language,
64
- }: BirthDateFormFieldProps) => {
65
- const inputPlaceholder =
66
- placeholder || (language === "en" ? "MM/DD/YYYY" : "DD/MM/AAAA");
67
-
68
- return (
69
- <TextFormField
70
- name={name}
71
- label={label}
72
- required={required}
73
- placeholder={inputPlaceholder}
74
- mask={{
75
- mask: "__/__/____",
76
- replacement: { _: /[0-9]/ },
77
- }}
78
- validation={{
79
- validate: (value: string) => {
80
- const isEmpty = value.replace(/[^\d]+/g, "").length === 0;
81
- if (!required && isEmpty) return true;
82
- return isValidBirthDate(value, language) || validationErrorMessage;
83
- },
84
- }}
85
- />
86
- );
87
- };
1
+ import { TextFormField } from "./TextFormField";
2
+
3
+ type Language = "pt-BR" | "en" | "es";
4
+
5
+ type BirthDateFormFieldProps = {
6
+ name: string;
7
+ label: string;
8
+ required?: boolean;
9
+ placeholder?: string;
10
+ validationErrorMessage: string;
11
+ language: Language;
12
+ };
13
+
14
+ const isValidDate = (day: number, month: number, year: number): boolean => {
15
+ const date = new Date(year, month - 1, day);
16
+ return (
17
+ date.getFullYear() === year &&
18
+ date.getMonth() === month - 1 &&
19
+ date.getDate() === day
20
+ );
21
+ };
22
+
23
+ const isValidBirthDate = (value: string, language: Language): boolean => {
24
+ const [part1, part2, part3] = value.split("/").map(Number);
25
+ let day = 0,
26
+ month = 0,
27
+ year = 0;
28
+
29
+ if (language === "en") {
30
+ month = part1;
31
+ day = part2;
32
+ year = part3;
33
+ } else {
34
+ day = part1;
35
+ month = part2;
36
+ year = part3;
37
+ }
38
+
39
+ if (!isValidDate(day, month, year)) return false;
40
+
41
+ const today = new Date();
42
+ const birthDate = new Date(year, month - 1, day);
43
+
44
+ if (birthDate > today) return false;
45
+
46
+ const age = today.getFullYear() - birthDate.getFullYear();
47
+ const beforeBirthday =
48
+ today.getMonth() < birthDate.getMonth() ||
49
+ (today.getMonth() === birthDate.getMonth() &&
50
+ today.getDate() < birthDate.getDate());
51
+
52
+ const realAge = beforeBirthday ? age - 1 : age;
53
+
54
+ return realAge <= 100;
55
+ };
56
+
57
+ export const BirthDateFormField = ({
58
+ name,
59
+ label,
60
+ required,
61
+ placeholder,
62
+ validationErrorMessage,
63
+ language,
64
+ }: BirthDateFormFieldProps) => {
65
+ const inputPlaceholder =
66
+ placeholder || (language === "en" ? "MM/DD/YYYY" : "DD/MM/AAAA");
67
+
68
+ return (
69
+ <TextFormField
70
+ name={name}
71
+ label={label}
72
+ required={required}
73
+ placeholder={inputPlaceholder}
74
+ mask={{
75
+ mask: "__/__/____",
76
+ replacement: { _: /[0-9]/ },
77
+ }}
78
+ validation={{
79
+ validate: (value: string) => {
80
+ const isEmpty = value.replace(/[^\d]+/g, "").length === 0;
81
+ if (!required && isEmpty) return true;
82
+ return isValidBirthDate(value, language) || validationErrorMessage;
83
+ },
84
+ }}
85
+ />
86
+ );
87
+ };
@@ -1,89 +1,89 @@
1
- import { TextFormField } from "./TextFormField";
2
-
3
- type CNPJFormFieldProps = {
4
- name: string;
5
- label: string;
6
- required?: boolean;
7
- placeholder?: string;
8
- validationErrorMessage: string;
9
- };
10
-
11
- const matchesNonDigit = new RegExp(/\D+/g);
12
-
13
- const getWeights = (size: number, start: number, end: number) => {
14
- const weights = [];
15
- for (let i = size - 1; i >= 0; i--) {
16
- weights.push((end ? i % (end - start + 1) : i) + start);
17
- }
18
- return weights;
19
- };
20
- const calcValidatorDigit = (basicDigits: number[], weights: number[]) => {
21
- const sum = basicDigits.reduce(
22
- (sum, digit, index) => sum + digit * weights[index],
23
- 0
24
- );
25
- const mod = sum % 11;
26
- return mod < 2 ? 0 : 11 - mod;
27
- };
28
- const cnpjWeights1 = getWeights(12, 2, 9);
29
- const cnpjWeights2 = getWeights(13, 2, 9);
30
- export const isValidCNPJ = (cnpj: string) => {
31
- const digitsOnlyCnpj = cnpj.replace(matchesNonDigit, "");
32
-
33
- if (digitsOnlyCnpj.length !== 14) {
34
- return false;
35
- }
36
- // Elimina CNPJs com todos os dígitos iguais (ex: 11.111.111/1111-11)
37
- if (/^(\d)\1+$/.test(digitsOnlyCnpj)) return false;
38
-
39
- const cnpjArray = digitsOnlyCnpj
40
- .split("")
41
- .map((digit) => Number.parseInt(digit));
42
-
43
- const validatorDigit1 = cnpjArray[12];
44
- const validatorDigit2 = cnpjArray[13];
45
- const basicDigits = cnpjArray.slice(0, 12);
46
-
47
- const expectedValidator1 = calcValidatorDigit(basicDigits, cnpjWeights1);
48
- if (expectedValidator1 !== validatorDigit1) {
49
- return false;
50
- }
51
-
52
- const expectedValidator2 = calcValidatorDigit(
53
- [...basicDigits, validatorDigit1],
54
- cnpjWeights2
55
- );
56
- if (expectedValidator2 !== validatorDigit2) {
57
- return false;
58
- }
59
-
60
- return true;
61
- };
62
-
63
- export const CNPJFormField = ({
64
- name,
65
- label,
66
- required,
67
- placeholder,
68
- validationErrorMessage,
69
- }: CNPJFormFieldProps) => {
70
- return (
71
- <TextFormField
72
- name={name}
73
- label={label}
74
- required={required}
75
- placeholder={placeholder || "00.000.000/0000-00"}
76
- mask={{
77
- mask: "__.___.___/____-__",
78
- replacement: { _: /[0-9]/ },
79
- }}
80
- validation={{
81
- validate: (value: string) => {
82
- const isEmpty = value.replace(matchesNonDigit, "").length === 0;
83
- if (!required && isEmpty) return true;
84
- return isValidCNPJ(value) || validationErrorMessage;
85
- },
86
- }}
87
- />
88
- );
89
- };
1
+ import { TextFormField } from "./TextFormField";
2
+
3
+ type CNPJFormFieldProps = {
4
+ name: string;
5
+ label: string;
6
+ required?: boolean;
7
+ placeholder?: string;
8
+ validationErrorMessage: string;
9
+ };
10
+
11
+ const matchesNonDigit = new RegExp(/\D+/g);
12
+
13
+ const getWeights = (size: number, start: number, end: number) => {
14
+ const weights = [];
15
+ for (let i = size - 1; i >= 0; i--) {
16
+ weights.push((end ? i % (end - start + 1) : i) + start);
17
+ }
18
+ return weights;
19
+ };
20
+ const calcValidatorDigit = (basicDigits: number[], weights: number[]) => {
21
+ const sum = basicDigits.reduce(
22
+ (sum, digit, index) => sum + digit * weights[index],
23
+ 0
24
+ );
25
+ const mod = sum % 11;
26
+ return mod < 2 ? 0 : 11 - mod;
27
+ };
28
+ const cnpjWeights1 = getWeights(12, 2, 9);
29
+ const cnpjWeights2 = getWeights(13, 2, 9);
30
+ export const isValidCNPJ = (cnpj: string) => {
31
+ const digitsOnlyCnpj = cnpj.replace(matchesNonDigit, "");
32
+
33
+ if (digitsOnlyCnpj.length !== 14) {
34
+ return false;
35
+ }
36
+ // Elimina CNPJs com todos os dígitos iguais (ex: 11.111.111/1111-11)
37
+ if (/^(\d)\1+$/.test(digitsOnlyCnpj)) return false;
38
+
39
+ const cnpjArray = digitsOnlyCnpj
40
+ .split("")
41
+ .map((digit) => Number.parseInt(digit));
42
+
43
+ const validatorDigit1 = cnpjArray[12];
44
+ const validatorDigit2 = cnpjArray[13];
45
+ const basicDigits = cnpjArray.slice(0, 12);
46
+
47
+ const expectedValidator1 = calcValidatorDigit(basicDigits, cnpjWeights1);
48
+ if (expectedValidator1 !== validatorDigit1) {
49
+ return false;
50
+ }
51
+
52
+ const expectedValidator2 = calcValidatorDigit(
53
+ [...basicDigits, validatorDigit1],
54
+ cnpjWeights2
55
+ );
56
+ if (expectedValidator2 !== validatorDigit2) {
57
+ return false;
58
+ }
59
+
60
+ return true;
61
+ };
62
+
63
+ export const CNPJFormField = ({
64
+ name,
65
+ label,
66
+ required,
67
+ placeholder,
68
+ validationErrorMessage,
69
+ }: CNPJFormFieldProps) => {
70
+ return (
71
+ <TextFormField
72
+ name={name}
73
+ label={label}
74
+ required={required}
75
+ placeholder={placeholder || "00.000.000/0000-00"}
76
+ mask={{
77
+ mask: "__.___.___/____-__",
78
+ replacement: { _: /[0-9]/ },
79
+ }}
80
+ validation={{
81
+ validate: (value: string) => {
82
+ const isEmpty = value.replace(matchesNonDigit, "").length === 0;
83
+ if (!required && isEmpty) return true;
84
+ return isValidCNPJ(value) || validationErrorMessage;
85
+ },
86
+ }}
87
+ />
88
+ );
89
+ };