@matteoaliano/forest-ui 1.2.0 → 1.2.2
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/bin/dense.mjs +128 -0
- package/bin/sync.mjs +15 -1
- package/dist/{chunk-VIQ5IYUZ.mjs → chunk-4PNVZETQ.mjs} +50 -17
- package/dist/chunk-4PNVZETQ.mjs.map +1 -0
- package/dist/index.d.mts +21 -31
- package/dist/index.d.ts +21 -31
- package/dist/index.js +402 -130
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +558 -319
- package/dist/index.mjs.map +1 -1
- package/dist/theme.js +49 -16
- package/dist/theme.js.map +1 -1
- package/dist/theme.mjs +1 -1
- package/package.json +2 -2
- package/skills/forest-alkemy-plus/SKILL.md +2 -2
- package/skills/forest-alkemy-plus/references/components.md +2 -2
- package/skills/forest-alkemy-plus/references/patterns.md +3 -3
- package/dist/chunk-VIQ5IYUZ.mjs.map +0 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import { Theme, SxProps } from '@mui/material/styles';
|
|
3
3
|
export { useColorScheme } from '@mui/material/styles';
|
|
4
|
-
import * as _mui_material from '@mui/material';
|
|
5
4
|
import { BoxProps } from '@mui/material';
|
|
6
5
|
export { InitColorSchemeScript, useFormControl, useMediaQuery, useScrollTrigger, useTheme } from '@mui/material';
|
|
7
6
|
export { DesignTokens, ThemePreset, alpha, avatarColors, base, bg, border, breadcrumbColors, buildTheme, buildThemeOptions, buttonColors, chartColors, container, display, error, fg, focusRings, fontFamily, fontFamilyMono, fontSize, fontWeight, forestAlkemyPlusPreset, forestTheme, forestThemeOptions, getAvailablePresets, getPreset, iconColors, info, lineHeight, navColors, radius, registerPreset, sliderColors, spacing, success, text, toggleColors, shadows as tokenShadows, warning, widths } from './theme.mjs';
|
|
@@ -16,8 +15,7 @@ export { default as RadioGroup, RadioGroupProps } from '@mui/material/RadioGroup
|
|
|
16
15
|
export { default as Radio, RadioProps } from '@mui/material/Radio';
|
|
17
16
|
import { SelectProps } from '@mui/material/Select';
|
|
18
17
|
export { SelectProps } from '@mui/material/Select';
|
|
19
|
-
|
|
20
|
-
export { SwitchProps } from '@mui/material/Switch';
|
|
18
|
+
export { default as Switch, SwitchProps } from '@mui/material/Switch';
|
|
21
19
|
import { TextFieldProps } from '@mui/material/TextField';
|
|
22
20
|
export { default as TextField, TextFieldProps } from '@mui/material/TextField';
|
|
23
21
|
export { default as Input, default as InputBase, InputBaseProps, InputBaseProps as InputProps } from '@mui/material/InputBase';
|
|
@@ -76,8 +74,7 @@ import { CardProps as CardProps$1 } from '@mui/material/Card';
|
|
|
76
74
|
export { default as CardActionArea, CardActionAreaProps } from '@mui/material/CardActionArea';
|
|
77
75
|
import { DrawerProps } from '@mui/material/Drawer';
|
|
78
76
|
export { DrawerProps } from '@mui/material/Drawer';
|
|
79
|
-
|
|
80
|
-
export { PaperProps } from '@mui/material/Paper';
|
|
77
|
+
export { default as Paper, PaperProps } from '@mui/material/Paper';
|
|
81
78
|
export { default as Alert, AlertProps } from '@mui/material/Alert';
|
|
82
79
|
export { default as AlertTitle, AlertTitleProps } from '@mui/material/AlertTitle';
|
|
83
80
|
export { default as Backdrop, BackdropProps } from '@mui/material/Backdrop';
|
|
@@ -116,9 +113,10 @@ export { default as StepIcon, StepIconProps } from '@mui/material/StepIcon';
|
|
|
116
113
|
export { default as Tabs, TabsProps } from '@mui/material/Tabs';
|
|
117
114
|
export { default as Tab, TabProps } from '@mui/material/Tab';
|
|
118
115
|
export { default as TabScrollButton, TabScrollButtonProps } from '@mui/material/TabScrollButton';
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
116
|
+
export { default as Box, BoxProps } from '@mui/material/Box';
|
|
117
|
+
export { default as Stack, StackProps } from '@mui/material/Stack';
|
|
118
|
+
export { default as Grid, GridProps } from '@mui/material/Grid';
|
|
119
|
+
export { default as Container, ContainerProps } from '@mui/material/Container';
|
|
122
120
|
export { default as Collapse, CollapseProps } from '@mui/material/Collapse';
|
|
123
121
|
export { default as Fade, FadeProps } from '@mui/material/Fade';
|
|
124
122
|
export { default as Grow, GrowProps } from '@mui/material/Grow';
|
|
@@ -129,6 +127,7 @@ export { default as ClickAwayListener, ClickAwayListenerProps } from '@mui/mater
|
|
|
129
127
|
export { default as GlobalStyles, GlobalStylesProps } from '@mui/material/GlobalStyles';
|
|
130
128
|
export { default as NoSsr } from '@mui/material/NoSsr';
|
|
131
129
|
export { default as Popper, PopperProps } from '@mui/material/Popper';
|
|
130
|
+
export { default as Portal } from '@mui/material/Portal';
|
|
132
131
|
export { default as Slider, SliderProps } from '@mui/material/Slider';
|
|
133
132
|
export { default as SvgIcon, SvgIconProps } from '@mui/material/SvgIcon';
|
|
134
133
|
export { default as TextareaAutosize } from '@mui/material/TextareaAutosize';
|
|
@@ -164,15 +163,11 @@ export { HighlightedProvider, useHighlighted, useItemHighlighted } from '@mui/x-
|
|
|
164
163
|
export { useChartId, useDrawingArea, useSvgRef, useXAxis, useXColorScale, useXScale, useYAxis, useYColorScale, useYScale, useZColorScale } from '@mui/x-charts/hooks';
|
|
165
164
|
export { blueberryTwilightPalette, blueberryTwilightPaletteDark, blueberryTwilightPaletteLight, cheerfulFiestaPalette, cheerfulFiestaPaletteDark, cheerfulFiestaPaletteLight, mangoFusionPalette, mangoFusionPaletteDark, mangoFusionPaletteLight } from '@mui/x-charts/colorPalettes';
|
|
166
165
|
export { default as AppBar, AppBarProps } from '@mui/material/AppBar';
|
|
167
|
-
export { BoxProps } from '@mui/material/Box';
|
|
168
166
|
export { default as CardActions, CardActionsProps } from '@mui/material/CardActions';
|
|
169
167
|
export { default as CardContent, CardContentProps } from '@mui/material/CardContent';
|
|
170
168
|
export { default as CardHeader, CardHeaderProps } from '@mui/material/CardHeader';
|
|
171
169
|
export { default as CardMedia, CardMediaProps } from '@mui/material/CardMedia';
|
|
172
|
-
export { ContainerProps } from '@mui/material/Container';
|
|
173
|
-
export { GridProps } from '@mui/material/Grid';
|
|
174
170
|
export { default as MenuItem, MenuItemProps } from '@mui/material/MenuItem';
|
|
175
|
-
export { StackProps } from '@mui/material/Stack';
|
|
176
171
|
export { default as SwipeableDrawer, SwipeableDrawerProps } from '@mui/material/SwipeableDrawer';
|
|
177
172
|
export { default as Toolbar, ToolbarProps } from '@mui/material/Toolbar';
|
|
178
173
|
|
|
@@ -208,19 +203,18 @@ interface MultiSelectProps extends Omit<SelectProps<string[]>, "multiple" | "val
|
|
|
208
203
|
}
|
|
209
204
|
declare function MultiSelect({ options, value, onChange, selectAll, selectAllLabel, label, ...rest }: MultiSelectProps): react_jsx_runtime.JSX.Element;
|
|
210
205
|
|
|
211
|
-
declare function Switch(props: SwitchProps): react_jsx_runtime.JSX.Element;
|
|
212
|
-
|
|
213
206
|
type SearchProps = TextFieldProps & {
|
|
214
207
|
onClear?: () => void;
|
|
215
208
|
};
|
|
216
209
|
declare function Search({ value: controlledValue, onChange, onClear, placeholder, variant, slotProps, ...props }: SearchProps): react_jsx_runtime.JSX.Element;
|
|
217
210
|
|
|
218
|
-
type IconButtonVariant = "contained" | "outlined" | "
|
|
211
|
+
type IconButtonVariant = "contained" | "outlined" | "icon";
|
|
219
212
|
type IconButtonProps = IconButtonProps$1 & {
|
|
220
213
|
/**
|
|
221
|
-
* Visual style. `"
|
|
222
|
-
*
|
|
223
|
-
*
|
|
214
|
+
* Visual style. `"contained"` (default) applies the same faux-3D button
|
|
215
|
+
* affordance as `<Button>` (charcoal fill + bevel + press). `"outlined"` is
|
|
216
|
+
* the light-bordered variant; `"icon"` is the classic bare icon button — use
|
|
217
|
+
* it for quiet chrome (input adornments, app-bar toggles).
|
|
224
218
|
*/
|
|
225
219
|
variant?: IconButtonVariant;
|
|
226
220
|
};
|
|
@@ -248,6 +242,14 @@ declare const PRODUCT_ARTWORK: {
|
|
|
248
242
|
readonly "revenue-pulse": Record<LogoVariant$1, Partial<Record<LogoColor$1, LogoArtwork>>>;
|
|
249
243
|
readonly contixdb: Record<LogoVariant$1, Partial<Record<LogoColor$1, LogoArtwork>>>;
|
|
250
244
|
readonly feedati: Record<LogoVariant$1, Partial<Record<LogoColor$1, LogoArtwork>>>;
|
|
245
|
+
readonly adwize: Record<LogoVariant$1, Partial<Record<LogoColor$1, LogoArtwork>>>;
|
|
246
|
+
readonly "control-room": Record<LogoVariant$1, Partial<Record<LogoColor$1, LogoArtwork>>>;
|
|
247
|
+
readonly "hr-cost-manager": Record<LogoVariant$1, Partial<Record<LogoColor$1, LogoArtwork>>>;
|
|
248
|
+
readonly lightbox: Record<LogoVariant$1, Partial<Record<LogoColor$1, LogoArtwork>>>;
|
|
249
|
+
readonly "product-categorizer": Record<LogoVariant$1, Partial<Record<LogoColor$1, LogoArtwork>>>;
|
|
250
|
+
readonly refain: Record<LogoVariant$1, Partial<Record<LogoColor$1, LogoArtwork>>>;
|
|
251
|
+
readonly stat: Record<LogoVariant$1, Partial<Record<LogoColor$1, LogoArtwork>>>;
|
|
252
|
+
readonly taxonomy: Record<LogoVariant$1, Partial<Record<LogoColor$1, LogoArtwork>>>;
|
|
251
253
|
};
|
|
252
254
|
type LogoProductKey = keyof typeof PRODUCT_ARTWORK;
|
|
253
255
|
|
|
@@ -466,8 +468,6 @@ declare function Card({ color, sx, ...props }: ForestCardProps): react_jsx_runti
|
|
|
466
468
|
|
|
467
469
|
declare function Drawer({ anchor, hideBackdrop, ...props }: DrawerProps): react_jsx_runtime.JSX.Element;
|
|
468
470
|
|
|
469
|
-
declare function Paper(props: PaperProps): react_jsx_runtime.JSX.Element;
|
|
470
|
-
|
|
471
471
|
declare function Popover({ slotProps, ...props }: PopoverProps): react_jsx_runtime.JSX.Element;
|
|
472
472
|
|
|
473
473
|
interface SidebarContextValue {
|
|
@@ -582,16 +582,6 @@ interface PageProps {
|
|
|
582
582
|
*/
|
|
583
583
|
declare function Page({ title, breadcrumbs, actions, disableGutters, maxWidth, sx, children, }: PageProps): react_jsx_runtime.JSX.Element;
|
|
584
584
|
|
|
585
|
-
declare const Box: _mui_types.OverridableComponent<_mui_system.BoxTypeMap<{}, "div", _mui_material.Theme>>;
|
|
586
|
-
|
|
587
|
-
declare const Stack: _mui_material_OverridableComponent.OverridableComponent<_mui_material.StackTypeMap<{}, "div">>;
|
|
588
|
-
|
|
589
|
-
declare const Grid: _mui_types.OverridableComponent<_mui_material.GridTypeMap<{}, "div">>;
|
|
590
|
-
|
|
591
|
-
declare const Container: _mui_material_OverridableComponent.OverridableComponent<_mui_material.ContainerTypeMap<{}, "div">>;
|
|
592
|
-
|
|
593
|
-
declare const Portal: React$1.ForwardRefExoticComponent<_mui_material.PortalProps & React$1.RefAttributes<Element>>;
|
|
594
|
-
|
|
595
585
|
interface LineChartProps extends Omit<LineChartProps$1, "series"> {
|
|
596
586
|
series?: LineChartProps$1["series"];
|
|
597
587
|
}
|
|
@@ -621,4 +611,4 @@ declare function ScatterChart({ series, colors, ...props }: ScatterChartProps):
|
|
|
621
611
|
type GaugeProps = GaugeProps$1;
|
|
622
612
|
declare function Gauge(props: GaugeProps): react_jsx_runtime.JSX.Element;
|
|
623
613
|
|
|
624
|
-
export { AppBarNavItem, type AppBarNavItemProps, AppShell, type AppShellNavItem, type AppShellProps, BarChart, type BarChartProps,
|
|
614
|
+
export { AppBarNavItem, type AppBarNavItemProps, AppShell, type AppShellNavItem, type AppShellProps, BarChart, type BarChartProps, Button, ButtonGroup, type ButtonProps, Card, type CardProps, Chip, DatePicker, type DatePickerProps, Drawer, Fab, type ForestCardColor, type ForestChipColor, type ForestChipProps, ForestProvider, type ForestProviderProps, Gauge, IconButton, type IconButtonProps, type IconButtonVariant, LineChart, type LineChartProps, Logo, type LogoProps, MultiSelect, type MultiSelectOption, type MultiSelectProps, Page, type PageBreadcrumb, type PageProps, PieChart, type PieChartProps, Popover, ScatterChart, Search, type SearchProps, Select, SidebarItem, type SidebarItemProps, SidebarNav, type SidebarNavProps, Tooltip, useChartColors, useSidebar };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import { Theme, SxProps } from '@mui/material/styles';
|
|
3
3
|
export { useColorScheme } from '@mui/material/styles';
|
|
4
|
-
import * as _mui_material from '@mui/material';
|
|
5
4
|
import { BoxProps } from '@mui/material';
|
|
6
5
|
export { InitColorSchemeScript, useFormControl, useMediaQuery, useScrollTrigger, useTheme } from '@mui/material';
|
|
7
6
|
export { DesignTokens, ThemePreset, alpha, avatarColors, base, bg, border, breadcrumbColors, buildTheme, buildThemeOptions, buttonColors, chartColors, container, display, error, fg, focusRings, fontFamily, fontFamilyMono, fontSize, fontWeight, forestAlkemyPlusPreset, forestTheme, forestThemeOptions, getAvailablePresets, getPreset, iconColors, info, lineHeight, navColors, radius, registerPreset, sliderColors, spacing, success, text, toggleColors, shadows as tokenShadows, warning, widths } from './theme.js';
|
|
@@ -16,8 +15,7 @@ export { default as RadioGroup, RadioGroupProps } from '@mui/material/RadioGroup
|
|
|
16
15
|
export { default as Radio, RadioProps } from '@mui/material/Radio';
|
|
17
16
|
import { SelectProps } from '@mui/material/Select';
|
|
18
17
|
export { SelectProps } from '@mui/material/Select';
|
|
19
|
-
|
|
20
|
-
export { SwitchProps } from '@mui/material/Switch';
|
|
18
|
+
export { default as Switch, SwitchProps } from '@mui/material/Switch';
|
|
21
19
|
import { TextFieldProps } from '@mui/material/TextField';
|
|
22
20
|
export { default as TextField, TextFieldProps } from '@mui/material/TextField';
|
|
23
21
|
export { default as Input, default as InputBase, InputBaseProps, InputBaseProps as InputProps } from '@mui/material/InputBase';
|
|
@@ -76,8 +74,7 @@ import { CardProps as CardProps$1 } from '@mui/material/Card';
|
|
|
76
74
|
export { default as CardActionArea, CardActionAreaProps } from '@mui/material/CardActionArea';
|
|
77
75
|
import { DrawerProps } from '@mui/material/Drawer';
|
|
78
76
|
export { DrawerProps } from '@mui/material/Drawer';
|
|
79
|
-
|
|
80
|
-
export { PaperProps } from '@mui/material/Paper';
|
|
77
|
+
export { default as Paper, PaperProps } from '@mui/material/Paper';
|
|
81
78
|
export { default as Alert, AlertProps } from '@mui/material/Alert';
|
|
82
79
|
export { default as AlertTitle, AlertTitleProps } from '@mui/material/AlertTitle';
|
|
83
80
|
export { default as Backdrop, BackdropProps } from '@mui/material/Backdrop';
|
|
@@ -116,9 +113,10 @@ export { default as StepIcon, StepIconProps } from '@mui/material/StepIcon';
|
|
|
116
113
|
export { default as Tabs, TabsProps } from '@mui/material/Tabs';
|
|
117
114
|
export { default as Tab, TabProps } from '@mui/material/Tab';
|
|
118
115
|
export { default as TabScrollButton, TabScrollButtonProps } from '@mui/material/TabScrollButton';
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
116
|
+
export { default as Box, BoxProps } from '@mui/material/Box';
|
|
117
|
+
export { default as Stack, StackProps } from '@mui/material/Stack';
|
|
118
|
+
export { default as Grid, GridProps } from '@mui/material/Grid';
|
|
119
|
+
export { default as Container, ContainerProps } from '@mui/material/Container';
|
|
122
120
|
export { default as Collapse, CollapseProps } from '@mui/material/Collapse';
|
|
123
121
|
export { default as Fade, FadeProps } from '@mui/material/Fade';
|
|
124
122
|
export { default as Grow, GrowProps } from '@mui/material/Grow';
|
|
@@ -129,6 +127,7 @@ export { default as ClickAwayListener, ClickAwayListenerProps } from '@mui/mater
|
|
|
129
127
|
export { default as GlobalStyles, GlobalStylesProps } from '@mui/material/GlobalStyles';
|
|
130
128
|
export { default as NoSsr } from '@mui/material/NoSsr';
|
|
131
129
|
export { default as Popper, PopperProps } from '@mui/material/Popper';
|
|
130
|
+
export { default as Portal } from '@mui/material/Portal';
|
|
132
131
|
export { default as Slider, SliderProps } from '@mui/material/Slider';
|
|
133
132
|
export { default as SvgIcon, SvgIconProps } from '@mui/material/SvgIcon';
|
|
134
133
|
export { default as TextareaAutosize } from '@mui/material/TextareaAutosize';
|
|
@@ -164,15 +163,11 @@ export { HighlightedProvider, useHighlighted, useItemHighlighted } from '@mui/x-
|
|
|
164
163
|
export { useChartId, useDrawingArea, useSvgRef, useXAxis, useXColorScale, useXScale, useYAxis, useYColorScale, useYScale, useZColorScale } from '@mui/x-charts/hooks';
|
|
165
164
|
export { blueberryTwilightPalette, blueberryTwilightPaletteDark, blueberryTwilightPaletteLight, cheerfulFiestaPalette, cheerfulFiestaPaletteDark, cheerfulFiestaPaletteLight, mangoFusionPalette, mangoFusionPaletteDark, mangoFusionPaletteLight } from '@mui/x-charts/colorPalettes';
|
|
166
165
|
export { default as AppBar, AppBarProps } from '@mui/material/AppBar';
|
|
167
|
-
export { BoxProps } from '@mui/material/Box';
|
|
168
166
|
export { default as CardActions, CardActionsProps } from '@mui/material/CardActions';
|
|
169
167
|
export { default as CardContent, CardContentProps } from '@mui/material/CardContent';
|
|
170
168
|
export { default as CardHeader, CardHeaderProps } from '@mui/material/CardHeader';
|
|
171
169
|
export { default as CardMedia, CardMediaProps } from '@mui/material/CardMedia';
|
|
172
|
-
export { ContainerProps } from '@mui/material/Container';
|
|
173
|
-
export { GridProps } from '@mui/material/Grid';
|
|
174
170
|
export { default as MenuItem, MenuItemProps } from '@mui/material/MenuItem';
|
|
175
|
-
export { StackProps } from '@mui/material/Stack';
|
|
176
171
|
export { default as SwipeableDrawer, SwipeableDrawerProps } from '@mui/material/SwipeableDrawer';
|
|
177
172
|
export { default as Toolbar, ToolbarProps } from '@mui/material/Toolbar';
|
|
178
173
|
|
|
@@ -208,19 +203,18 @@ interface MultiSelectProps extends Omit<SelectProps<string[]>, "multiple" | "val
|
|
|
208
203
|
}
|
|
209
204
|
declare function MultiSelect({ options, value, onChange, selectAll, selectAllLabel, label, ...rest }: MultiSelectProps): react_jsx_runtime.JSX.Element;
|
|
210
205
|
|
|
211
|
-
declare function Switch(props: SwitchProps): react_jsx_runtime.JSX.Element;
|
|
212
|
-
|
|
213
206
|
type SearchProps = TextFieldProps & {
|
|
214
207
|
onClear?: () => void;
|
|
215
208
|
};
|
|
216
209
|
declare function Search({ value: controlledValue, onChange, onClear, placeholder, variant, slotProps, ...props }: SearchProps): react_jsx_runtime.JSX.Element;
|
|
217
210
|
|
|
218
|
-
type IconButtonVariant = "contained" | "outlined" | "
|
|
211
|
+
type IconButtonVariant = "contained" | "outlined" | "icon";
|
|
219
212
|
type IconButtonProps = IconButtonProps$1 & {
|
|
220
213
|
/**
|
|
221
|
-
* Visual style. `"
|
|
222
|
-
*
|
|
223
|
-
*
|
|
214
|
+
* Visual style. `"contained"` (default) applies the same faux-3D button
|
|
215
|
+
* affordance as `<Button>` (charcoal fill + bevel + press). `"outlined"` is
|
|
216
|
+
* the light-bordered variant; `"icon"` is the classic bare icon button — use
|
|
217
|
+
* it for quiet chrome (input adornments, app-bar toggles).
|
|
224
218
|
*/
|
|
225
219
|
variant?: IconButtonVariant;
|
|
226
220
|
};
|
|
@@ -248,6 +242,14 @@ declare const PRODUCT_ARTWORK: {
|
|
|
248
242
|
readonly "revenue-pulse": Record<LogoVariant$1, Partial<Record<LogoColor$1, LogoArtwork>>>;
|
|
249
243
|
readonly contixdb: Record<LogoVariant$1, Partial<Record<LogoColor$1, LogoArtwork>>>;
|
|
250
244
|
readonly feedati: Record<LogoVariant$1, Partial<Record<LogoColor$1, LogoArtwork>>>;
|
|
245
|
+
readonly adwize: Record<LogoVariant$1, Partial<Record<LogoColor$1, LogoArtwork>>>;
|
|
246
|
+
readonly "control-room": Record<LogoVariant$1, Partial<Record<LogoColor$1, LogoArtwork>>>;
|
|
247
|
+
readonly "hr-cost-manager": Record<LogoVariant$1, Partial<Record<LogoColor$1, LogoArtwork>>>;
|
|
248
|
+
readonly lightbox: Record<LogoVariant$1, Partial<Record<LogoColor$1, LogoArtwork>>>;
|
|
249
|
+
readonly "product-categorizer": Record<LogoVariant$1, Partial<Record<LogoColor$1, LogoArtwork>>>;
|
|
250
|
+
readonly refain: Record<LogoVariant$1, Partial<Record<LogoColor$1, LogoArtwork>>>;
|
|
251
|
+
readonly stat: Record<LogoVariant$1, Partial<Record<LogoColor$1, LogoArtwork>>>;
|
|
252
|
+
readonly taxonomy: Record<LogoVariant$1, Partial<Record<LogoColor$1, LogoArtwork>>>;
|
|
251
253
|
};
|
|
252
254
|
type LogoProductKey = keyof typeof PRODUCT_ARTWORK;
|
|
253
255
|
|
|
@@ -466,8 +468,6 @@ declare function Card({ color, sx, ...props }: ForestCardProps): react_jsx_runti
|
|
|
466
468
|
|
|
467
469
|
declare function Drawer({ anchor, hideBackdrop, ...props }: DrawerProps): react_jsx_runtime.JSX.Element;
|
|
468
470
|
|
|
469
|
-
declare function Paper(props: PaperProps): react_jsx_runtime.JSX.Element;
|
|
470
|
-
|
|
471
471
|
declare function Popover({ slotProps, ...props }: PopoverProps): react_jsx_runtime.JSX.Element;
|
|
472
472
|
|
|
473
473
|
interface SidebarContextValue {
|
|
@@ -582,16 +582,6 @@ interface PageProps {
|
|
|
582
582
|
*/
|
|
583
583
|
declare function Page({ title, breadcrumbs, actions, disableGutters, maxWidth, sx, children, }: PageProps): react_jsx_runtime.JSX.Element;
|
|
584
584
|
|
|
585
|
-
declare const Box: _mui_types.OverridableComponent<_mui_system.BoxTypeMap<{}, "div", _mui_material.Theme>>;
|
|
586
|
-
|
|
587
|
-
declare const Stack: _mui_material_OverridableComponent.OverridableComponent<_mui_material.StackTypeMap<{}, "div">>;
|
|
588
|
-
|
|
589
|
-
declare const Grid: _mui_types.OverridableComponent<_mui_material.GridTypeMap<{}, "div">>;
|
|
590
|
-
|
|
591
|
-
declare const Container: _mui_material_OverridableComponent.OverridableComponent<_mui_material.ContainerTypeMap<{}, "div">>;
|
|
592
|
-
|
|
593
|
-
declare const Portal: React$1.ForwardRefExoticComponent<_mui_material.PortalProps & React$1.RefAttributes<Element>>;
|
|
594
|
-
|
|
595
585
|
interface LineChartProps extends Omit<LineChartProps$1, "series"> {
|
|
596
586
|
series?: LineChartProps$1["series"];
|
|
597
587
|
}
|
|
@@ -621,4 +611,4 @@ declare function ScatterChart({ series, colors, ...props }: ScatterChartProps):
|
|
|
621
611
|
type GaugeProps = GaugeProps$1;
|
|
622
612
|
declare function Gauge(props: GaugeProps): react_jsx_runtime.JSX.Element;
|
|
623
613
|
|
|
624
|
-
export { AppBarNavItem, type AppBarNavItemProps, AppShell, type AppShellNavItem, type AppShellProps, BarChart, type BarChartProps,
|
|
614
|
+
export { AppBarNavItem, type AppBarNavItemProps, AppShell, type AppShellNavItem, type AppShellProps, BarChart, type BarChartProps, Button, ButtonGroup, type ButtonProps, Card, type CardProps, Chip, DatePicker, type DatePickerProps, Drawer, Fab, type ForestCardColor, type ForestChipColor, type ForestChipProps, ForestProvider, type ForestProviderProps, Gauge, IconButton, type IconButtonProps, type IconButtonVariant, LineChart, type LineChartProps, Logo, type LogoProps, MultiSelect, type MultiSelectOption, type MultiSelectProps, Page, type PageBreadcrumb, type PageProps, PieChart, type PieChartProps, Popover, ScatterChart, Search, type SearchProps, Select, SidebarItem, type SidebarItemProps, SidebarNav, type SidebarNavProps, Tooltip, useChartColors, useSidebar };
|