@data-c/ui 0.2.11 → 0.2.12

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
@@ -11,6 +11,7 @@ export { useDialogs } from '@toolpad/core';
11
11
  import { GridColDef as GridColDef$1, DataGridProps, GridRowsProp, GridRowSelectionModel, GridCallbackDetails, GridActionsCellItemProps } from '@mui/x-data-grid';
12
12
  import * as LucideIcons from 'lucide-react';
13
13
  import { LucideProps } from 'lucide-react';
14
+ import { TextFieldProps as TextFieldProps$1 } from '@mui/material/TextField';
14
15
 
15
16
  interface ButtonProps$2 extends ButtonProps$3 {
16
17
  isLoading?: boolean;
@@ -928,4 +929,26 @@ declare const Transporter: {
928
929
  Container: typeof TransporterContainer;
929
930
  };
930
931
 
931
- export { AlterarLicenca, AlterarLicencaProps, AlterarSenha, AlterarSenhaProps, Autocomplete, AutocompleteProps, Avatar, Breadcrumbs, BreadcrumbsItem, BreadcrumbsProps, Button$1 as Button, ButtonContainer, Button as ButtonGroup, Card, Checkbox, CheckboxProps, ColorsGrid, Content$1 as Content, ContentProps, ContentTitle, CurrencyCellStyle, CurrencyTextField, DataTable, DataTableOptions, DataTableOptionsProps, Dialog, DrawerMenu, DrawerMenuProps, Editable, EditableProps, Filter, FilterApiContext, FilterApiContextProps, FilterContainer$1 as FilterContainer, FilterControl, FilterDataContext, FilterDataContextProps, FilterOptions, FilterProps, FilterProvider, FilterProviderProps, Flag, GridColDef, Header, Icon, LabelValue, LabelValueProps, List$1 as List, LucideIcon as LucidIcon, Menu, MenuItemProps$1 as MenuItemProps, MioAuth, MioAuthProps, OptionStyles, Page, PageTitle$1 as PageTitle, PasswordTextField, List as Popover, Profile, ProfileProps, SearchTextField, Surface, Title, TitleProps, TitleVariant, Tooltip, TooltipProps, TransportableDataTableProps, Transporter, renderMenuItems, theme, useFilter, useFilterApi, useMenu, useTransporter };
932
+ type TipoDocumento = 'cpf' | 'cnpj' | 'auto';
933
+ type DocumentoTextFieldProps = TextFieldProps$1 & {
934
+ value?: string;
935
+ onChange?: (event: React__default.ChangeEvent<HTMLInputElement>) => void;
936
+ tipoDocumento?: TipoDocumento;
937
+ };
938
+ declare function DocumentoTextField(props: DocumentoTextFieldProps): react_jsx_runtime.JSX.Element;
939
+
940
+ type CEPTextFieldProps = TextFieldProps$1 & {
941
+ value?: string;
942
+ onChange?: (event: React__default.ChangeEvent<HTMLInputElement>) => void;
943
+ };
944
+ declare function CEPTextField(props: CEPTextFieldProps): react_jsx_runtime.JSX.Element;
945
+
946
+ type TipoTelefone = 'fixed' | 'mobile' | 'auto';
947
+ type TefeloneTextFieldProps = TextFieldProps$1 & {
948
+ value?: string;
949
+ onChange?: (event: React__default.ChangeEvent<HTMLInputElement>) => void;
950
+ tipoTelefone?: TipoTelefone;
951
+ };
952
+ declare function TefeloneTextField(props: TefeloneTextFieldProps): react_jsx_runtime.JSX.Element;
953
+
954
+ export { AlterarLicenca, AlterarLicencaProps, AlterarSenha, AlterarSenhaProps, Autocomplete, AutocompleteProps, Avatar, Breadcrumbs, BreadcrumbsItem, BreadcrumbsProps, Button$1 as Button, ButtonContainer, Button as ButtonGroup, CEPTextField, CEPTextFieldProps, Card, Checkbox, CheckboxProps, ColorsGrid, Content$1 as Content, ContentProps, ContentTitle, CurrencyCellStyle, CurrencyTextField, DataTable, DataTableOptions, DataTableOptionsProps, Dialog, DocumentoTextField, DocumentoTextFieldProps, DrawerMenu, DrawerMenuProps, Editable, EditableProps, Filter, FilterApiContext, FilterApiContextProps, FilterContainer$1 as FilterContainer, FilterControl, FilterDataContext, FilterDataContextProps, FilterOptions, FilterProps, FilterProvider, FilterProviderProps, Flag, GridColDef, Header, Icon, LabelValue, LabelValueProps, List$1 as List, LucideIcon as LucidIcon, Menu, MenuItemProps$1 as MenuItemProps, MioAuth, MioAuthProps, OptionStyles, Page, PageTitle$1 as PageTitle, PasswordTextField, List as Popover, Profile, ProfileProps, SearchTextField, Surface, TefeloneTextField, TefeloneTextFieldProps, TipoDocumento, TipoTelefone, Title, TitleProps, TitleVariant, Tooltip, TooltipProps, TransportableDataTableProps, Transporter, renderMenuItems, theme, useFilter, useFilterApi, useMenu, useTransporter };