@leapdevuk/component-toolbox 0.0.85 → 0.0.87

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.
@@ -0,0 +1,3 @@
1
+ import { AlertProps } from '@mui/material';
2
+ declare const LCTAlert: (props: AlertProps) => import("react/jsx-runtime").JSX.Element;
3
+ export default LCTAlert;
@@ -0,0 +1 @@
1
+ export { default as LCTAlert } from './LCTAlert';
@@ -0,0 +1,9 @@
1
+ import { FC } from 'react';
2
+ interface ICheckBoxProps {
3
+ label?: string;
4
+ value?: boolean;
5
+ disabled?: boolean;
6
+ onChange?: (value: boolean) => void;
7
+ }
8
+ declare const LCTCheckBox: FC<ICheckBoxProps>;
9
+ export default LCTCheckBox;
@@ -0,0 +1 @@
1
+ export { default as LCTCheckbox } from './LCTCheckbox';
@@ -1,3 +1,4 @@
1
+ export * from './alert';
1
2
  export * from './appbar';
2
3
  export * from './button';
3
4
  export * from './chip';
@@ -8,6 +9,7 @@ export * from './datagrid';
8
9
  export * from './dialog';
9
10
  export * from './formdialog';
10
11
  export * from './iconbutton';
12
+ export * from './inputadornment';
11
13
  export * from './inputlabel';
12
14
  export * from './footer';
13
15
  export * from './loader';
@@ -17,5 +19,8 @@ export * from './numberdisplay';
17
19
  export * from './numberinput';
18
20
  export * from './select';
19
21
  export * from './snackbar';
22
+ export * from './staffavatar';
23
+ export * from './svgicon';
20
24
  export * from './textfield';
25
+ export * from './tooltip';
21
26
  export * from './typography';
@@ -0,0 +1,3 @@
1
+ import { InputAdornmentProps } from '@mui/material';
2
+ declare const LCTInputAdornment: (props: InputAdornmentProps) => import("react/jsx-runtime").JSX.Element;
3
+ export default LCTInputAdornment;
@@ -0,0 +1 @@
1
+ export { default as LCTInputAdornment } from './LCTInputAdornment';
@@ -0,0 +1,7 @@
1
+ interface IStaffAvatarProps {
2
+ staffInitials?: string;
3
+ hideMargin?: boolean;
4
+ fullName?: string;
5
+ }
6
+ declare const LCTStaffAvatar: (props: IStaffAvatarProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default LCTStaffAvatar;
@@ -0,0 +1 @@
1
+ export { default as LCTStaffAvatar } from './LCTStaffAvatar';
@@ -0,0 +1,3 @@
1
+ import { SvgIconProps } from '@mui/material';
2
+ declare const LCTSvgIcon: (props: SvgIconProps) => import("react/jsx-runtime").JSX.Element;
3
+ export default LCTSvgIcon;
@@ -0,0 +1 @@
1
+ export { default as LCTSvgIcon } from './LCTSvgIcon';
@@ -0,0 +1,3 @@
1
+ import { TooltipProps } from '@mui/material';
2
+ declare const LCTTooltip: (props: TooltipProps) => import("react/jsx-runtime").JSX.Element;
3
+ export default LCTTooltip;
@@ -0,0 +1 @@
1
+ export { default as LCTTooltip } from './LCTTooltip';
@@ -0,0 +1,6 @@
1
+ import { FC } from 'react';
2
+ interface IIconProps {
3
+ disabled?: boolean;
4
+ }
5
+ declare const CheckedCheckboxIcon: FC<IIconProps>;
6
+ export default CheckedCheckboxIcon;
@@ -0,0 +1,2 @@
1
+ declare function CheckboxIcon(): import("react/jsx-runtime").JSX.Element;
2
+ export default CheckboxIcon;