@data-c/ui 0.2.15 → 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 +35 -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
|
@@ -953,4 +953,38 @@ type TefeloneTextFieldProps = TextFieldProps$1 & {
|
|
|
953
953
|
};
|
|
954
954
|
declare function TefeloneTextField(props: TefeloneTextFieldProps): react_jsx_runtime.JSX.Element;
|
|
955
955
|
|
|
956
|
-
|
|
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 };
|