@data-c/ui 0.1.37 → 0.1.38
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 +19 -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
|
@@ -512,4 +512,22 @@ declare const Menu: {
|
|
|
512
512
|
Item: typeof MenuItem;
|
|
513
513
|
};
|
|
514
514
|
|
|
515
|
-
|
|
515
|
+
interface BreadcrumbsItem {
|
|
516
|
+
link: string;
|
|
517
|
+
label: string;
|
|
518
|
+
}
|
|
519
|
+
interface BreadcrumbsProps {
|
|
520
|
+
links: Array<BreadcrumbsItem>;
|
|
521
|
+
}
|
|
522
|
+
declare function Breadcrumbs(props: BreadcrumbsProps): react_jsx_runtime.JSX.Element;
|
|
523
|
+
|
|
524
|
+
interface ContentTitleRootProps {
|
|
525
|
+
children: ReactNode;
|
|
526
|
+
}
|
|
527
|
+
declare function ContentTitleRoot(props: ContentTitleRootProps): react_jsx_runtime.JSX.Element;
|
|
528
|
+
|
|
529
|
+
declare const ContentTitle: {
|
|
530
|
+
Root: typeof ContentTitleRoot;
|
|
531
|
+
};
|
|
532
|
+
|
|
533
|
+
export { AlterarSenha, AlterarSenhaProps, Avatar, Breadcrumbs, BreadcrumbsItem, BreadcrumbsProps, Button, ButtonContainer, Checkbox, CheckboxProps, ColorsGrid, Content, ContentProps, ContentTitle, CurrencyCellStyle, CurrencyTextField, DataTable, DataTableOptions, DataTableOptionsProps, DataTableProps, DeleteContainer, DeleteContainerProps, Dialog$1 as Dialog, DialogProps, Dialog as DialogV2, DrawerMenu, DrawerMenuProps, Editable, EditableProps, FilterContainer, FilterControl, FilterProps, Flag, FormContainer, FormContainerProps, Header, Icon, LabelValue, LabelValueProps, Menu, MenuItemProps$1 as MenuItemProps, MioAuth, MioAuthProps, OptionStyles, PageTitle, PasswordTextField, Profile, ProfileProps, SearchTextField, Surface, Tooltip, TooltipProps, Transporter, TransporterProps, theme };
|