@data-c/ui 0.1.50 → 0.1.52
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 +20 -2
- package/dist/index.js +8 -8
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import * as _mui_material from '@mui/material';
|
|
3
|
-
import { ButtonProps as ButtonProps$3, StackProps, CheckboxProps as CheckboxProps$1, DialogProps as DialogProps$1, IconButtonProps, DrawerProps, TypographyProps, ToolbarProps as ToolbarProps$1, TextFieldProps, FilterOptionsState, TooltipProps as TooltipProps$2, BoxProps, PaperProps, SvgIconProps, IconProps, InputBaseProps, ChipProps, Breakpoint, TableFooterProps } from '@mui/material';
|
|
3
|
+
import { ButtonProps as ButtonProps$3, StackProps, CheckboxProps as CheckboxProps$1, DialogProps as DialogProps$1, IconButtonProps, DrawerProps, TypographyProps, ToolbarProps as ToolbarProps$1, TextFieldProps, FilterOptionsState, TooltipProps as TooltipProps$2, BoxProps, PaperProps, SvgIconProps, IconProps, InputBaseProps, ChipProps, Breakpoint, TableFooterProps, MenuItemProps as MenuItemProps$2 } from '@mui/material';
|
|
4
4
|
import * as React$1 from 'react';
|
|
5
5
|
import React__default, { ReactNode, ComponentType } from 'react';
|
|
6
6
|
import { MUIDataTableProps } from 'mui-datatables';
|
|
@@ -239,6 +239,7 @@ interface MioAuthProps {
|
|
|
239
239
|
onLoginFailed: (err: any) => void;
|
|
240
240
|
appName: string;
|
|
241
241
|
banner?: ReactNode;
|
|
242
|
+
loginSection?: ReactNode;
|
|
242
243
|
}
|
|
243
244
|
declare function MioAuth(props: MioAuthProps): react_jsx_runtime.JSX.Element;
|
|
244
245
|
|
|
@@ -770,4 +771,21 @@ declare const DataTable: {
|
|
|
770
771
|
Root: typeof Root;
|
|
771
772
|
};
|
|
772
773
|
|
|
773
|
-
|
|
774
|
+
interface ListRootProps {
|
|
775
|
+
children: React.ReactNode;
|
|
776
|
+
}
|
|
777
|
+
declare function ListRoot({ children }: ListRootProps): react_jsx_runtime.JSX.Element;
|
|
778
|
+
|
|
779
|
+
declare function Listontent(props: StackProps): react_jsx_runtime.JSX.Element;
|
|
780
|
+
|
|
781
|
+
interface ListMenuItemProps extends MenuItemProps$2 {
|
|
782
|
+
}
|
|
783
|
+
declare function ListMenuItem(props: ListMenuItemProps): react_jsx_runtime.JSX.Element;
|
|
784
|
+
|
|
785
|
+
declare const List: {
|
|
786
|
+
Root: typeof ListRoot;
|
|
787
|
+
Content: typeof Listontent;
|
|
788
|
+
Item: typeof ListMenuItem;
|
|
789
|
+
};
|
|
790
|
+
|
|
791
|
+
export { AlterarSenha, AlterarSenhaProps, Avatar, Breadcrumbs, BreadcrumbsItem, BreadcrumbsProps, Button, ButtonContainer, Checkbox, CheckboxProps, ColorsGrid, Content$1 as Content, ContentProps, ContentTitle, CurrencyCellStyle, CurrencyTextField, DataTable$1 as DataTable, DataTableOptions, DataTableOptionsProps, DataTableProps, DataTable as DataTableV2, DeleteContainer, DeleteContainerProps, Dialog$1 as Dialog, DialogProps, Dialog as DialogV2, DrawerMenu, DrawerMenuProps, Editable, EditableProps, Filter, FilterApiContext, FilterApiContextProps, FilterContainer$1 as FilterContainer, FilterControl, FilterDataContext, FilterDataContextProps, FilterOptions, FilterProps, FilterProvider, FilterProviderProps, Flag, FormContainer, FormContainerProps, GridColDef, Header, Icon, LabelValue, LabelValueProps, List, Menu, MenuItemProps$1 as MenuItemProps, MioAuth, MioAuthProps, OptionStyles, PageTitle, PasswordTextField, Profile, ProfileProps, SearchTextField, Surface, Tooltip, TooltipProps, Transporter, TransporterProps, renderMenuItems, theme, useFilter, useFilterApi };
|