@data-c/ui 0.1.64 → 0.1.65
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 +28 -1
- package/dist/index.js +6 -6
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -848,4 +848,31 @@ declare const Button: {
|
|
|
848
848
|
Button: typeof ButtonGroupButton;
|
|
849
849
|
};
|
|
850
850
|
|
|
851
|
-
|
|
851
|
+
interface CardRootProps {
|
|
852
|
+
children: React__default.ReactNode;
|
|
853
|
+
}
|
|
854
|
+
declare function CardRoot(props: CardRootProps): react_jsx_runtime.JSX.Element;
|
|
855
|
+
|
|
856
|
+
interface CardHeaderProps {
|
|
857
|
+
children: React__default.ReactNode;
|
|
858
|
+
}
|
|
859
|
+
declare function CardHeader(props: CardHeaderProps): react_jsx_runtime.JSX.Element;
|
|
860
|
+
|
|
861
|
+
interface CardTitleProps {
|
|
862
|
+
title: string;
|
|
863
|
+
}
|
|
864
|
+
declare function CardTitle(props: CardTitleProps): react_jsx_runtime.JSX.Element;
|
|
865
|
+
|
|
866
|
+
interface CardContentProps {
|
|
867
|
+
children: React.ReactNode;
|
|
868
|
+
}
|
|
869
|
+
declare function CardContent(props: CardContentProps): react_jsx_runtime.JSX.Element;
|
|
870
|
+
|
|
871
|
+
declare const Card: {
|
|
872
|
+
Root: typeof CardRoot;
|
|
873
|
+
Content: typeof CardContent;
|
|
874
|
+
Header: typeof CardHeader;
|
|
875
|
+
Title: typeof CardTitle;
|
|
876
|
+
};
|
|
877
|
+
|
|
878
|
+
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, 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 };
|