@acvl/frontend-components 0.0.11 → 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.
@@ -1,5 +1,8 @@
1
+ import { IconButtonProps } from "@mui/material";
1
2
  import React from "react";
2
3
  import { _HistorialDrawerProps } from "./_HistorialDrawer";
3
- type HistorialDrawerProps = Pick<_HistorialDrawerProps, 'endpoint'>;
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
- type HistorialDrawerProps = Pick<_HistorialDrawerProps, 'endpoint'>;
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acvl/frontend-components",
3
- "version": "0.0.11",
3
+ "version": "0.0.12",
4
4
  "description": "Component library for ACV frontend projects.",
5
5
  "homepage": "https://github.com/ACV-Logistics/acv-frontend-components#readme",
6
6
  "access": "public",