@data-c/ui 0.2.9 → 0.2.11
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 +8 -3
- package/dist/index.js +7 -7
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -717,6 +717,12 @@ interface ToolbarProps {
|
|
|
717
717
|
}
|
|
718
718
|
declare function Toolbar({ children }: ToolbarProps): react_jsx_runtime.JSX.Element;
|
|
719
719
|
|
|
720
|
+
interface TransportableDataTableProps<T = any> {
|
|
721
|
+
displayEditAction?: boolean;
|
|
722
|
+
displayDeleteAction?: boolean;
|
|
723
|
+
displayTransportAction?: boolean;
|
|
724
|
+
onTransport?: (data: T) => void;
|
|
725
|
+
}
|
|
720
726
|
declare const DataTable: {
|
|
721
727
|
CellActionTransport: typeof CellActionTransport;
|
|
722
728
|
SelectionCounter: typeof SelectionCounter;
|
|
@@ -818,8 +824,7 @@ interface CardTitleProps {
|
|
|
818
824
|
}
|
|
819
825
|
declare function CardTitle(props: CardTitleProps): react_jsx_runtime.JSX.Element;
|
|
820
826
|
|
|
821
|
-
interface CardContentProps {
|
|
822
|
-
children: React.ReactNode;
|
|
827
|
+
interface CardContentProps extends StackProps {
|
|
823
828
|
}
|
|
824
829
|
declare function CardContent(props: CardContentProps): react_jsx_runtime.JSX.Element;
|
|
825
830
|
|
|
@@ -923,4 +928,4 @@ declare const Transporter: {
|
|
|
923
928
|
Container: typeof TransporterContainer;
|
|
924
929
|
};
|
|
925
930
|
|
|
926
|
-
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, Transporter, renderMenuItems, theme, useFilter, useFilterApi, useMenu, useTransporter };
|
|
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 };
|