@leapdevuk/component-toolbox 0.0.96 → 0.0.97
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/autocomplete/Autocomplete.d.ts +10 -0
- package/dist/components/autocomplete/index.d.ts +1 -0
- package/dist/components/buttongroup/ButtonGroup.d.ts +3 -0
- package/dist/components/buttongroup/index.d.ts +1 -0
- package/dist/components/index.d.ts +5 -1
- package/dist/components/list/List.d.ts +3 -0
- package/dist/components/list/index.d.ts +1 -0
- package/dist/components/listitembutton/ListItemButton.d.ts +3 -0
- package/dist/components/listitembutton/index.d.ts +1 -0
- package/dist/index.cjs.js +46 -46
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +1636 -1727
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { AutocompleteRenderInputParams, SxProps, Theme } from '@mui/material';
|
|
2
|
+
interface IAutocompleteProps {
|
|
3
|
+
renderInput: (params: AutocompleteRenderInputParams) => React.ReactNode;
|
|
4
|
+
sx?: SxProps<Theme>;
|
|
5
|
+
getOptionLabel?: ((option: string) => string) | undefined;
|
|
6
|
+
onChange?: (event: React.SyntheticEvent, value: string) => void;
|
|
7
|
+
renderOption?: (props: React.HTMLAttributes<HTMLLIElement>, value: string) => React.ReactNode;
|
|
8
|
+
}
|
|
9
|
+
declare const LCTAutocomplete: (props: IAutocompleteProps) => import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export default LCTAutocomplete;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as LCTAutocomplete } from './Autocomplete';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as LCTButtonGroup } from './ButtonGroup';
|
|
@@ -4,14 +4,16 @@ export * from './accordionsummary';
|
|
|
4
4
|
export * from './accordiontable';
|
|
5
5
|
export * from './alert';
|
|
6
6
|
export * from './appbar';
|
|
7
|
+
export * from './autocomplete';
|
|
7
8
|
export * from './box';
|
|
8
9
|
export * from './button';
|
|
10
|
+
export * from './buttongroup';
|
|
9
11
|
export * from './checkbox';
|
|
10
12
|
export * from './chip';
|
|
11
13
|
export * from './currencyinput';
|
|
14
|
+
export * from './datagrid';
|
|
12
15
|
export * from './datepicker';
|
|
13
16
|
export * from './daterangepicker';
|
|
14
|
-
export * from './datagrid';
|
|
15
17
|
export * from './dialog';
|
|
16
18
|
export * from './drawer';
|
|
17
19
|
export * from './footer';
|
|
@@ -19,6 +21,8 @@ export * from './formdialog';
|
|
|
19
21
|
export * from './iconbutton';
|
|
20
22
|
export * from './inputadornment';
|
|
21
23
|
export * from './inputlabel';
|
|
24
|
+
export * from './list';
|
|
25
|
+
export * from './listitembutton';
|
|
22
26
|
export * from './loader';
|
|
23
27
|
export * from './menu';
|
|
24
28
|
export * from './menuitem';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as LCTList } from './List';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as LCTListItemButton } from './ListItemButton';
|