@acvl/frontend-components 0.0.10 → 0.0.12
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/cjs/index.js +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/src/components/v1/drawers/HistorialDrawer/index.d.ts +4 -1
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/src/components/v1/drawers/HistorialDrawer/index.d.ts +4 -1
- package/dist/index.d.ts +4 -2
- package/package.json +1 -1
|
@@ -1,5 +1,8 @@
|
|
|
1
|
+
import { IconButtonProps } from "@mui/material";
|
|
1
2
|
import React from "react";
|
|
2
3
|
import { _HistorialDrawerProps } from "./_HistorialDrawer";
|
|
3
|
-
|
|
4
|
+
interface HistorialDrawerProps extends Pick<_HistorialDrawerProps, 'endpoint'> {
|
|
5
|
+
iconButtonProps?: IconButtonProps;
|
|
6
|
+
}
|
|
4
7
|
declare const HistorialDrawer: React.FC<HistorialDrawerProps>;
|
|
5
8
|
export default HistorialDrawer;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _mui_material from '@mui/material';
|
|
2
|
-
import { ButtonProps, ButtonGroupProps, AlertProps, AutocompleteProps, SliderProps, SwitchProps, GridProps, BoxProps, MenuProps, DrawerProps, PaletteColorOptions } from '@mui/material';
|
|
2
|
+
import { ButtonProps, ButtonGroupProps, AlertProps, AutocompleteProps, SliderProps, SwitchProps, GridProps, BoxProps, MenuProps, DrawerProps, IconButtonProps, PaletteColorOptions } from '@mui/material';
|
|
3
3
|
import * as React from 'react';
|
|
4
4
|
import React__default, { ReactNode, Dispatch, SetStateAction, JSX, RefObject } from 'react';
|
|
5
5
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
@@ -783,7 +783,9 @@ interface _HistorialDrawerProps {
|
|
|
783
783
|
endpoint?: string;
|
|
784
784
|
}
|
|
785
785
|
|
|
786
|
-
|
|
786
|
+
interface HistorialDrawerProps extends Pick<_HistorialDrawerProps, 'endpoint'> {
|
|
787
|
+
iconButtonProps?: IconButtonProps;
|
|
788
|
+
}
|
|
787
789
|
declare const HistorialDrawer: React__default.FC<HistorialDrawerProps>;
|
|
788
790
|
|
|
789
791
|
/**
|
package/package.json
CHANGED