@data-c/ui 0.0.173 → 0.0.175
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 +5 -2
- package/dist/index.js +5 -5
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
-
import { ButtonProps as ButtonProps$1, StackProps, CheckboxProps as CheckboxProps$1, TextFieldProps, DialogProps as DialogProps$1, IconButtonProps, DrawerProps, TypographyProps, ToolbarProps, FilterOptionsState, TooltipProps as TooltipProps$2, BoxProps } from '@mui/material';
|
|
2
|
+
import { ButtonProps as ButtonProps$1, StackProps, CheckboxProps as CheckboxProps$1, TextFieldProps, DialogProps as DialogProps$1, IconButtonProps, DrawerProps, TypographyProps, ToolbarProps, FilterOptionsState, TooltipProps as TooltipProps$2, BoxProps, PaperProps } from '@mui/material';
|
|
3
3
|
import React$1, { ReactNode, ComponentType } from 'react';
|
|
4
4
|
import { MUIDataTableProps } from 'mui-datatables';
|
|
5
5
|
import { PaginationProps, TransportableDataTableProps, CredentialsConfigsInterface, AmbienteDataInterface } from '@data-c/hooks';
|
|
@@ -63,6 +63,7 @@ declare namespace DeleteContainer {
|
|
|
63
63
|
}
|
|
64
64
|
|
|
65
65
|
interface DataTableProps extends Omit<MUIDataTableProps, 'title'> {
|
|
66
|
+
surface?: boolean;
|
|
66
67
|
error?: string;
|
|
67
68
|
isLoading?: boolean;
|
|
68
69
|
isFetching?: boolean;
|
|
@@ -285,6 +286,8 @@ interface ContentProps extends BoxProps {
|
|
|
285
286
|
}
|
|
286
287
|
declare function Content(props: ContentProps): react_jsx_runtime.JSX.Element;
|
|
287
288
|
|
|
289
|
+
declare function Surface(props: PaperProps): react_jsx_runtime.JSX.Element;
|
|
290
|
+
|
|
288
291
|
declare module '@mui/material/styles' {
|
|
289
292
|
interface Components {
|
|
290
293
|
[key: string]: any;
|
|
@@ -292,4 +295,4 @@ declare module '@mui/material/styles' {
|
|
|
292
295
|
}
|
|
293
296
|
declare const theme: _mui_material_styles.Theme;
|
|
294
297
|
|
|
295
|
-
export { AlterarSenha, AlterarSenhaProps, Button, ButtonContainer, Checkbox, CheckboxProps, ColorsGrid, Content, ContentProps, CurrencyCellStyle, CurrencyTextField, DataTable, DataTableOptions, DataTableOptionsProps, DataTableProps, DeleteContainer, DeleteContainerProps, Dialog, DialogProps, DrawerMenu, DrawerMenuProps, Editable, EditableProps, FilterContainer, FilterControl, FilterProps, Flag, FormContainer, FormContainerProps, LabelValue, LabelValueProps, MenuItemProps, MioAuth, MioAuthProps, OptionStyles, PageTitle, PasswordTextField, SearchTextField, Tooltip, TooltipProps, Transporter, TransporterProps, theme };
|
|
298
|
+
export { AlterarSenha, AlterarSenhaProps, Button, ButtonContainer, Checkbox, CheckboxProps, ColorsGrid, Content, ContentProps, CurrencyCellStyle, CurrencyTextField, DataTable, DataTableOptions, DataTableOptionsProps, DataTableProps, DeleteContainer, DeleteContainerProps, Dialog, DialogProps, DrawerMenu, DrawerMenuProps, Editable, EditableProps, FilterContainer, FilterControl, FilterProps, Flag, FormContainer, FormContainerProps, LabelValue, LabelValueProps, MenuItemProps, MioAuth, MioAuthProps, OptionStyles, PageTitle, PasswordTextField, SearchTextField, Surface, Tooltip, TooltipProps, Transporter, TransporterProps, theme };
|