eai-frontend-components 2.0.97 → 2.1.1
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 +29 -19
- package/dist/index.esm.js +413 -7365
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +329 -7281
- package/dist/index.js.map +1 -1
- package/package.json +1 -2
package/dist/index.d.ts
CHANGED
|
@@ -26,7 +26,7 @@ import * as react_hook_form from 'react-hook-form';
|
|
|
26
26
|
import { FieldValues, FieldPath, ControllerProps } from 'react-hook-form';
|
|
27
27
|
import * as LabelPrimitive from '@radix-ui/react-label';
|
|
28
28
|
import * as HoverCardPrimitive from '@radix-ui/react-hover-card';
|
|
29
|
-
import { Modify } from '@react-input/mask';
|
|
29
|
+
import { Modify, Replacement } from '@react-input/mask';
|
|
30
30
|
import * as PopoverPrimitive from '@radix-ui/react-popover';
|
|
31
31
|
import * as ProgressPrimitive from '@radix-ui/react-progress';
|
|
32
32
|
import * as RadioGroupPrimitive from '@radix-ui/react-radio-group';
|
|
@@ -80,7 +80,7 @@ declare const AvatarImage: React$1.ForwardRefExoticComponent<Omit<AvatarPrimitiv
|
|
|
80
80
|
declare const AvatarFallback: React$1.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarFallbackProps & React$1.RefAttributes<HTMLSpanElement>, "ref"> & React$1.RefAttributes<HTMLSpanElement>>;
|
|
81
81
|
|
|
82
82
|
declare const badgeVariants: (props?: ({
|
|
83
|
-
variant?: "default" | "destructive" | "
|
|
83
|
+
variant?: "default" | "destructive" | "secondary" | "outline" | "surface" | "green" | "red" | "gray" | "blue" | "orange" | "yellow" | null | undefined;
|
|
84
84
|
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
85
85
|
interface BadgeProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {
|
|
86
86
|
}
|
|
@@ -105,7 +105,7 @@ declare const BreadcrumbEllipsis: {
|
|
|
105
105
|
};
|
|
106
106
|
|
|
107
107
|
declare const buttonVariants: (props?: ({
|
|
108
|
-
variant?: "link" | "default" | "destructive" | "
|
|
108
|
+
variant?: "link" | "default" | "destructive" | "primary" | "secondary" | "outline" | "ghost" | null | undefined;
|
|
109
109
|
size?: "default" | "sm" | "lg" | "icon" | null | undefined;
|
|
110
110
|
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
111
111
|
interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
|
|
@@ -208,7 +208,7 @@ declare const Command: React$1.ForwardRefExoticComponent<Omit<{
|
|
|
208
208
|
ref?: React$1.Ref<HTMLDivElement>;
|
|
209
209
|
} & {
|
|
210
210
|
asChild?: boolean;
|
|
211
|
-
}, "key" | keyof React$1.HTMLAttributes<HTMLDivElement
|
|
211
|
+
}, "key" | "asChild" | keyof React$1.HTMLAttributes<HTMLDivElement>> & {
|
|
212
212
|
label?: string;
|
|
213
213
|
shouldFilter?: boolean;
|
|
214
214
|
filter?: (value: string, search: string, keywords?: string[]) => number;
|
|
@@ -224,7 +224,7 @@ declare const CommandInput: React$1.ForwardRefExoticComponent<Omit<Omit<Pick<Pic
|
|
|
224
224
|
ref?: React$1.Ref<HTMLInputElement>;
|
|
225
225
|
} & {
|
|
226
226
|
asChild?: boolean;
|
|
227
|
-
}, "key" | "asChild" | keyof React$1.InputHTMLAttributes<HTMLInputElement>>, "onChange" | "
|
|
227
|
+
}, "key" | "asChild" | keyof React$1.InputHTMLAttributes<HTMLInputElement>>, "onChange" | "type" | "value"> & {
|
|
228
228
|
value?: string;
|
|
229
229
|
onValueChange?: (search: string) => void;
|
|
230
230
|
} & React$1.RefAttributes<HTMLInputElement>, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
|
|
@@ -234,7 +234,7 @@ declare const CommandList: React$1.ForwardRefExoticComponent<Omit<{
|
|
|
234
234
|
ref?: React$1.Ref<HTMLDivElement>;
|
|
235
235
|
} & {
|
|
236
236
|
asChild?: boolean;
|
|
237
|
-
}, "key" | keyof React$1.HTMLAttributes<HTMLDivElement
|
|
237
|
+
}, "key" | "asChild" | keyof React$1.HTMLAttributes<HTMLDivElement>> & {
|
|
238
238
|
label?: string;
|
|
239
239
|
} & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
240
240
|
declare const CommandEmpty: React$1.ForwardRefExoticComponent<Omit<{
|
|
@@ -243,14 +243,14 @@ declare const CommandEmpty: React$1.ForwardRefExoticComponent<Omit<{
|
|
|
243
243
|
ref?: React$1.Ref<HTMLDivElement>;
|
|
244
244
|
} & {
|
|
245
245
|
asChild?: boolean;
|
|
246
|
-
}, "key" | keyof React$1.HTMLAttributes<HTMLDivElement
|
|
246
|
+
}, "key" | "asChild" | keyof React$1.HTMLAttributes<HTMLDivElement>> & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
247
247
|
declare const CommandGroup: React$1.ForwardRefExoticComponent<Omit<{
|
|
248
248
|
children?: React$1.ReactNode;
|
|
249
249
|
} & Omit<Pick<Pick<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React$1.HTMLAttributes<HTMLDivElement>> & {
|
|
250
250
|
ref?: React$1.Ref<HTMLDivElement>;
|
|
251
251
|
} & {
|
|
252
252
|
asChild?: boolean;
|
|
253
|
-
}, "key" | keyof React$1.HTMLAttributes<HTMLDivElement
|
|
253
|
+
}, "key" | "asChild" | keyof React$1.HTMLAttributes<HTMLDivElement>>, "value" | "heading"> & {
|
|
254
254
|
heading?: React$1.ReactNode;
|
|
255
255
|
value?: string;
|
|
256
256
|
forceMount?: boolean;
|
|
@@ -259,7 +259,7 @@ declare const CommandSeparator: React$1.ForwardRefExoticComponent<Omit<Pick<Pick
|
|
|
259
259
|
ref?: React$1.Ref<HTMLDivElement>;
|
|
260
260
|
} & {
|
|
261
261
|
asChild?: boolean;
|
|
262
|
-
}, "key" | keyof React$1.HTMLAttributes<HTMLDivElement
|
|
262
|
+
}, "key" | "asChild" | keyof React$1.HTMLAttributes<HTMLDivElement>> & {
|
|
263
263
|
alwaysRender?: boolean;
|
|
264
264
|
} & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
265
265
|
declare const CommandItem: React$1.ForwardRefExoticComponent<Omit<{
|
|
@@ -268,7 +268,7 @@ declare const CommandItem: React$1.ForwardRefExoticComponent<Omit<{
|
|
|
268
268
|
ref?: React$1.Ref<HTMLDivElement>;
|
|
269
269
|
} & {
|
|
270
270
|
asChild?: boolean;
|
|
271
|
-
}, "key" | keyof React$1.HTMLAttributes<HTMLDivElement
|
|
271
|
+
}, "key" | "asChild" | keyof React$1.HTMLAttributes<HTMLDivElement>>, "onSelect" | "value" | "disabled"> & {
|
|
272
272
|
disabled?: boolean;
|
|
273
273
|
onSelect?: (value: string) => void;
|
|
274
274
|
value?: string;
|
|
@@ -457,8 +457,10 @@ declare function maskPhone(value: string | null): {
|
|
|
457
457
|
declare const modifyCpfCnpj: Modify;
|
|
458
458
|
/**
|
|
459
459
|
* Creates a CPF or CNPJ mask based on the input length.
|
|
460
|
-
* - CPF: XXX.XXX.XXX-XX (up to 11 digits)
|
|
461
|
-
* - CNPJ: XX.XXX.XXX/XXXX-XX (12+
|
|
460
|
+
* - CPF: XXX.XXX.XXX-XX (up to 11 digits, numeric only)
|
|
461
|
+
* - CNPJ: XX.XXX.XXX/XXXX-XX (12+ characters). Supports the new alphanumeric
|
|
462
|
+
* CNPJ format adopted by Receita Federal: letters are allowed in the first
|
|
463
|
+
* 12 positions, while the last 2 (check digits) remain numeric only.
|
|
462
464
|
*
|
|
463
465
|
* @param value - CPF/CNPJ string (can be null)
|
|
464
466
|
* @returns Mask configuration object with pattern and replacement rules
|
|
@@ -469,21 +471,23 @@ declare const modifyCpfCnpj: Modify;
|
|
|
469
471
|
* // Returns: { mask: '___.___.___-___', replacement: { _: /\d/ } }
|
|
470
472
|
*
|
|
471
473
|
* const cnpjMask = maskCpfCnpj('12345678000195');
|
|
472
|
-
* // Returns: { mask: '__
|
|
474
|
+
* // Returns: { mask: '##.###.###/####-__', replacement: { '#': /[A-Za-z0-9]/, _: /\d/ } }
|
|
475
|
+
*
|
|
476
|
+
* const cnpjAlfaMask = maskCpfCnpj('12ABC34501DE35');
|
|
477
|
+
* // Returns: { mask: '##.###.###/####-__', replacement: { '#': /[A-Za-z0-9]/, _: /\d/ } }
|
|
473
478
|
* ```
|
|
474
479
|
*/
|
|
475
480
|
declare function maskCpfCnpj(value: string | null): {
|
|
476
481
|
mask: string;
|
|
477
|
-
replacement:
|
|
478
|
-
_: RegExp;
|
|
479
|
-
};
|
|
482
|
+
replacement: Replacement;
|
|
480
483
|
};
|
|
481
484
|
/**
|
|
482
|
-
* Removes
|
|
483
|
-
*
|
|
485
|
+
* Removes mask characters (dots, slashes, dashes, parentheses, spaces) from a string,
|
|
486
|
+
* keeping letters and digits. Letters are uppercased. Safe for CPF, phone numbers,
|
|
487
|
+
* and the alphanumeric CNPJ format (letters in the first 12 positions).
|
|
484
488
|
*
|
|
485
489
|
* @param value - String with potential mask characters
|
|
486
|
-
* @returns String containing only
|
|
490
|
+
* @returns String containing only uppercase letters and digits
|
|
487
491
|
*
|
|
488
492
|
* @example
|
|
489
493
|
* ```tsx
|
|
@@ -492,6 +496,9 @@ declare function maskCpfCnpj(value: string | null): {
|
|
|
492
496
|
*
|
|
493
497
|
* const cleanCpf = removeMaskNumber('123.456.789-01');
|
|
494
498
|
* // Returns: '12345678901'
|
|
499
|
+
*
|
|
500
|
+
* const cleanCnpj = removeMaskNumber('12.ABC.345/01DE-35');
|
|
501
|
+
* // Returns: '12ABC34501DE35'
|
|
495
502
|
* ```
|
|
496
503
|
*/
|
|
497
504
|
declare const removeMaskNumber: (value: string) => string;
|
|
@@ -1413,6 +1420,8 @@ declare function formatPhone(telefone: string, removeDDD?: boolean, removeCountr
|
|
|
1413
1420
|
/**
|
|
1414
1421
|
* Formats a CPF or CNPJ string with proper mask.
|
|
1415
1422
|
* Automatically detects CPF vs CNPJ format based on length.
|
|
1423
|
+
* CNPJ supports the new alphanumeric format (letters in the first 12 positions,
|
|
1424
|
+
* numeric check digits in the last 2), as adopted by Receita Federal.
|
|
1416
1425
|
*
|
|
1417
1426
|
* @param cpfCnpj - Raw CPF/CNPJ string
|
|
1418
1427
|
* @returns Formatted CPF/CNPJ string
|
|
@@ -1421,6 +1430,7 @@ declare function formatPhone(telefone: string, removeDDD?: boolean, removeCountr
|
|
|
1421
1430
|
* ```tsx
|
|
1422
1431
|
* formatCpfCnpj('12345678901') // '123.456.789-01'
|
|
1423
1432
|
* formatCpfCnpj('12345678000195') // '12.345.678/0001-95'
|
|
1433
|
+
* formatCpfCnpj('12ABC34501DE35') // '12.ABC.345/01DE-35'
|
|
1424
1434
|
* ```
|
|
1425
1435
|
*/
|
|
1426
1436
|
declare function formatCpfCnpj(cpfCnpj?: string): string;
|