@data-c/ui 0.1.69 → 0.1.71
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 +13 -2
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/package.json +3 -2
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
|
2
2
|
import * as _mui_material from '@mui/material';
|
|
3
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, ChipProps, InputBaseProps, Breakpoint, TableFooterProps, MenuItemProps as MenuItemProps$2, PopoverProps } from '@mui/material';
|
|
4
4
|
import * as React$1 from 'react';
|
|
5
|
-
import React__default, { ReactNode, ComponentType } from 'react';
|
|
5
|
+
import React__default, { ReactNode, ComponentType, ForwardRefExoticComponent, RefAttributes } from 'react';
|
|
6
6
|
import { MUIDataTableProps } from 'mui-datatables';
|
|
7
7
|
import { PaginationProps as PaginationProps$1, TransportableDataTableProps, CredentialsConfigsInterface, AmbienteDataInterface, Empresa } from '@data-c/hooks';
|
|
8
8
|
import * as _mui_material_styles from '@mui/material/styles';
|
|
@@ -10,6 +10,8 @@ import { AvatarProps } from '@mui/material/Avatar';
|
|
|
10
10
|
import { DialogComponent, DialogProps as DialogProps$2 } from '@toolpad/core';
|
|
11
11
|
export { useDialogs } from '@toolpad/core';
|
|
12
12
|
import { GridActionsCellItemProps, GridColDef as GridColDef$1, DataGridProps, GridRowsProp, GridRowSelectionModel, GridCallbackDetails } from '@mui/x-data-grid';
|
|
13
|
+
import * as LucideIcons from 'lucide-react';
|
|
14
|
+
import { LucideProps } from 'lucide-react';
|
|
13
15
|
|
|
14
16
|
interface ButtonProps$2 extends ButtonProps$3 {
|
|
15
17
|
isLoading?: boolean;
|
|
@@ -887,4 +889,13 @@ declare const Card: {
|
|
|
887
889
|
Title: typeof CardTitle;
|
|
888
890
|
};
|
|
889
891
|
|
|
890
|
-
|
|
892
|
+
type LucideIconComponent = ForwardRefExoticComponent<Omit<LucideProps, 'ref'> & RefAttributes<SVGSVGElement>>;
|
|
893
|
+
type IconName = {
|
|
894
|
+
[K in keyof typeof LucideIcons]: (typeof LucideIcons)[K] extends LucideIconComponent ? K : never;
|
|
895
|
+
}[keyof typeof LucideIcons];
|
|
896
|
+
interface LucideIconProps extends LucideProps {
|
|
897
|
+
name: IconName;
|
|
898
|
+
}
|
|
899
|
+
declare const LucideIcon: ({ name, size, strokeWidth, color, ...props }: LucideIconProps) => react_jsx_runtime.JSX.Element;
|
|
900
|
+
|
|
901
|
+
export { AlterarLicenca, AlterarLicencaProps, AlterarSenha, AlterarSenhaProps, 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$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$1 as List, LucideIcon as LucidIcon, Menu, MenuItemProps$1 as MenuItemProps, MioAuth, MioAuthProps, OptionStyles, PageTitle, PasswordTextField, List as Popover, Profile, ProfileProps, SearchTextField, Surface, Tooltip, TooltipProps, Transporter, TransporterProps, renderMenuItems, theme, useFilter, useFilterApi, useMenu };
|