@grazziotin/react-components-next 1.0.0 → 2.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/README.md +184 -105
- package/dist/accessibility/index.d.mts +136 -0
- package/dist/accessibility/index.d.ts +136 -0
- package/dist/accessibility/index.js +138 -0
- package/dist/accessibility/index.js.map +1 -0
- package/dist/accessibility/index.mjs +127 -0
- package/dist/accessibility/index.mjs.map +1 -0
- package/dist/chunk-BWW3F4R4.mjs +118 -0
- package/dist/chunk-BWW3F4R4.mjs.map +1 -0
- package/dist/functions/index.d.mts +36 -1
- package/dist/functions/index.d.ts +36 -1
- package/dist/functions/index.js +36 -0
- package/dist/functions/index.js.map +1 -1
- package/dist/functions/index.mjs +1 -1
- package/dist/index.css +1 -1
- package/dist/ui/index.d.mts +301 -6
- package/dist/ui/index.d.ts +301 -6
- package/dist/ui/index.js +852 -2
- package/dist/ui/index.js.map +1 -1
- package/dist/ui/index.mjs +873 -2
- package/dist/ui/index.mjs.map +1 -1
- package/package.json +9 -11
- package/dist/chunk-CNXFSE26.mjs +0 -120
- package/dist/chunk-CNXFSE26.mjs.map +0 -1
- package/dist/chunk-NHHZBMJL.mjs +0 -64
- package/dist/chunk-NHHZBMJL.mjs.map +0 -1
- package/dist/index.d.mts +0 -5
- package/dist/index.d.ts +0 -5
- package/dist/index.js +0 -217
- package/dist/index.js.map +0 -1
- package/dist/index.mjs +0 -29
- package/dist/index.mjs.map +0 -1
package/dist/ui/index.d.ts
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
1
|
+
import * as _mui_material from '@mui/material';
|
|
2
|
+
import { CSSProperties, Breakpoint, TabProps as TabProps$1, TabsProps as TabsProps$1, TextFieldProps, AutocompleteProps, AutocompleteChangeReason, AutocompleteChangeDetails } from '@mui/material';
|
|
3
|
+
import * as react from 'react';
|
|
4
|
+
import react__default, { ComponentPropsWithoutRef, Dispatch, SetStateAction, SubmitEventHandler, ReactElement } from 'react';
|
|
5
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
6
|
+
import { DataGridProps } from '@mui/x-data-grid';
|
|
7
|
+
import * as _emotion_styled from '@emotion/styled';
|
|
8
|
+
import * as _mui_system from '@mui/system';
|
|
9
|
+
import * as _mui_material_OverridableComponent from '@mui/material/OverridableComponent';
|
|
3
10
|
|
|
4
11
|
/**
|
|
5
12
|
* Tipo do atributo nativo `className` de um elemento `div` no React.
|
|
@@ -55,7 +62,7 @@ interface CardProps {
|
|
|
55
62
|
/**
|
|
56
63
|
* Cor de fundo do cabeçalho.
|
|
57
64
|
* Aceita cores CSS (hex, rgb, variáveis CSS, etc.).
|
|
58
|
-
* @default "var(--color
|
|
65
|
+
* @default "var(--primary-color)"
|
|
59
66
|
*/
|
|
60
67
|
titleColor?: string;
|
|
61
68
|
/**
|
|
@@ -104,7 +111,7 @@ interface CardProps {
|
|
|
104
111
|
* @param props.toolTip - Habilita tooltip no título.
|
|
105
112
|
* @param props.className - `className` nativo do React no container.
|
|
106
113
|
* @param props.titleWidth - Largura da barra do cabeçalho. Padrão: `"100%"`.
|
|
107
|
-
* @param props.titleColor - Cor de fundo do cabeçalho. Padrão: `var(--color
|
|
114
|
+
* @param props.titleColor - Cor de fundo do cabeçalho. Padrão: `var(--primary-color)`.
|
|
108
115
|
* @param props.borderTitle - `border-radius` só do cabeçalho.
|
|
109
116
|
* @param props.onClick - Clique no card; adiciona `cursor: pointer !important`.
|
|
110
117
|
* @param props.borderRadius - `border-radius` do container.
|
|
@@ -219,6 +226,294 @@ interface DialogProps {
|
|
|
219
226
|
* </Dialog>
|
|
220
227
|
* ```
|
|
221
228
|
*/
|
|
222
|
-
declare function Dialog({ open, title, onClose, actions, children, maxWidth, blurBackdrop, }: Readonly<DialogProps>):
|
|
229
|
+
declare function Dialog({ open, title, onClose, actions, children, maxWidth, blurBackdrop, }: Readonly<DialogProps>): react__default.ReactElement;
|
|
223
230
|
|
|
224
|
-
|
|
231
|
+
/**
|
|
232
|
+
* Propriedades do componente {@link DataTable}.
|
|
233
|
+
* Wrapper tipado sobre o MUI `DataGrid`, com estilização e textos em português.
|
|
234
|
+
*/
|
|
235
|
+
type DataTableProps = DataGridProps;
|
|
236
|
+
|
|
237
|
+
/**
|
|
238
|
+
* Componente DataTable personalizado baseado no MUI DataGrid.
|
|
239
|
+
*
|
|
240
|
+
* Fornece uma tabela de dados com estilização customizada, filtros avançados,
|
|
241
|
+
* paginação, ordenação e gerenciamento de colunas.
|
|
242
|
+
*
|
|
243
|
+
* Recursos incluídos:
|
|
244
|
+
* - Operador de filtro "entre" automático para colunas string e number
|
|
245
|
+
* - Painel de filtros customizado
|
|
246
|
+
* - Painel de gerenciamento de colunas
|
|
247
|
+
* - Paginação estilizada
|
|
248
|
+
* - Overlay personalizado para "sem dados"
|
|
249
|
+
* - Textos em português brasileiro
|
|
250
|
+
*
|
|
251
|
+
* @param props - Todas as props do MUI DataGrid são suportadas. Ver {@link DataTableProps}.
|
|
252
|
+
*
|
|
253
|
+
* @example
|
|
254
|
+
* <DataTable
|
|
255
|
+
* rows={dados}
|
|
256
|
+
* columns={colunas}
|
|
257
|
+
* loading={carregando}
|
|
258
|
+
* pageSizeOptions={[10, 20, 50]}
|
|
259
|
+
* />
|
|
260
|
+
*/
|
|
261
|
+
declare const DataTable: ({ ...rest }: DataTableProps) => react_jsx_runtime.JSX.Element;
|
|
262
|
+
|
|
263
|
+
/**
|
|
264
|
+
* Propriedades de estilo compartilhadas entre {@link Tab} e {@link Tabs}.
|
|
265
|
+
*/
|
|
266
|
+
interface TabColorProps {
|
|
267
|
+
/**
|
|
268
|
+
* Cor do indicador ativo e do rótulo da aba selecionada.
|
|
269
|
+
* @default "var(--primary-color)"
|
|
270
|
+
*/
|
|
271
|
+
color?: string;
|
|
272
|
+
/**
|
|
273
|
+
* Família tipográfica do rótulo da aba.
|
|
274
|
+
* Defina `--font-family` no CSS do projeto ou passe esta prop diretamente.
|
|
275
|
+
* @default "var(--font-family, inherit)"
|
|
276
|
+
*/
|
|
277
|
+
fontFamily?: string;
|
|
278
|
+
}
|
|
279
|
+
/**
|
|
280
|
+
* Propriedades do componente {@link Tab}.
|
|
281
|
+
* Estende o `Tab` do MUI com suporte a cor customizada via `color`.
|
|
282
|
+
*/
|
|
283
|
+
type TabProps = TabProps$1 & TabColorProps;
|
|
284
|
+
/**
|
|
285
|
+
* Propriedades do componente {@link Tabs}.
|
|
286
|
+
* Estende o `Tabs` do MUI com suporte a cor customizada do indicador via `color`.
|
|
287
|
+
*/
|
|
288
|
+
type TabsProps = TabsProps$1 & TabColorProps;
|
|
289
|
+
|
|
290
|
+
/**
|
|
291
|
+
* Container de abas baseado no MUI `Tabs`, com indicador colorido customizável.
|
|
292
|
+
*
|
|
293
|
+
* @param props.color - Cor do indicador da aba ativa. Padrão: `var(--primary-color)`.
|
|
294
|
+
*
|
|
295
|
+
* @example
|
|
296
|
+
* ```tsx
|
|
297
|
+
* <Tabs value={value} onChange={handleChange} color="#00B2A6">
|
|
298
|
+
* <Tab label="Aba 1" />
|
|
299
|
+
* </Tabs>
|
|
300
|
+
* ```
|
|
301
|
+
*/
|
|
302
|
+
declare const Tabs: _emotion_styled.StyledComponent<_mui_material.TabsOwnProps & _mui_material_OverridableComponent.CommonProps & Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "style" | "className" | "aria-label" | "aria-labelledby" | "children" | "onChange" | "sx" | "classes" | "slots" | "slotProps" | "variant" | "value" | "action" | "allowScrollButtonsMobile" | "centered" | "indicatorColor" | "orientation" | "scrollButtons" | "selectionFollowsFocus" | "textColor" | "visibleScrollbar"> & _mui_system.MUIStyledCommonProps<_mui_material.Theme> & TabColorProps, {}, {}>;
|
|
303
|
+
/**
|
|
304
|
+
* Aba individual baseada no MUI `Tab`, com tipografia e cor de seleção customizáveis.
|
|
305
|
+
*
|
|
306
|
+
* @param props.color - Cor do rótulo quando a aba está selecionada. Padrão: `var(--primary-color)`.
|
|
307
|
+
* @param props.fontFamily - Família tipográfica do rótulo. Padrão: `var(--font-family, inherit)`.
|
|
308
|
+
*
|
|
309
|
+
* @example
|
|
310
|
+
* ```tsx
|
|
311
|
+
* <Tab label="Configurações" color="#00B2A6" />
|
|
312
|
+
* ```
|
|
313
|
+
*/
|
|
314
|
+
declare const Tab: _emotion_styled.StyledComponent<_mui_material.TabOwnProps & Omit<_mui_material.ButtonBaseOwnProps, keyof _mui_material.TabOwnProps> & Omit<_mui_material.ButtonBaseOwnProps, "tabIndex" | "type" | "touchRippleRef" | "action" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "nativeButton" | "onFocusVisible" | "TouchRippleProps" | keyof _mui_material.TabOwnProps> & _mui_material_OverridableComponent.CommonProps & Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "style" | "label" | "className" | "tabIndex" | "children" | "icon" | "sx" | "type" | "classes" | "disabled" | "touchRippleRef" | "value" | "action" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "nativeButton" | "onFocusVisible" | "TouchRippleProps" | "disableFocusRipple" | "iconPosition" | "wrapped"> & _mui_system.MUIStyledCommonProps<_mui_material.Theme> & TabColorProps, {}, {}>;
|
|
315
|
+
|
|
316
|
+
type InputType = TextFieldProps["type"] | "cpf-cnpj" | "numeric" | "price" | "text-only" | "text-no-number" | "item-170" | "item-150";
|
|
317
|
+
type InputProps = Omit<TextFieldProps, "color" | "type" | "size"> & {
|
|
318
|
+
/**
|
|
319
|
+
* Cor do input.
|
|
320
|
+
*/
|
|
321
|
+
color?: string;
|
|
322
|
+
/**
|
|
323
|
+
* Se true, exibe um botão de toggle para mostrar/ocultar a senha.
|
|
324
|
+
*/
|
|
325
|
+
isPassword?: boolean;
|
|
326
|
+
/**
|
|
327
|
+
* Aceita os tipos padrão do TextField e tipos customizados do projeto.
|
|
328
|
+
* Padrão: `"text"`.
|
|
329
|
+
*/
|
|
330
|
+
type?: InputType;
|
|
331
|
+
/**
|
|
332
|
+
* Tamanho do campo conforme o MUI TextField.
|
|
333
|
+
* Padrão: `"small"`.
|
|
334
|
+
*/
|
|
335
|
+
size?: TextFieldProps["size"];
|
|
336
|
+
};
|
|
337
|
+
|
|
338
|
+
/**
|
|
339
|
+
* Campo de texto baseado no MUI TextField, com máscaras e tipos customizados do projeto.
|
|
340
|
+
*/
|
|
341
|
+
declare const Input: ({ color, onChange, isPassword, type, size, ...rest }: Readonly<InputProps>) => react_jsx_runtime.JSX.Element;
|
|
342
|
+
|
|
343
|
+
/**
|
|
344
|
+
* Propriedades de layout em grid para o campo do {@link InputSelect}.
|
|
345
|
+
*/
|
|
346
|
+
interface InputSelectGridProps {
|
|
347
|
+
/**
|
|
348
|
+
* Ordem de exibição do input.
|
|
349
|
+
*/
|
|
350
|
+
order?: number;
|
|
351
|
+
/**
|
|
352
|
+
* Tamanho do grid para o input.
|
|
353
|
+
*/
|
|
354
|
+
xs?: number;
|
|
355
|
+
}
|
|
356
|
+
/**
|
|
357
|
+
* Propriedades do componente {@link InputSelect}.
|
|
358
|
+
*
|
|
359
|
+
* Estende o Autocomplete do MUI, substituindo `renderInput` pelo {@link Input} do projeto
|
|
360
|
+
* e tipando `onChange` conforme seleção única ou múltipla.
|
|
361
|
+
*
|
|
362
|
+
* @template T - Tipo dos itens de opções no seletor.
|
|
363
|
+
* @template M - Valor booleano que define se a seleção pode ser múltipla.
|
|
364
|
+
*/
|
|
365
|
+
interface InputSelectProps<T, M extends boolean = false> extends Omit<AutocompleteProps<T, M, boolean | undefined, boolean | undefined>, "renderInput" | "onChange"> {
|
|
366
|
+
/**
|
|
367
|
+
* Propriedades repassadas ao {@link Input} interno.
|
|
368
|
+
* Aceita label, color, type, máscaras e demais props do TextField do projeto.
|
|
369
|
+
*/
|
|
370
|
+
input?: InputProps & InputSelectGridProps;
|
|
371
|
+
/**
|
|
372
|
+
* Opções exibidas no seletor.
|
|
373
|
+
*/
|
|
374
|
+
options: T[];
|
|
375
|
+
/**
|
|
376
|
+
* Retorna a string exibida como rótulo de uma opção.
|
|
377
|
+
* @param data - Item da lista `options`.
|
|
378
|
+
*/
|
|
379
|
+
optionLabel: (data: T) => string;
|
|
380
|
+
/**
|
|
381
|
+
* Define se o seletor permite múltiplas seleções.
|
|
382
|
+
* Padrão: `false`.
|
|
383
|
+
*/
|
|
384
|
+
multiple?: M;
|
|
385
|
+
/**
|
|
386
|
+
* Callback disparado quando o valor do seletor é alterado.
|
|
387
|
+
* @param event - Evento que disparou a alteração.
|
|
388
|
+
* @param value - Novo valor (`T | null` ou `T[]` quando `multiple`).
|
|
389
|
+
* @param reason - Motivo da alteração (MUI `AutocompleteChangeReason`).
|
|
390
|
+
* @param details - Detalhes adicionais da alteração (opcional).
|
|
391
|
+
*/
|
|
392
|
+
onChange?: (event: React.SyntheticEvent, value: M extends true ? T[] : T | null, reason: AutocompleteChangeReason, details?: AutocompleteChangeDetails<T>) => void;
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
/**
|
|
396
|
+
* Componente InputSelect que encapsula o Autocomplete do Material-UI com o {@link Input} do projeto.
|
|
397
|
+
*
|
|
398
|
+
* Permite a seleção de uma ou mais opções com base nos parâmetros fornecidos.
|
|
399
|
+
* É configurável via props do Autocomplete do MUI, com campo de entrada customizável
|
|
400
|
+
* através de `input` (mesmas props do {@link Input}: cor, label, máscaras, etc.).
|
|
401
|
+
*
|
|
402
|
+
* @template T - Tipo dos itens de opções exibidos no seletor.
|
|
403
|
+
* @template M - Define se o seletor permite múltiplas seleções. Padrão: `false` (seletor único).
|
|
404
|
+
*
|
|
405
|
+
* @param props - Propriedades do componente. Detalhes em {@link InputSelectProps}.
|
|
406
|
+
* @param props.multiple - Se `true`, permite selecionar várias opções. Padrão: `false`.
|
|
407
|
+
* @param props.optionLabel - Função que recebe uma opção e retorna o rótulo exibido.
|
|
408
|
+
* @param props.onChange - Callback ao alterar o valor (evento, valor, motivo e detalhes).
|
|
409
|
+
* @param props.input - Props repassadas ao {@link Input} interno (label, color, type, etc.).
|
|
410
|
+
* @param props.options - Lista de opções disponíveis no seletor.
|
|
411
|
+
* @param props.rest - Demais props do Autocomplete do MUI (exceto `renderInput` e `onChange`).
|
|
412
|
+
*
|
|
413
|
+
* @returns Autocomplete com campo de entrada personalizado.
|
|
414
|
+
*
|
|
415
|
+
* @example
|
|
416
|
+
* ```tsx
|
|
417
|
+
* const options = [
|
|
418
|
+
* { id: 1, label: "Opção 1" },
|
|
419
|
+
* { id: 2, label: "Opção 2" },
|
|
420
|
+
* ];
|
|
421
|
+
*
|
|
422
|
+
* <InputSelect
|
|
423
|
+
* options={options}
|
|
424
|
+
* optionLabel={(option) => option.label}
|
|
425
|
+
* input={{ label: "Selecione", color: "#00b2a6" }}
|
|
426
|
+
* onChange={(_event, value) => console.log("Valor selecionado:", value)}
|
|
427
|
+
* multiple
|
|
428
|
+
* />
|
|
429
|
+
* ```
|
|
430
|
+
*/
|
|
431
|
+
declare function InputSelect<T, M extends boolean = false>({ multiple, optionLabel, onChange, input, ...rest }: Readonly<InputSelectProps<T, M>>): react_jsx_runtime.JSX.Element;
|
|
432
|
+
|
|
433
|
+
/**
|
|
434
|
+
* Propriedades do componente {@link FilterCard}.
|
|
435
|
+
*/
|
|
436
|
+
interface FilterCardProps {
|
|
437
|
+
/** Título do cartão de filtros. */
|
|
438
|
+
title?: string;
|
|
439
|
+
/** Indica se o botão de filtros deve ser exibido. */
|
|
440
|
+
renderFilter: boolean;
|
|
441
|
+
/** Controla a abertura do drawer de filtros. */
|
|
442
|
+
setOpen: Dispatch<SetStateAction<boolean>>;
|
|
443
|
+
}
|
|
444
|
+
/**
|
|
445
|
+
* {@link Input} no grid do drawer de filtros.
|
|
446
|
+
* Inclui `order` e `xs` para posicionamento no grid responsivo.
|
|
447
|
+
*/
|
|
448
|
+
type FilterInputProps = InputProps & InputSelectGridProps;
|
|
449
|
+
/**
|
|
450
|
+
* {@link InputSelect} tipado no grid do drawer.
|
|
451
|
+
* Use {@link filterInputSelect} para inferir `T` por campo sem casts.
|
|
452
|
+
*/
|
|
453
|
+
type FilterInputSelectItem<T, M extends boolean = false> = InputSelectProps<T, M> & InputSelectGridProps;
|
|
454
|
+
/**
|
|
455
|
+
* Campo {@link InputSelect} no drawer com tipos heterogêneos.
|
|
456
|
+
* Cada item pode ter `options` de um tipo diferente na mesma lista.
|
|
457
|
+
*/
|
|
458
|
+
type FilterInputSelectField<M extends boolean = boolean> = InputSelectProps<unknown, M> & InputSelectGridProps;
|
|
459
|
+
/** Lista de campos {@link InputSelect} no drawer (tipos de opção independentes por item). */
|
|
460
|
+
type FilterInputSelectProps<M extends boolean = boolean> = FilterInputSelectField<M>[];
|
|
461
|
+
/** Campo do drawer: {@link Input} ou {@link InputSelect}. */
|
|
462
|
+
type FilterDrawerField = FilterInputProps | FilterInputSelectField;
|
|
463
|
+
/**
|
|
464
|
+
* Propriedades do componente {@link FilterDrawer}.
|
|
465
|
+
*/
|
|
466
|
+
interface FilterDrawerProps {
|
|
467
|
+
/** Drawer aberto. */
|
|
468
|
+
open?: boolean;
|
|
469
|
+
/** Controla a abertura do drawer. */
|
|
470
|
+
setOpen: Dispatch<SetStateAction<boolean>>;
|
|
471
|
+
/** Campos {@link Input}. */
|
|
472
|
+
inputs?: FilterInputProps[];
|
|
473
|
+
/** Campos {@link InputSelect}. */
|
|
474
|
+
inputSelect?: FilterInputSelectProps;
|
|
475
|
+
/** Callback ao limpar filtros. */
|
|
476
|
+
onClear?: () => void;
|
|
477
|
+
/** Callback ao submeter o formulário de filtros. */
|
|
478
|
+
onSubmit?: SubmitEventHandler<HTMLFormElement>;
|
|
479
|
+
}
|
|
480
|
+
/**
|
|
481
|
+
* Propriedades do componente {@link Filter}.
|
|
482
|
+
*
|
|
483
|
+
* Combina título do card com campos e callbacks do drawer.
|
|
484
|
+
*/
|
|
485
|
+
interface FilterProps extends Omit<FilterCardProps, "renderFilter" | "setOpen">, Omit<FilterDrawerProps, "open" | "setOpen"> {
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
/**
|
|
489
|
+
* Filtro com card de título e drawer contendo {@link Input} e {@link InputSelect}.
|
|
490
|
+
*
|
|
491
|
+
* O card exibe o título da página/relatório e um botão para abrir o drawer quando
|
|
492
|
+
* há campos em `inputs` ou `inputSelect`. O drawer renderiza os campos em grid
|
|
493
|
+
* responsivo, com ações de limpar e pesquisar.
|
|
494
|
+
*
|
|
495
|
+
* @param props - Propriedades do componente. Detalhes em {@link FilterProps}.
|
|
496
|
+
* @param props.title - Título exibido no card.
|
|
497
|
+
* @param props.inputs - Campos de texto/máscara ({@link Input}).
|
|
498
|
+
* @param props.inputSelect - Campos de seleção ({@link InputSelect}).
|
|
499
|
+
* @param props.onClear - Callback ao limpar filtros.
|
|
500
|
+
* @param props.onSubmit - Callback ao pesquisar.
|
|
501
|
+
* @returns Elemento React com card e drawer de filtros.
|
|
502
|
+
*/
|
|
503
|
+
declare const Filter: ({ title, inputs, onClear, onSubmit, inputSelect, }: FilterProps) => ReactElement;
|
|
504
|
+
|
|
505
|
+
/**
|
|
506
|
+
* Define um campo {@link InputSelect} no filter preservando a inferência de `T`.
|
|
507
|
+
* Permite montar listas com tipos de opção diferentes sem union nem `as`.
|
|
508
|
+
*
|
|
509
|
+
* @example
|
|
510
|
+
* filterInputSelect({
|
|
511
|
+
* options: networks,
|
|
512
|
+
* optionLabel: (v) => v.desRede,
|
|
513
|
+
* input: { label: "Rede" },
|
|
514
|
+
* order: 1,
|
|
515
|
+
* })
|
|
516
|
+
*/
|
|
517
|
+
declare function filterInputSelect<T extends object, M extends boolean = false>(props: InputSelectProps<T, M> & InputSelectGridProps): FilterInputSelectField<M>;
|
|
518
|
+
|
|
519
|
+
export { Card, type CardClassName, type CardProps, DataTable, type DataTableProps, Dialog, type DialogProps, Filter, type FilterCardProps, type FilterDrawerField, type FilterDrawerProps, type FilterInputProps, type FilterInputSelectField, type FilterInputSelectItem, type FilterInputSelectProps, type FilterProps, Input, type InputProps, InputSelect, type InputSelectGridProps, type InputSelectProps, type InputType, Tab, type TabColorProps, type TabProps, Tabs, type TabsProps, filterInputSelect };
|