@data-c/ui 0.0.147-alpha.0 → 0.0.148-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 +10 -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,15 @@ 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
|
+
displayEditButton?: boolean;
|
|
279
|
+
displaySaveButton?: boolean;
|
|
280
|
+
}
|
|
281
|
+
declare function Editable(props: EditableProps): react_jsx_runtime.JSX.Element;
|
|
282
|
+
|
|
274
283
|
declare module '@mui/material/styles' {
|
|
275
284
|
interface Components {
|
|
276
285
|
[key: string]: any;
|
|
@@ -278,4 +287,4 @@ declare module '@mui/material/styles' {
|
|
|
278
287
|
}
|
|
279
288
|
declare const theme: _mui_material_styles.Theme;
|
|
280
289
|
|
|
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 };
|
|
290
|
+
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 };
|