@data-c/ui 0.2.18 → 0.2.20
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 +6 -3
- package/dist/index.js +7 -7
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -768,6 +768,8 @@ declare const List$1: {
|
|
|
768
768
|
|
|
769
769
|
interface PopoverRoot {
|
|
770
770
|
children: ReactNode;
|
|
771
|
+
open?: boolean;
|
|
772
|
+
onOpenChange?: (open: boolean) => void;
|
|
771
773
|
}
|
|
772
774
|
declare function PopoverRoot(props: PopoverRoot): react_jsx_runtime.JSX.Element;
|
|
773
775
|
|
|
@@ -947,12 +949,13 @@ type CEPTextFieldProps = TextFieldProps$1 & {
|
|
|
947
949
|
declare function CEPTextField(props: CEPTextFieldProps): react_jsx_runtime.JSX.Element;
|
|
948
950
|
|
|
949
951
|
type TipoTelefone = 'fixed' | 'mobile' | 'auto';
|
|
950
|
-
type
|
|
952
|
+
type TelefoneTextFieldProps = TextFieldProps$1 & {
|
|
951
953
|
value?: string;
|
|
952
954
|
onChange?: (event: React__default.ChangeEvent<HTMLInputElement>) => void;
|
|
953
955
|
tipoTelefone?: TipoTelefone;
|
|
956
|
+
allowDDI?: boolean;
|
|
954
957
|
};
|
|
955
|
-
declare function
|
|
958
|
+
declare function TelefoneTextField(props: TelefoneTextFieldProps): react_jsx_runtime.JSX.Element;
|
|
956
959
|
|
|
957
960
|
interface Article {
|
|
958
961
|
id: number;
|
|
@@ -1017,4 +1020,4 @@ declare namespace DateRangePicker {
|
|
|
1017
1020
|
};
|
|
1018
1021
|
}
|
|
1019
1022
|
|
|
1020
|
-
export { AlterarLicenca, AlterarLicencaProps, AlterarSenha, AlterarSenhaProps, Article, 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, DatePicker, DatePickerProvider, DateRange, DateRangePicker, 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, NotaVersao, OptionStyles, Page, PageTitle$1 as PageTitle, PasswordTextField, List as Popover, Profile, ProfileProps, SearchTextField, Surface,
|
|
1023
|
+
export { AlterarLicenca, AlterarLicencaProps, AlterarSenha, AlterarSenhaProps, Article, 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, DatePicker, DatePickerProvider, DateRange, DateRangePicker, 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, NotaVersao, OptionStyles, Page, PageTitle$1 as PageTitle, PasswordTextField, List as Popover, Profile, ProfileProps, SearchTextField, Surface, TelefoneTextField, TelefoneTextFieldProps, TipoDocumento, TipoTelefone, Title, TitleProps, TitleVariant, Tooltip, TooltipProps, TransportableDataTableProps, Transporter, VersaoProps, renderMenuItems, theme, useFilter, useFilterApi, useMenu, useTransporter };
|