@data-c/ui 0.2.14 → 0.2.16
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 +36 -1
- package/dist/index.js +7 -7
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -393,6 +393,7 @@ interface MenuItemProps {
|
|
|
393
393
|
isFirstLevel?: boolean;
|
|
394
394
|
selected?: boolean;
|
|
395
395
|
onClick?: (link: string) => void;
|
|
396
|
+
secondaryLabel?: React.ReactNode;
|
|
396
397
|
}
|
|
397
398
|
declare function MenuItem(props: MenuItemProps): react_jsx_runtime.JSX.Element;
|
|
398
399
|
|
|
@@ -952,4 +953,38 @@ type TefeloneTextFieldProps = TextFieldProps$1 & {
|
|
|
952
953
|
};
|
|
953
954
|
declare function TefeloneTextField(props: TefeloneTextFieldProps): react_jsx_runtime.JSX.Element;
|
|
954
955
|
|
|
955
|
-
|
|
956
|
+
interface Article {
|
|
957
|
+
id: number;
|
|
958
|
+
url: string;
|
|
959
|
+
html_url: string;
|
|
960
|
+
author_id: number;
|
|
961
|
+
comments_disabled: boolean;
|
|
962
|
+
draft: boolean;
|
|
963
|
+
promoted: boolean;
|
|
964
|
+
position: number;
|
|
965
|
+
vote_sum: number;
|
|
966
|
+
vote_count: number;
|
|
967
|
+
section_id: number;
|
|
968
|
+
created_at: string;
|
|
969
|
+
updated_at: string;
|
|
970
|
+
name: string;
|
|
971
|
+
title: string;
|
|
972
|
+
source_locale: string;
|
|
973
|
+
locale: string;
|
|
974
|
+
outdated: boolean;
|
|
975
|
+
outdated_locales: string[];
|
|
976
|
+
edited_at: string;
|
|
977
|
+
user_segment_id: number | null;
|
|
978
|
+
permission_group_id: number;
|
|
979
|
+
content_tag_ids: number[];
|
|
980
|
+
label_names: string[];
|
|
981
|
+
body: string;
|
|
982
|
+
}
|
|
983
|
+
interface VersaoProps {
|
|
984
|
+
versao: string;
|
|
985
|
+
sectionId: string;
|
|
986
|
+
authorization?: string;
|
|
987
|
+
}
|
|
988
|
+
declare function NotaVersao(props: VersaoProps): react_jsx_runtime.JSX.Element;
|
|
989
|
+
|
|
990
|
+
export { AlterarLicenca, AlterarLicencaProps, AlterarSenha, AlterarSenhaProps, Article, Autocomplete, AutocompleteProps, Avatar, Breadcrumbs, BreadcrumbsItem, BreadcrumbsProps, Button$1 as Button, ButtonContainer, Button as ButtonGroup, CEPTextField, CEPTextFieldProps, Card, Checkbox, CheckboxProps, ColorsGrid, Content$1 as Content, ContentProps, ContentTitle, CurrencyCellStyle, CurrencyTextField, DataTable, DataTableOptions, DataTableOptionsProps, Dialog, DocumentoTextField, DocumentoTextFieldProps, 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, NotaVersao, OptionStyles, Page, PageTitle$1 as PageTitle, PasswordTextField, List as Popover, Profile, ProfileProps, SearchTextField, Surface, TefeloneTextField, TefeloneTextFieldProps, TipoDocumento, TipoTelefone, Title, TitleProps, TitleVariant, Tooltip, TooltipProps, TransportableDataTableProps, Transporter, VersaoProps, renderMenuItems, theme, useFilter, useFilterApi, useMenu, useTransporter };
|