@leapdevuk/component-toolbox 0.0.88 → 0.0.89
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/components/accordion/LCTAccordion.d.ts +3 -0
- package/dist/components/accordion/index.d.ts +1 -0
- package/dist/components/accordiontable/LCTAccordionSummary.d.ts +6 -0
- package/dist/components/accordiontable/index.d.ts +1 -0
- package/dist/components/drawer/LCTDrawer.d.ts +10 -0
- package/dist/components/drawer/index.d.ts +1 -0
- package/dist/components/index.d.ts +5 -0
- package/dist/components/textareaautosize/LCTTextareaAutosize.d.ts +3 -0
- package/dist/components/textareaautosize/index.d.ts +1 -0
- package/dist/index.cjs.js +31 -31
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +7528 -7440
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as LCTAccordion } from './LCTAccordion';
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
declare const LCTAccordionSummary: import('@emotion/styled').StyledComponent<import('@mui/material').AccordionSummaryOwnProps & Omit<import('@mui/material').ButtonBaseOwnProps, "classes"> & import('@mui/material/OverridableComponent').CommonProps & Omit<Omit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
2
|
+
ref?: ((instance: HTMLDivElement | null) => void | import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import('react').RefObject<HTMLDivElement> | null | undefined;
|
|
3
|
+
}, "className" | "style" | "classes" | "children" | "sx" | "disabled" | "tabIndex" | "action" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "expandIcon"> & {
|
|
4
|
+
component?: React.ElementType;
|
|
5
|
+
} & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme>, {}, {}>;
|
|
6
|
+
export default LCTAccordionSummary;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as LCTAccordionSummary } from './LCTAccordionSummary';
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { FC } from 'react';
|
|
2
|
+
interface IDrawerProps {
|
|
3
|
+
leftContent: React.ReactNode;
|
|
4
|
+
rightContent: React.ReactNode;
|
|
5
|
+
height: number | string;
|
|
6
|
+
defaultDrawerWidth: number;
|
|
7
|
+
minDrawerWidth?: number;
|
|
8
|
+
}
|
|
9
|
+
declare const LCTDrawer: FC<IDrawerProps>;
|
|
10
|
+
export default LCTDrawer;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as LCTDrawer } from './LCTDrawer';
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
export * from './accordion';
|
|
2
|
+
export * from './accordiontable';
|
|
1
3
|
export * from './alert';
|
|
2
4
|
export * from './appbar';
|
|
3
5
|
export * from './button';
|
|
@@ -7,7 +9,9 @@ export * from './currencyinput';
|
|
|
7
9
|
export * from './datepicker';
|
|
8
10
|
export * from './daterangepicker';
|
|
9
11
|
export * from './datagrid';
|
|
12
|
+
export * from './drawer';
|
|
10
13
|
export * from './dialog';
|
|
14
|
+
export * from './drawer';
|
|
11
15
|
export * from './formdialog';
|
|
12
16
|
export * from './iconbutton';
|
|
13
17
|
export * from './inputadornment';
|
|
@@ -22,6 +26,7 @@ export * from './select';
|
|
|
22
26
|
export * from './snackbar';
|
|
23
27
|
export * from './staffavatar';
|
|
24
28
|
export * from './svgicon';
|
|
29
|
+
export * from './textareaautosize';
|
|
25
30
|
export * from './textfield';
|
|
26
31
|
export * from './tooltip';
|
|
27
32
|
export * from './typography';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as LCTTextareaAutosize } from './LCTTextareaAutosize';
|