@data-c/ui 0.0.147-alpha.0 → 0.0.149-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 +11 -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
|
@@ -271,6 +271,16 @@ declare function DrawerMenu(props: DrawerMenuProps): react_jsx_runtime.JSX.Eleme
|
|
|
271
271
|
|
|
272
272
|
declare function PasswordTextField(props: TextFieldProps): react_jsx_runtime.JSX.Element;
|
|
273
273
|
|
|
274
|
+
interface EditableProps {
|
|
275
|
+
onChange: (value?: string) => void;
|
|
276
|
+
value?: string;
|
|
277
|
+
typographyProps?: TypographyProps;
|
|
278
|
+
textFieldProps?: TextFieldProps;
|
|
279
|
+
displayEditButton?: boolean;
|
|
280
|
+
displaySaveButton?: boolean;
|
|
281
|
+
}
|
|
282
|
+
declare function Editable(props: EditableProps): react_jsx_runtime.JSX.Element;
|
|
283
|
+
|
|
274
284
|
declare module '@mui/material/styles' {
|
|
275
285
|
interface Components {
|
|
276
286
|
[key: string]: any;
|
|
@@ -278,4 +288,4 @@ declare module '@mui/material/styles' {
|
|
|
278
288
|
}
|
|
279
289
|
declare const theme: _mui_material_styles.Theme;
|
|
280
290
|
|
|
281
|
-
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 };
|
|
291
|
+
export { AlterarSenha, AlterarSenhaProps, Button, ButtonContainer, Checkbox, CheckboxProps, ColorsGrid, 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, Tooltip, TooltipProps, Transporter, TransporterProps, theme };
|