@matteoaliano/forest-ui 0.1.0

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,166 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+ import { Theme } from '@mui/material/styles';
3
+ export { c as colors, a as container, d as display, f as focusRings, b as fontFamily, e as fontSize, g as fontWeight, h as forestTheme, i as forestThemeOptions, l as lineHeight, r as radius, s as spacing, j as tokenShadows, w as widths } from './index-DjsgXYWG.mjs';
4
+ import { AutocompleteProps } from '@mui/material/Autocomplete';
5
+ export { AutocompleteProps } from '@mui/material/Autocomplete';
6
+ import { ButtonProps } from '@mui/material/Button';
7
+ export { ButtonProps } from '@mui/material/Button';
8
+ import { ButtonGroupProps } from '@mui/material/ButtonGroup';
9
+ export { ButtonGroupProps } from '@mui/material/ButtonGroup';
10
+ import { CheckboxProps } from '@mui/material/Checkbox';
11
+ export { CheckboxProps } from '@mui/material/Checkbox';
12
+ import { FabProps } from '@mui/material/Fab';
13
+ export { FabProps } from '@mui/material/Fab';
14
+ import { RadioGroupProps } from '@mui/material/RadioGroup';
15
+ export { RadioGroupProps } from '@mui/material/RadioGroup';
16
+ import { RadioProps } from '@mui/material/Radio';
17
+ export { RadioProps } from '@mui/material/Radio';
18
+ import { SelectProps } from '@mui/material/Select';
19
+ export { SelectProps } from '@mui/material/Select';
20
+ import { MenuItemProps } from '@mui/material/MenuItem';
21
+ export { MenuItemProps } from '@mui/material/MenuItem';
22
+ import { SwitchProps } from '@mui/material/Switch';
23
+ export { SwitchProps } from '@mui/material/Switch';
24
+ import { TextFieldProps } from '@mui/material/TextField';
25
+ export { TextFieldProps } from '@mui/material/TextField';
26
+ import { ToggleButtonProps } from '@mui/material/ToggleButton';
27
+ export { ToggleButtonProps } from '@mui/material/ToggleButton';
28
+ import { ToggleButtonGroupProps } from '@mui/material/ToggleButtonGroup';
29
+ export { ToggleButtonGroupProps } from '@mui/material/ToggleButtonGroup';
30
+ import { BadgeProps } from '@mui/material/Badge';
31
+ export { BadgeProps } from '@mui/material/Badge';
32
+ import { ChipProps } from '@mui/material/Chip';
33
+ export { ChipProps } from '@mui/material/Chip';
34
+ import { DividerProps } from '@mui/material/Divider';
35
+ export { DividerProps } from '@mui/material/Divider';
36
+ import { ListProps } from '@mui/material/List';
37
+ export { ListProps } from '@mui/material/List';
38
+ import { ListItemProps } from '@mui/material/ListItem';
39
+ export { ListItemProps } from '@mui/material/ListItem';
40
+ import { ListItemButtonProps } from '@mui/material/ListItemButton';
41
+ export { ListItemButtonProps } from '@mui/material/ListItemButton';
42
+ import { ListItemIconProps } from '@mui/material/ListItemIcon';
43
+ export { ListItemIconProps } from '@mui/material/ListItemIcon';
44
+ import { ListItemTextProps } from '@mui/material/ListItemText';
45
+ export { ListItemTextProps } from '@mui/material/ListItemText';
46
+ import { ListItemAvatarProps } from '@mui/material/ListItemAvatar';
47
+ export { ListItemAvatarProps } from '@mui/material/ListItemAvatar';
48
+ import { ListSubheaderProps } from '@mui/material/ListSubheader';
49
+ export { ListSubheaderProps } from '@mui/material/ListSubheader';
50
+ import { TableProps } from '@mui/material/Table';
51
+ export { TableProps } from '@mui/material/Table';
52
+ import { TableBodyProps } from '@mui/material/TableBody';
53
+ export { TableBodyProps } from '@mui/material/TableBody';
54
+ import { TableCellProps } from '@mui/material/TableCell';
55
+ export { TableCellProps } from '@mui/material/TableCell';
56
+ import { TableContainerProps } from '@mui/material/TableContainer';
57
+ export { TableContainerProps } from '@mui/material/TableContainer';
58
+ import { TableHeadProps } from '@mui/material/TableHead';
59
+ export { TableHeadProps } from '@mui/material/TableHead';
60
+ import { TableRowProps } from '@mui/material/TableRow';
61
+ export { TableRowProps } from '@mui/material/TableRow';
62
+ import { TooltipProps } from '@mui/material/Tooltip';
63
+ export { TooltipProps } from '@mui/material/Tooltip';
64
+ import { TypographyProps } from '@mui/material/Typography';
65
+ export { TypographyProps } from '@mui/material/Typography';
66
+ import { AlertProps } from '@mui/material/Alert';
67
+ export { AlertProps } from '@mui/material/Alert';
68
+ import { AlertTitleProps } from '@mui/material/AlertTitle';
69
+ export { AlertTitleProps } from '@mui/material/AlertTitle';
70
+ import { BackdropProps } from '@mui/material/Backdrop';
71
+ export { BackdropProps } from '@mui/material/Backdrop';
72
+ import { DialogProps } from '@mui/material/Dialog';
73
+ export { DialogProps } from '@mui/material/Dialog';
74
+ import { DialogTitleProps } from '@mui/material/DialogTitle';
75
+ export { DialogTitleProps } from '@mui/material/DialogTitle';
76
+ import { DialogContentProps } from '@mui/material/DialogContent';
77
+ export { DialogContentProps } from '@mui/material/DialogContent';
78
+ import { DialogActionsProps } from '@mui/material/DialogActions';
79
+ export { DialogActionsProps } from '@mui/material/DialogActions';
80
+ import { DialogContentTextProps } from '@mui/material/DialogContentText';
81
+ export { DialogContentTextProps } from '@mui/material/DialogContentText';
82
+ import { LinearProgressProps } from '@mui/material/LinearProgress';
83
+ export { LinearProgressProps } from '@mui/material/LinearProgress';
84
+ import { CircularProgressProps } from '@mui/material/CircularProgress';
85
+ export { CircularProgressProps } from '@mui/material/CircularProgress';
86
+ import { SkeletonProps } from '@mui/material/Skeleton';
87
+ export { SkeletonProps } from '@mui/material/Skeleton';
88
+ import { SnackbarProps } from '@mui/material/Snackbar';
89
+ export { SnackbarProps } from '@mui/material/Snackbar';
90
+ import '@mui/material';
91
+ import '@mui/material/styles/createTypography';
92
+
93
+ interface ForestProviderProps {
94
+ children: React.ReactNode;
95
+ theme?: Theme;
96
+ disableCssBaseline?: boolean;
97
+ }
98
+ declare function ForestProvider({ children, theme, disableCssBaseline, }: ForestProviderProps): react_jsx_runtime.JSX.Element;
99
+
100
+ declare function Autocomplete<Value, Multiple extends boolean | undefined = false, DisableClearable extends boolean | undefined = false, FreeSolo extends boolean | undefined = false>(props: AutocompleteProps<Value, Multiple, DisableClearable, FreeSolo>): react_jsx_runtime.JSX.Element;
101
+
102
+ declare function Button(props: ButtonProps): react_jsx_runtime.JSX.Element;
103
+
104
+ declare function ButtonGroup(props: ButtonGroupProps): react_jsx_runtime.JSX.Element;
105
+
106
+ declare function Checkbox(props: CheckboxProps): react_jsx_runtime.JSX.Element;
107
+
108
+ declare function Fab(props: FabProps): react_jsx_runtime.JSX.Element;
109
+
110
+ declare function RadioGroup(props: RadioGroupProps): react_jsx_runtime.JSX.Element;
111
+ declare function Radio(props: RadioProps): react_jsx_runtime.JSX.Element;
112
+
113
+ declare function Select<Value = unknown>(props: SelectProps<Value>): react_jsx_runtime.JSX.Element;
114
+ declare function MenuItem(props: MenuItemProps): react_jsx_runtime.JSX.Element;
115
+
116
+ declare function Switch(props: SwitchProps): react_jsx_runtime.JSX.Element;
117
+
118
+ declare function TextField(props: TextFieldProps): react_jsx_runtime.JSX.Element;
119
+
120
+ declare function ToggleButton(props: ToggleButtonProps): react_jsx_runtime.JSX.Element;
121
+ declare function ToggleButtonGroup(props: ToggleButtonGroupProps): react_jsx_runtime.JSX.Element;
122
+
123
+ declare function Badge(props: BadgeProps): react_jsx_runtime.JSX.Element;
124
+
125
+ declare function Chip(props: ChipProps): react_jsx_runtime.JSX.Element;
126
+
127
+ declare function Divider(props: DividerProps): react_jsx_runtime.JSX.Element;
128
+
129
+ declare function List(props: ListProps): react_jsx_runtime.JSX.Element;
130
+ declare function ListItem(props: ListItemProps): react_jsx_runtime.JSX.Element;
131
+ declare function ListItemButton(props: ListItemButtonProps): react_jsx_runtime.JSX.Element;
132
+ declare function ListItemIcon(props: ListItemIconProps): react_jsx_runtime.JSX.Element;
133
+ declare function ListItemText(props: ListItemTextProps): react_jsx_runtime.JSX.Element;
134
+ declare function ListItemAvatar(props: ListItemAvatarProps): react_jsx_runtime.JSX.Element;
135
+ declare function ListSubheader(props: ListSubheaderProps): react_jsx_runtime.JSX.Element;
136
+
137
+ declare function Table(props: TableProps): react_jsx_runtime.JSX.Element;
138
+ declare function TableBody(props: TableBodyProps): react_jsx_runtime.JSX.Element;
139
+ declare function TableCell(props: TableCellProps): react_jsx_runtime.JSX.Element;
140
+ declare function TableContainer(props: TableContainerProps): react_jsx_runtime.JSX.Element;
141
+ declare function TableHead(props: TableHeadProps): react_jsx_runtime.JSX.Element;
142
+ declare function TableRow(props: TableRowProps): react_jsx_runtime.JSX.Element;
143
+
144
+ declare function Tooltip(props: TooltipProps): react_jsx_runtime.JSX.Element;
145
+
146
+ declare function Typography(props: TypographyProps): react_jsx_runtime.JSX.Element;
147
+
148
+ declare function Alert(props: AlertProps): react_jsx_runtime.JSX.Element;
149
+ declare function AlertTitle(props: AlertTitleProps): react_jsx_runtime.JSX.Element;
150
+
151
+ declare function Backdrop(props: BackdropProps): react_jsx_runtime.JSX.Element;
152
+
153
+ declare function Dialog(props: DialogProps): react_jsx_runtime.JSX.Element;
154
+ declare function DialogTitle(props: DialogTitleProps): react_jsx_runtime.JSX.Element;
155
+ declare function DialogContent(props: DialogContentProps): react_jsx_runtime.JSX.Element;
156
+ declare function DialogActions(props: DialogActionsProps): react_jsx_runtime.JSX.Element;
157
+ declare function DialogContentText(props: DialogContentTextProps): react_jsx_runtime.JSX.Element;
158
+
159
+ declare function LinearProgress(props: LinearProgressProps): react_jsx_runtime.JSX.Element;
160
+ declare function CircularProgress(props: CircularProgressProps): react_jsx_runtime.JSX.Element;
161
+
162
+ declare function Skeleton(props: SkeletonProps): react_jsx_runtime.JSX.Element;
163
+
164
+ declare function Snackbar(props: SnackbarProps): react_jsx_runtime.JSX.Element;
165
+
166
+ export { Alert, AlertTitle, Autocomplete, Backdrop, Badge, Button, ButtonGroup, Checkbox, Chip, CircularProgress, Dialog, DialogActions, DialogContent, DialogContentText, DialogTitle, Divider, Fab, ForestProvider, type ForestProviderProps, LinearProgress, List, ListItem, ListItemAvatar, ListItemButton, ListItemIcon, ListItemText, ListSubheader, MenuItem, Radio, RadioGroup, Select, Skeleton, Snackbar, Switch, Table, TableBody, TableCell, TableContainer, TableHead, TableRow, TextField, ToggleButton, ToggleButtonGroup, Tooltip, Typography };
@@ -0,0 +1,166 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+ import { Theme } from '@mui/material/styles';
3
+ export { c as colors, a as container, d as display, f as focusRings, b as fontFamily, e as fontSize, g as fontWeight, h as forestTheme, i as forestThemeOptions, l as lineHeight, r as radius, s as spacing, j as tokenShadows, w as widths } from './index-DjsgXYWG.js';
4
+ import { AutocompleteProps } from '@mui/material/Autocomplete';
5
+ export { AutocompleteProps } from '@mui/material/Autocomplete';
6
+ import { ButtonProps } from '@mui/material/Button';
7
+ export { ButtonProps } from '@mui/material/Button';
8
+ import { ButtonGroupProps } from '@mui/material/ButtonGroup';
9
+ export { ButtonGroupProps } from '@mui/material/ButtonGroup';
10
+ import { CheckboxProps } from '@mui/material/Checkbox';
11
+ export { CheckboxProps } from '@mui/material/Checkbox';
12
+ import { FabProps } from '@mui/material/Fab';
13
+ export { FabProps } from '@mui/material/Fab';
14
+ import { RadioGroupProps } from '@mui/material/RadioGroup';
15
+ export { RadioGroupProps } from '@mui/material/RadioGroup';
16
+ import { RadioProps } from '@mui/material/Radio';
17
+ export { RadioProps } from '@mui/material/Radio';
18
+ import { SelectProps } from '@mui/material/Select';
19
+ export { SelectProps } from '@mui/material/Select';
20
+ import { MenuItemProps } from '@mui/material/MenuItem';
21
+ export { MenuItemProps } from '@mui/material/MenuItem';
22
+ import { SwitchProps } from '@mui/material/Switch';
23
+ export { SwitchProps } from '@mui/material/Switch';
24
+ import { TextFieldProps } from '@mui/material/TextField';
25
+ export { TextFieldProps } from '@mui/material/TextField';
26
+ import { ToggleButtonProps } from '@mui/material/ToggleButton';
27
+ export { ToggleButtonProps } from '@mui/material/ToggleButton';
28
+ import { ToggleButtonGroupProps } from '@mui/material/ToggleButtonGroup';
29
+ export { ToggleButtonGroupProps } from '@mui/material/ToggleButtonGroup';
30
+ import { BadgeProps } from '@mui/material/Badge';
31
+ export { BadgeProps } from '@mui/material/Badge';
32
+ import { ChipProps } from '@mui/material/Chip';
33
+ export { ChipProps } from '@mui/material/Chip';
34
+ import { DividerProps } from '@mui/material/Divider';
35
+ export { DividerProps } from '@mui/material/Divider';
36
+ import { ListProps } from '@mui/material/List';
37
+ export { ListProps } from '@mui/material/List';
38
+ import { ListItemProps } from '@mui/material/ListItem';
39
+ export { ListItemProps } from '@mui/material/ListItem';
40
+ import { ListItemButtonProps } from '@mui/material/ListItemButton';
41
+ export { ListItemButtonProps } from '@mui/material/ListItemButton';
42
+ import { ListItemIconProps } from '@mui/material/ListItemIcon';
43
+ export { ListItemIconProps } from '@mui/material/ListItemIcon';
44
+ import { ListItemTextProps } from '@mui/material/ListItemText';
45
+ export { ListItemTextProps } from '@mui/material/ListItemText';
46
+ import { ListItemAvatarProps } from '@mui/material/ListItemAvatar';
47
+ export { ListItemAvatarProps } from '@mui/material/ListItemAvatar';
48
+ import { ListSubheaderProps } from '@mui/material/ListSubheader';
49
+ export { ListSubheaderProps } from '@mui/material/ListSubheader';
50
+ import { TableProps } from '@mui/material/Table';
51
+ export { TableProps } from '@mui/material/Table';
52
+ import { TableBodyProps } from '@mui/material/TableBody';
53
+ export { TableBodyProps } from '@mui/material/TableBody';
54
+ import { TableCellProps } from '@mui/material/TableCell';
55
+ export { TableCellProps } from '@mui/material/TableCell';
56
+ import { TableContainerProps } from '@mui/material/TableContainer';
57
+ export { TableContainerProps } from '@mui/material/TableContainer';
58
+ import { TableHeadProps } from '@mui/material/TableHead';
59
+ export { TableHeadProps } from '@mui/material/TableHead';
60
+ import { TableRowProps } from '@mui/material/TableRow';
61
+ export { TableRowProps } from '@mui/material/TableRow';
62
+ import { TooltipProps } from '@mui/material/Tooltip';
63
+ export { TooltipProps } from '@mui/material/Tooltip';
64
+ import { TypographyProps } from '@mui/material/Typography';
65
+ export { TypographyProps } from '@mui/material/Typography';
66
+ import { AlertProps } from '@mui/material/Alert';
67
+ export { AlertProps } from '@mui/material/Alert';
68
+ import { AlertTitleProps } from '@mui/material/AlertTitle';
69
+ export { AlertTitleProps } from '@mui/material/AlertTitle';
70
+ import { BackdropProps } from '@mui/material/Backdrop';
71
+ export { BackdropProps } from '@mui/material/Backdrop';
72
+ import { DialogProps } from '@mui/material/Dialog';
73
+ export { DialogProps } from '@mui/material/Dialog';
74
+ import { DialogTitleProps } from '@mui/material/DialogTitle';
75
+ export { DialogTitleProps } from '@mui/material/DialogTitle';
76
+ import { DialogContentProps } from '@mui/material/DialogContent';
77
+ export { DialogContentProps } from '@mui/material/DialogContent';
78
+ import { DialogActionsProps } from '@mui/material/DialogActions';
79
+ export { DialogActionsProps } from '@mui/material/DialogActions';
80
+ import { DialogContentTextProps } from '@mui/material/DialogContentText';
81
+ export { DialogContentTextProps } from '@mui/material/DialogContentText';
82
+ import { LinearProgressProps } from '@mui/material/LinearProgress';
83
+ export { LinearProgressProps } from '@mui/material/LinearProgress';
84
+ import { CircularProgressProps } from '@mui/material/CircularProgress';
85
+ export { CircularProgressProps } from '@mui/material/CircularProgress';
86
+ import { SkeletonProps } from '@mui/material/Skeleton';
87
+ export { SkeletonProps } from '@mui/material/Skeleton';
88
+ import { SnackbarProps } from '@mui/material/Snackbar';
89
+ export { SnackbarProps } from '@mui/material/Snackbar';
90
+ import '@mui/material';
91
+ import '@mui/material/styles/createTypography';
92
+
93
+ interface ForestProviderProps {
94
+ children: React.ReactNode;
95
+ theme?: Theme;
96
+ disableCssBaseline?: boolean;
97
+ }
98
+ declare function ForestProvider({ children, theme, disableCssBaseline, }: ForestProviderProps): react_jsx_runtime.JSX.Element;
99
+
100
+ declare function Autocomplete<Value, Multiple extends boolean | undefined = false, DisableClearable extends boolean | undefined = false, FreeSolo extends boolean | undefined = false>(props: AutocompleteProps<Value, Multiple, DisableClearable, FreeSolo>): react_jsx_runtime.JSX.Element;
101
+
102
+ declare function Button(props: ButtonProps): react_jsx_runtime.JSX.Element;
103
+
104
+ declare function ButtonGroup(props: ButtonGroupProps): react_jsx_runtime.JSX.Element;
105
+
106
+ declare function Checkbox(props: CheckboxProps): react_jsx_runtime.JSX.Element;
107
+
108
+ declare function Fab(props: FabProps): react_jsx_runtime.JSX.Element;
109
+
110
+ declare function RadioGroup(props: RadioGroupProps): react_jsx_runtime.JSX.Element;
111
+ declare function Radio(props: RadioProps): react_jsx_runtime.JSX.Element;
112
+
113
+ declare function Select<Value = unknown>(props: SelectProps<Value>): react_jsx_runtime.JSX.Element;
114
+ declare function MenuItem(props: MenuItemProps): react_jsx_runtime.JSX.Element;
115
+
116
+ declare function Switch(props: SwitchProps): react_jsx_runtime.JSX.Element;
117
+
118
+ declare function TextField(props: TextFieldProps): react_jsx_runtime.JSX.Element;
119
+
120
+ declare function ToggleButton(props: ToggleButtonProps): react_jsx_runtime.JSX.Element;
121
+ declare function ToggleButtonGroup(props: ToggleButtonGroupProps): react_jsx_runtime.JSX.Element;
122
+
123
+ declare function Badge(props: BadgeProps): react_jsx_runtime.JSX.Element;
124
+
125
+ declare function Chip(props: ChipProps): react_jsx_runtime.JSX.Element;
126
+
127
+ declare function Divider(props: DividerProps): react_jsx_runtime.JSX.Element;
128
+
129
+ declare function List(props: ListProps): react_jsx_runtime.JSX.Element;
130
+ declare function ListItem(props: ListItemProps): react_jsx_runtime.JSX.Element;
131
+ declare function ListItemButton(props: ListItemButtonProps): react_jsx_runtime.JSX.Element;
132
+ declare function ListItemIcon(props: ListItemIconProps): react_jsx_runtime.JSX.Element;
133
+ declare function ListItemText(props: ListItemTextProps): react_jsx_runtime.JSX.Element;
134
+ declare function ListItemAvatar(props: ListItemAvatarProps): react_jsx_runtime.JSX.Element;
135
+ declare function ListSubheader(props: ListSubheaderProps): react_jsx_runtime.JSX.Element;
136
+
137
+ declare function Table(props: TableProps): react_jsx_runtime.JSX.Element;
138
+ declare function TableBody(props: TableBodyProps): react_jsx_runtime.JSX.Element;
139
+ declare function TableCell(props: TableCellProps): react_jsx_runtime.JSX.Element;
140
+ declare function TableContainer(props: TableContainerProps): react_jsx_runtime.JSX.Element;
141
+ declare function TableHead(props: TableHeadProps): react_jsx_runtime.JSX.Element;
142
+ declare function TableRow(props: TableRowProps): react_jsx_runtime.JSX.Element;
143
+
144
+ declare function Tooltip(props: TooltipProps): react_jsx_runtime.JSX.Element;
145
+
146
+ declare function Typography(props: TypographyProps): react_jsx_runtime.JSX.Element;
147
+
148
+ declare function Alert(props: AlertProps): react_jsx_runtime.JSX.Element;
149
+ declare function AlertTitle(props: AlertTitleProps): react_jsx_runtime.JSX.Element;
150
+
151
+ declare function Backdrop(props: BackdropProps): react_jsx_runtime.JSX.Element;
152
+
153
+ declare function Dialog(props: DialogProps): react_jsx_runtime.JSX.Element;
154
+ declare function DialogTitle(props: DialogTitleProps): react_jsx_runtime.JSX.Element;
155
+ declare function DialogContent(props: DialogContentProps): react_jsx_runtime.JSX.Element;
156
+ declare function DialogActions(props: DialogActionsProps): react_jsx_runtime.JSX.Element;
157
+ declare function DialogContentText(props: DialogContentTextProps): react_jsx_runtime.JSX.Element;
158
+
159
+ declare function LinearProgress(props: LinearProgressProps): react_jsx_runtime.JSX.Element;
160
+ declare function CircularProgress(props: CircularProgressProps): react_jsx_runtime.JSX.Element;
161
+
162
+ declare function Skeleton(props: SkeletonProps): react_jsx_runtime.JSX.Element;
163
+
164
+ declare function Snackbar(props: SnackbarProps): react_jsx_runtime.JSX.Element;
165
+
166
+ export { Alert, AlertTitle, Autocomplete, Backdrop, Badge, Button, ButtonGroup, Checkbox, Chip, CircularProgress, Dialog, DialogActions, DialogContent, DialogContentText, DialogTitle, Divider, Fab, ForestProvider, type ForestProviderProps, LinearProgress, List, ListItem, ListItemAvatar, ListItemButton, ListItemIcon, ListItemText, ListSubheader, MenuItem, Radio, RadioGroup, Select, Skeleton, Snackbar, Switch, Table, TableBody, TableCell, TableContainer, TableHead, TableRow, TextField, ToggleButton, ToggleButtonGroup, Tooltip, Typography };