@data-c/ui 0.0.129-alpha.0 → 0.0.130-alpha.0
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 +12 -1
- package/dist/index.js +5 -5
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -219,6 +219,15 @@ interface MioAuthProps {
|
|
|
219
219
|
}
|
|
220
220
|
declare function MioAuth(props: MioAuthProps): react_jsx_runtime.JSX.Element;
|
|
221
221
|
|
|
222
|
+
interface AlterarSenhaProps {
|
|
223
|
+
credentialsConfig: CredentialsConfigsInterface;
|
|
224
|
+
isOpen: boolean;
|
|
225
|
+
onClose: () => void;
|
|
226
|
+
onSuccess?: () => void;
|
|
227
|
+
onFailed?: (err: any) => void;
|
|
228
|
+
}
|
|
229
|
+
declare function AlterarSenha(props: AlterarSenhaProps): react_jsx_runtime.JSX.Element;
|
|
230
|
+
|
|
222
231
|
interface MenuItemProps {
|
|
223
232
|
id: string;
|
|
224
233
|
label: string;
|
|
@@ -242,6 +251,8 @@ interface DrawerMenuProps extends DrawerProps {
|
|
|
242
251
|
}
|
|
243
252
|
declare function DrawerMenu(props: DrawerMenuProps): react_jsx_runtime.JSX.Element;
|
|
244
253
|
|
|
254
|
+
declare function PasswordTextField(props: TextFieldProps): react_jsx_runtime.JSX.Element;
|
|
255
|
+
|
|
245
256
|
declare module '@mui/material/styles' {
|
|
246
257
|
interface Components {
|
|
247
258
|
[key: string]: any;
|
|
@@ -249,4 +260,4 @@ declare module '@mui/material/styles' {
|
|
|
249
260
|
}
|
|
250
261
|
declare const theme: _mui_material_styles.Theme;
|
|
251
262
|
|
|
252
|
-
export { Button, ButtonContainer, Checkbox, CheckboxProps, ColorsGrid, CurrencyCellStyle, CurrencyTextField, DataTable, DataTableOptions, DataTableOptionsProps, DataTableProps, DeleteContainer, DeleteContainerProps, Dialog, DialogProps, DrawerMenu, DrawerMenuProps, FilterContainer, FilterControl, FilterProps, Flag, FormContainer, FormContainerProps, LabelValue, LabelValueProps, MenuItemProps, MioAuth, MioAuthProps, OptionStyles, PageTitle, SearchTextField, Tooltip, TooltipProps, Transporter, TransporterProps, theme };
|
|
263
|
+
export { AlterarSenha, AlterarSenhaProps, Button, ButtonContainer, Checkbox, CheckboxProps, ColorsGrid, CurrencyCellStyle, CurrencyTextField, DataTable, DataTableOptions, DataTableOptionsProps, DataTableProps, DeleteContainer, DeleteContainerProps, Dialog, DialogProps, DrawerMenu, DrawerMenuProps, FilterContainer, FilterControl, FilterProps, Flag, FormContainer, FormContainerProps, LabelValue, LabelValueProps, MenuItemProps, MioAuth, MioAuthProps, OptionStyles, PageTitle, PasswordTextField, SearchTextField, Tooltip, TooltipProps, Transporter, TransporterProps, theme };
|