@data-c/ui 0.1.21 → 0.1.23
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 +1 -5
- package/dist/index.js +5 -5
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -235,6 +235,7 @@ interface MioAuthProps {
|
|
|
235
235
|
onAlreadyLogged?: () => void;
|
|
236
236
|
onLoginFailed: (err: any) => void;
|
|
237
237
|
appName: string;
|
|
238
|
+
banner: ReactNode;
|
|
238
239
|
}
|
|
239
240
|
declare function MioAuth(props: MioAuthProps): react_jsx_runtime.JSX.Element;
|
|
240
241
|
|
|
@@ -289,11 +290,6 @@ declare function Content(props: ContentProps): react_jsx_runtime.JSX.Element;
|
|
|
289
290
|
|
|
290
291
|
declare function Surface(props: PaperProps): react_jsx_runtime.JSX.Element;
|
|
291
292
|
|
|
292
|
-
declare module '@mui/material/styles' {
|
|
293
|
-
interface Components {
|
|
294
|
-
[key: string]: any;
|
|
295
|
-
}
|
|
296
|
-
}
|
|
297
293
|
declare const theme: _mui_material_styles.Theme;
|
|
298
294
|
|
|
299
295
|
export { AlterarSenha, AlterarSenhaProps, Button, ButtonContainer, Checkbox, CheckboxProps, ColorsGrid, Content, ContentProps, CurrencyCellStyle, CurrencyTextField, DataTable, DataTableOptions, DataTableOptionsProps, DataTableProps, DeleteContainer, DeleteContainerProps, Dialog, DialogProps, DrawerMenu, DrawerMenuProps, Editable, EditableProps, FilterContainer, FilterControl, FilterProps, Flag, FormContainer, FormContainerProps, LabelValue, LabelValueProps, MenuItemProps, MioAuth, MioAuthProps, OptionStyles, PageTitle, PasswordTextField, SearchTextField, Surface, Tooltip, TooltipProps, Transporter, TransporterProps, theme };
|