@matteoaliano/forest-ui 0.3.4 → 0.3.5
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/index.d.mts +5 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -1
- package/dist/index.mjs.map +1 -1
- package/guidelines/FOREST_BE_GUIDELINES.md +1 -1
- package/guidelines/FOREST_FE_GUIDELINES.md +1 -1
- package/guidelines/FOREST_UI_GUIDELINES.md +2 -1
- package/package.json +1 -1
- package/skills/forest-agency/SKILL.md +2 -2
- package/skills/forest-agency/references/components.md +1 -0
- package/skills/forest-external/SKILL.md +2 -2
- package/skills/forest-external/references/components.md +1 -0
- package/skills/forest-internal/SKILL.md +2 -2
- package/skills/forest-internal/references/components.md +1 -0
package/dist/index.d.mts
CHANGED
|
@@ -23,6 +23,7 @@ export { SwitchProps } from '@mui/material/Switch';
|
|
|
23
23
|
import { TextFieldProps } from '@mui/material/TextField';
|
|
24
24
|
export { TextFieldProps } from '@mui/material/TextField';
|
|
25
25
|
import { InputBaseProps } from '@mui/material/InputBase';
|
|
26
|
+
import { IconButtonProps as IconButtonProps$1 } from '@mui/material/IconButton';
|
|
26
27
|
import * as React$1 from 'react';
|
|
27
28
|
import React__default from 'react';
|
|
28
29
|
import { BoxProps } from '@mui/material';
|
|
@@ -199,6 +200,9 @@ declare function Search({ value: controlledValue, onChange, onClear, placeholder
|
|
|
199
200
|
type InputProps = InputBaseProps;
|
|
200
201
|
declare function Input({ ...props }: InputProps): react_jsx_runtime.JSX.Element;
|
|
201
202
|
|
|
203
|
+
type IconButtonProps = IconButtonProps$1;
|
|
204
|
+
declare function IconButton(props: IconButtonProps): react_jsx_runtime.JSX.Element;
|
|
205
|
+
|
|
202
206
|
type LogoProduct = 'wsuite' | 'studio' | 'feedati';
|
|
203
207
|
type LogoVariant = 'logo' | 'logomark';
|
|
204
208
|
interface LogoProps extends Omit<BoxProps<'svg'>, 'component' | 'children'> {
|
|
@@ -367,4 +371,4 @@ declare function PieChart({ series, colors, ...props }: PieChartProps): react_js
|
|
|
367
371
|
|
|
368
372
|
declare function useChartColors(count: number): string[];
|
|
369
373
|
|
|
370
|
-
export { Accordion, AccordionActions, AccordionDetails, AccordionSummary, Alert, AlertTitle, AppBar, Autocomplete, Backdrop, Badge, BarChart, type BarChartProps, Breadcrumbs, Button, ButtonGroup, type ButtonProps, Card, CardActions, CardContent, CardHeader, CardMedia, Checkbox, Chip, CircularProgress, DataGrid, DatePicker, type DatePickerProps, Dialog, DialogActions, DialogContent, DialogContentText, DialogTitle, Divider, Fab, ForestProvider, type ForestProviderProps, Input, type InputProps, LineChart, type LineChartProps, LinearProgress, Link, List, ListItem, ListItemAvatar, ListItemButton, ListItemIcon, ListItemText, ListSubheader, Logo, type LogoProps, Menu, MenuItem, MenuList, Modal, MultiSelect, type MultiSelectOption, type MultiSelectProps, Pagination, Paper, PieChart, type PieChartProps, Popover, Radio, RadioGroup, Search, type SearchProps, Select, SidebarItem, type SidebarItemProps, SidebarNav, type SidebarNavProps, Skeleton, Snackbar, Step, StepLabel, Stepper, Switch, Tab, Table, TableBody, TableCell, TableContainer, TableHead, TableRow, Tabs, TextField, ToggleButton, ToggleButtonGroup, Toolbar, Tooltip, Typography, useChartColors, useSidebar };
|
|
374
|
+
export { Accordion, AccordionActions, AccordionDetails, AccordionSummary, Alert, AlertTitle, AppBar, Autocomplete, Backdrop, Badge, BarChart, type BarChartProps, Breadcrumbs, Button, ButtonGroup, type ButtonProps, Card, CardActions, CardContent, CardHeader, CardMedia, Checkbox, Chip, CircularProgress, DataGrid, DatePicker, type DatePickerProps, Dialog, DialogActions, DialogContent, DialogContentText, DialogTitle, Divider, Fab, ForestProvider, type ForestProviderProps, IconButton, type IconButtonProps, Input, type InputProps, LineChart, type LineChartProps, LinearProgress, Link, List, ListItem, ListItemAvatar, ListItemButton, ListItemIcon, ListItemText, ListSubheader, Logo, type LogoProps, Menu, MenuItem, MenuList, Modal, MultiSelect, type MultiSelectOption, type MultiSelectProps, Pagination, Paper, PieChart, type PieChartProps, Popover, Radio, RadioGroup, Search, type SearchProps, Select, SidebarItem, type SidebarItemProps, SidebarNav, type SidebarNavProps, Skeleton, Snackbar, Step, StepLabel, Stepper, Switch, Tab, Table, TableBody, TableCell, TableContainer, TableHead, TableRow, Tabs, TextField, ToggleButton, ToggleButtonGroup, Toolbar, Tooltip, Typography, useChartColors, useSidebar };
|
package/dist/index.d.ts
CHANGED
|
@@ -23,6 +23,7 @@ export { SwitchProps } from '@mui/material/Switch';
|
|
|
23
23
|
import { TextFieldProps } from '@mui/material/TextField';
|
|
24
24
|
export { TextFieldProps } from '@mui/material/TextField';
|
|
25
25
|
import { InputBaseProps } from '@mui/material/InputBase';
|
|
26
|
+
import { IconButtonProps as IconButtonProps$1 } from '@mui/material/IconButton';
|
|
26
27
|
import * as React$1 from 'react';
|
|
27
28
|
import React__default from 'react';
|
|
28
29
|
import { BoxProps } from '@mui/material';
|
|
@@ -199,6 +200,9 @@ declare function Search({ value: controlledValue, onChange, onClear, placeholder
|
|
|
199
200
|
type InputProps = InputBaseProps;
|
|
200
201
|
declare function Input({ ...props }: InputProps): react_jsx_runtime.JSX.Element;
|
|
201
202
|
|
|
203
|
+
type IconButtonProps = IconButtonProps$1;
|
|
204
|
+
declare function IconButton(props: IconButtonProps): react_jsx_runtime.JSX.Element;
|
|
205
|
+
|
|
202
206
|
type LogoProduct = 'wsuite' | 'studio' | 'feedati';
|
|
203
207
|
type LogoVariant = 'logo' | 'logomark';
|
|
204
208
|
interface LogoProps extends Omit<BoxProps<'svg'>, 'component' | 'children'> {
|
|
@@ -367,4 +371,4 @@ declare function PieChart({ series, colors, ...props }: PieChartProps): react_js
|
|
|
367
371
|
|
|
368
372
|
declare function useChartColors(count: number): string[];
|
|
369
373
|
|
|
370
|
-
export { Accordion, AccordionActions, AccordionDetails, AccordionSummary, Alert, AlertTitle, AppBar, Autocomplete, Backdrop, Badge, BarChart, type BarChartProps, Breadcrumbs, Button, ButtonGroup, type ButtonProps, Card, CardActions, CardContent, CardHeader, CardMedia, Checkbox, Chip, CircularProgress, DataGrid, DatePicker, type DatePickerProps, Dialog, DialogActions, DialogContent, DialogContentText, DialogTitle, Divider, Fab, ForestProvider, type ForestProviderProps, Input, type InputProps, LineChart, type LineChartProps, LinearProgress, Link, List, ListItem, ListItemAvatar, ListItemButton, ListItemIcon, ListItemText, ListSubheader, Logo, type LogoProps, Menu, MenuItem, MenuList, Modal, MultiSelect, type MultiSelectOption, type MultiSelectProps, Pagination, Paper, PieChart, type PieChartProps, Popover, Radio, RadioGroup, Search, type SearchProps, Select, SidebarItem, type SidebarItemProps, SidebarNav, type SidebarNavProps, Skeleton, Snackbar, Step, StepLabel, Stepper, Switch, Tab, Table, TableBody, TableCell, TableContainer, TableHead, TableRow, Tabs, TextField, ToggleButton, ToggleButtonGroup, Toolbar, Tooltip, Typography, useChartColors, useSidebar };
|
|
374
|
+
export { Accordion, AccordionActions, AccordionDetails, AccordionSummary, Alert, AlertTitle, AppBar, Autocomplete, Backdrop, Badge, BarChart, type BarChartProps, Breadcrumbs, Button, ButtonGroup, type ButtonProps, Card, CardActions, CardContent, CardHeader, CardMedia, Checkbox, Chip, CircularProgress, DataGrid, DatePicker, type DatePickerProps, Dialog, DialogActions, DialogContent, DialogContentText, DialogTitle, Divider, Fab, ForestProvider, type ForestProviderProps, IconButton, type IconButtonProps, Input, type InputProps, LineChart, type LineChartProps, LinearProgress, Link, List, ListItem, ListItemAvatar, ListItemButton, ListItemIcon, ListItemText, ListSubheader, Logo, type LogoProps, Menu, MenuItem, MenuList, Modal, MultiSelect, type MultiSelectOption, type MultiSelectProps, Pagination, Paper, PieChart, type PieChartProps, Popover, Radio, RadioGroup, Search, type SearchProps, Select, SidebarItem, type SidebarItemProps, SidebarNav, type SidebarNavProps, Skeleton, Snackbar, Step, StepLabel, Stepper, Switch, Tab, Table, TableBody, TableCell, TableContainer, TableHead, TableRow, Tabs, TextField, ToggleButton, ToggleButtonGroup, Toolbar, Tooltip, Typography, useChartColors, useSidebar };
|
package/dist/index.js
CHANGED
|
@@ -3306,6 +3306,9 @@ function Search({
|
|
|
3306
3306
|
function Input({ ...props }) {
|
|
3307
3307
|
return /* @__PURE__ */ jsxRuntime.jsx(MuiInputBase__default.default, { ...props });
|
|
3308
3308
|
}
|
|
3309
|
+
function IconButton2(props) {
|
|
3310
|
+
return /* @__PURE__ */ jsxRuntime.jsx(IconButton__default.default, { ...props });
|
|
3311
|
+
}
|
|
3309
3312
|
var svgPaths = {
|
|
3310
3313
|
wsuite: {
|
|
3311
3314
|
logo: /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
@@ -4096,6 +4099,7 @@ exports.DialogTitle = DialogTitle;
|
|
|
4096
4099
|
exports.Divider = Divider;
|
|
4097
4100
|
exports.Fab = Fab;
|
|
4098
4101
|
exports.ForestProvider = ForestProvider;
|
|
4102
|
+
exports.IconButton = IconButton2;
|
|
4099
4103
|
exports.Input = Input;
|
|
4100
4104
|
exports.LineChart = LineChart;
|
|
4101
4105
|
exports.LinearProgress = LinearProgress;
|