@data-c/ui 0.0.146-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 +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
|
@@ -186,6 +186,7 @@ interface PageTitleProps {
|
|
|
186
186
|
children?: ReactNode;
|
|
187
187
|
onBack?: () => void;
|
|
188
188
|
onClose?: () => void;
|
|
189
|
+
onUpdate?: (value: string) => void;
|
|
189
190
|
}
|
|
190
191
|
declare function PageTitle(props: PageTitleProps): react_jsx_runtime.JSX.Element;
|
|
191
192
|
|
|
@@ -270,6 +271,15 @@ declare function DrawerMenu(props: DrawerMenuProps): react_jsx_runtime.JSX.Eleme
|
|
|
270
271
|
|
|
271
272
|
declare function PasswordTextField(props: TextFieldProps): react_jsx_runtime.JSX.Element;
|
|
272
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
|
+
|
|
273
283
|
declare module '@mui/material/styles' {
|
|
274
284
|
interface Components {
|
|
275
285
|
[key: string]: any;
|
|
@@ -277,4 +287,4 @@ declare module '@mui/material/styles' {
|
|
|
277
287
|
}
|
|
278
288
|
declare const theme: _mui_material_styles.Theme;
|
|
279
289
|
|
|
280
|
-
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 };
|