@ceed/ads 1.36.0 → 1.37.0-next.1
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/Alert/Alert.d.ts +1 -1
- package/dist/components/FilterableCheckboxGroup/FilterableCheckboxGroup.d.ts +1 -1
- package/dist/components/Pagination/Pagination.d.ts +1 -1
- package/dist/components/ProfileMenu/ProfileMenu.d.ts +1 -1
- package/dist/components/ThemeProvider/ThemeProvider.d.ts +20 -0
- package/dist/components/data-display/Avatar.md +1 -1
- package/dist/components/data-display/Badge.md +1 -1
- package/dist/components/data-display/Chip.md +1 -1
- package/dist/components/data-display/Table.md +1 -1
- package/dist/components/data-display/Tooltip.md +1 -1
- package/dist/components/feedback/Alert.md +1 -1
- package/dist/components/feedback/CircularProgress.md +2 -2
- package/dist/components/feedback/Modal.md +1 -1
- package/dist/components/inputs/Autocomplete.md +1 -1
- package/dist/components/inputs/Button.md +2 -2
- package/dist/components/inputs/ButtonGroup.md +2 -2
- package/dist/components/inputs/Checkbox.md +2 -2
- package/dist/components/inputs/CurrencyInput.md +2 -2
- package/dist/components/inputs/FilterableCheckboxGroup.md +1 -1
- package/dist/components/inputs/FormControl.md +1 -1
- package/dist/components/inputs/IconButton.md +2 -2
- package/dist/components/inputs/Input.md +2 -2
- package/dist/components/inputs/PercentageInput.md +2 -2
- package/dist/components/inputs/RadioButton.md +2 -2
- package/dist/components/inputs/RadioList.md +2 -2
- package/dist/components/inputs/Select.md +2 -2
- package/dist/components/inputs/Slider.md +2 -2
- package/dist/components/inputs/Switch.md +1 -1
- package/dist/components/inputs/Textarea.md +2 -2
- package/dist/components/inputs/Uploader/Uploader.md +1 -1
- package/dist/components/navigation/IconMenuButton.md +1 -1
- package/dist/components/navigation/Menu.md +1 -1
- package/dist/components/navigation/MenuButton.md +1 -1
- package/dist/components/navigation/Pagination.md +1 -1
- package/dist/components/navigation/ProfileMenu.md +2 -2
- package/dist/components/navigation/Tabs.md +1 -1
- package/dist/components/surfaces/Accordions.md +1 -1
- package/dist/components/surfaces/Card.md +2 -2
- package/dist/index.browser.js +3 -3
- package/dist/index.browser.js.map +3 -3
- package/dist/index.cjs +347 -224
- package/dist/index.js +155 -32
- package/framer/index.js +1 -1
- package/package.json +3 -2
package/dist/index.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import {
|
|
3
3
|
useTheme as useTheme2,
|
|
4
4
|
useColorScheme,
|
|
5
|
-
useThemeProps as
|
|
5
|
+
useThemeProps as useThemeProps14,
|
|
6
6
|
ButtonGroup,
|
|
7
7
|
alertClasses,
|
|
8
8
|
boxClasses,
|
|
@@ -136,7 +136,7 @@ Accordions.displayName = "Accordions";
|
|
|
136
136
|
|
|
137
137
|
// src/components/Alert/Alert.tsx
|
|
138
138
|
import React3 from "react";
|
|
139
|
-
import { Alert as JoyAlert, styled } from "@mui/joy";
|
|
139
|
+
import { Alert as JoyAlert, styled, useThemeProps } from "@mui/joy";
|
|
140
140
|
import { motion as motion3 } from "framer-motion";
|
|
141
141
|
|
|
142
142
|
// src/components/Typography/Typography.tsx
|
|
@@ -173,8 +173,9 @@ var contentLevelMapping = {
|
|
|
173
173
|
md: "body-sm",
|
|
174
174
|
lg: "body-md"
|
|
175
175
|
};
|
|
176
|
-
function Alert(
|
|
177
|
-
const
|
|
176
|
+
function Alert(inProps) {
|
|
177
|
+
const props = useThemeProps({ props: inProps, name: "Alert" });
|
|
178
|
+
const { title, content, actions, color = "primary", size = "sm", ...innerProps } = props;
|
|
178
179
|
const invertedColors = props.invertedColors || props.variant === "solid";
|
|
179
180
|
return /* @__PURE__ */ React3.createElement(MotionAlert, { ...innerProps, color, endDecorator: actions, invertedColors, size }, /* @__PURE__ */ React3.createElement(Stack_default, null, title && /* @__PURE__ */ React3.createElement(Typography_default, { level: titleLevelMapping[size], fontWeight: "bold", color }, title), /* @__PURE__ */ React3.createElement(Typography_default, { level: contentLevelMapping[size], fontWeight: 500, color }, content)));
|
|
180
181
|
}
|
|
@@ -573,7 +574,7 @@ var Autocomplete_default = Autocomplete;
|
|
|
573
574
|
|
|
574
575
|
// src/components/Avatar/Avatar.tsx
|
|
575
576
|
import React6, { forwardRef as forwardRef2, useMemo as useMemo2 } from "react";
|
|
576
|
-
import { Avatar as JoyAvatar, AvatarGroup, styled as styled4, useThemeProps } from "@mui/joy";
|
|
577
|
+
import { Avatar as JoyAvatar, AvatarGroup, styled as styled4, useThemeProps as useThemeProps2 } from "@mui/joy";
|
|
577
578
|
var StyledAvatar = styled4(JoyAvatar, {
|
|
578
579
|
name: "Avatar",
|
|
579
580
|
slot: "Root",
|
|
@@ -595,7 +596,7 @@ var defaultGetInitial = (name) => {
|
|
|
595
596
|
}
|
|
596
597
|
};
|
|
597
598
|
var Avatar = forwardRef2(function Avatar2(inProps, ref) {
|
|
598
|
-
const props =
|
|
599
|
+
const props = useThemeProps2({
|
|
599
600
|
props: inProps,
|
|
600
601
|
name: "Avatar"
|
|
601
602
|
});
|
|
@@ -815,7 +816,7 @@ var isSameMonth = (date1, date2) => {
|
|
|
815
816
|
|
|
816
817
|
// src/components/Calendar/hooks/use-calendar-props.ts
|
|
817
818
|
import { useCallback as useCallback4, useMemo as useMemo4, useState as useState3 } from "react";
|
|
818
|
-
import { useThemeProps as
|
|
819
|
+
import { useThemeProps as useThemeProps3 } from "@mui/joy";
|
|
819
820
|
var resolveView = (view, views) => {
|
|
820
821
|
return views.includes(view) ? view : views[0];
|
|
821
822
|
};
|
|
@@ -864,7 +865,7 @@ var useCalendarProps = (inProps) => {
|
|
|
864
865
|
},
|
|
865
866
|
[resolvedView, inProps, viewMonth, paginate]
|
|
866
867
|
);
|
|
867
|
-
const props =
|
|
868
|
+
const props = useThemeProps3({
|
|
868
869
|
props: {
|
|
869
870
|
locale: "default",
|
|
870
871
|
views: ["day", "month"],
|
|
@@ -1916,7 +1917,7 @@ Input.displayName = "Input";
|
|
|
1916
1917
|
var Input_default = Input;
|
|
1917
1918
|
|
|
1918
1919
|
// src/components/CurrencyInput/CurrencyInput.tsx
|
|
1919
|
-
import { styled as styled7, useThemeProps as
|
|
1920
|
+
import { styled as styled7, useThemeProps as useThemeProps4 } from "@mui/joy";
|
|
1920
1921
|
|
|
1921
1922
|
// src/components/CurrencyInput/hooks/use-currency-setting.ts
|
|
1922
1923
|
var CURRENCY_DECIMAL_MAP = {
|
|
@@ -2102,7 +2103,7 @@ var CurrencyInputRoot = styled7(Input_default, {
|
|
|
2102
2103
|
overridesResolver: (props, styles) => styles.root
|
|
2103
2104
|
})({});
|
|
2104
2105
|
var CurrencyInput = React17.forwardRef(function CurrencyInput2(inProps, ref) {
|
|
2105
|
-
const props =
|
|
2106
|
+
const props = useThemeProps4({ props: inProps, name: "CurrencyInput" });
|
|
2106
2107
|
const {
|
|
2107
2108
|
currency = "USD",
|
|
2108
2109
|
name,
|
|
@@ -2630,7 +2631,7 @@ import { AnimatePresence as AnimatePresence2 } from "framer-motion";
|
|
|
2630
2631
|
import React19, { forwardRef as forwardRef6, useCallback as useCallback9, useEffect as useEffect4, useImperativeHandle, useRef as useRef4, useState as useState8 } from "react";
|
|
2631
2632
|
import { IMaskInput, IMask } from "react-imask";
|
|
2632
2633
|
import CalendarTodayIcon from "@mui/icons-material/CalendarToday";
|
|
2633
|
-
import { styled as styled10, useThemeProps as
|
|
2634
|
+
import { styled as styled10, useThemeProps as useThemeProps5 } from "@mui/joy";
|
|
2634
2635
|
import { FocusTrap, ClickAwayListener, Popper as Popper2 } from "@mui/base";
|
|
2635
2636
|
|
|
2636
2637
|
// src/components/Sheet/Sheet.tsx
|
|
@@ -2818,7 +2819,7 @@ var TextMaskAdapter3 = React19.forwardRef(function TextMaskAdapter4(props, ref)
|
|
|
2818
2819
|
);
|
|
2819
2820
|
});
|
|
2820
2821
|
var DatePicker = forwardRef6((inProps, ref) => {
|
|
2821
|
-
const props =
|
|
2822
|
+
const props = useThemeProps5({ props: inProps, name: "DatePicker" });
|
|
2822
2823
|
const {
|
|
2823
2824
|
onChange,
|
|
2824
2825
|
disabled,
|
|
@@ -4198,7 +4199,7 @@ import PreviousIcon from "@mui/icons-material/ChevronLeftRounded";
|
|
|
4198
4199
|
import NextIcon from "@mui/icons-material/ChevronRightRounded";
|
|
4199
4200
|
import FirstPageIcon from "@mui/icons-material/FirstPageRounded";
|
|
4200
4201
|
import LastPageIcon from "@mui/icons-material/LastPageRounded";
|
|
4201
|
-
import { styled as styled13 } from "@mui/joy";
|
|
4202
|
+
import { styled as styled13, useThemeProps as useThemeProps6 } from "@mui/joy";
|
|
4202
4203
|
var PaginationButton = styled13(Button_default, {
|
|
4203
4204
|
name: "Pagination",
|
|
4204
4205
|
slot: "button"
|
|
@@ -4249,13 +4250,14 @@ var PaginationContainer = styled13(Stack_default, {
|
|
|
4249
4250
|
lg: theme.spacing(2)
|
|
4250
4251
|
}[size]
|
|
4251
4252
|
}));
|
|
4252
|
-
function Pagination(
|
|
4253
|
+
function Pagination(inProps) {
|
|
4254
|
+
const props = useThemeProps6({ props: inProps, name: "Pagination" });
|
|
4253
4255
|
const {
|
|
4254
4256
|
paginationModel: _paginationModel,
|
|
4255
4257
|
defaultPaginationModel = { page: 1, pageSize: 25 },
|
|
4256
4258
|
onPageChange,
|
|
4257
4259
|
rowCount,
|
|
4258
|
-
size = "
|
|
4260
|
+
size = "sm",
|
|
4259
4261
|
variant = "standard",
|
|
4260
4262
|
...innerProps
|
|
4261
4263
|
} = props;
|
|
@@ -4910,7 +4912,7 @@ DataTable.displayName = "DataTable";
|
|
|
4910
4912
|
import React27, { forwardRef as forwardRef8, useCallback as useCallback14, useEffect as useEffect8, useImperativeHandle as useImperativeHandle3, useMemo as useMemo12, useRef as useRef8, useState as useState11 } from "react";
|
|
4911
4913
|
import { IMaskInput as IMaskInput2, IMask as IMask2 } from "react-imask";
|
|
4912
4914
|
import CalendarTodayIcon2 from "@mui/icons-material/CalendarToday";
|
|
4913
|
-
import { styled as styled14, useThemeProps as
|
|
4915
|
+
import { styled as styled14, useThemeProps as useThemeProps7 } from "@mui/joy";
|
|
4914
4916
|
import { FocusTrap as FocusTrap2, ClickAwayListener as ClickAwayListener2, Popper as Popper3 } from "@mui/base";
|
|
4915
4917
|
var hasAlphabeticMonth2 = (format) => /MMMM|MMM/.test(format);
|
|
4916
4918
|
var CalendarButton2 = styled14(IconButton_default, {
|
|
@@ -5086,7 +5088,7 @@ var TextMaskAdapter5 = React27.forwardRef(function TextMaskAdapter6(props, ref)
|
|
|
5086
5088
|
);
|
|
5087
5089
|
});
|
|
5088
5090
|
var DateRangePicker = forwardRef8((inProps, ref) => {
|
|
5089
|
-
const props =
|
|
5091
|
+
const props = useThemeProps7({ props: inProps, name: "DateRangePicker" });
|
|
5090
5092
|
const {
|
|
5091
5093
|
onChange,
|
|
5092
5094
|
disabled,
|
|
@@ -5460,6 +5462,7 @@ var InsetDrawer = styled19(JoyDrawer)(({ theme }) => ({
|
|
|
5460
5462
|
// src/components/FilterableCheckboxGroup/FilterableCheckboxGroup.tsx
|
|
5461
5463
|
import React31, { useCallback as useCallback15, useEffect as useEffect9, useMemo as useMemo13, useRef as useRef9, useState as useState12 } from "react";
|
|
5462
5464
|
import SearchIcon from "@mui/icons-material/Search";
|
|
5465
|
+
import { useThemeProps as useThemeProps8 } from "@mui/joy";
|
|
5463
5466
|
import { useVirtualizer as useVirtualizer3 } from "@tanstack/react-virtual";
|
|
5464
5467
|
function LabelWithTooltip(props) {
|
|
5465
5468
|
const { label, size } = props;
|
|
@@ -5492,14 +5495,15 @@ function LabelWithTooltip(props) {
|
|
|
5492
5495
|
}
|
|
5493
5496
|
return labelContent;
|
|
5494
5497
|
}
|
|
5495
|
-
function FilterableCheckboxGroup(
|
|
5498
|
+
function FilterableCheckboxGroup(inProps) {
|
|
5499
|
+
const props = useThemeProps8({ props: inProps, name: "FilterableCheckboxGroup" });
|
|
5496
5500
|
const {
|
|
5497
5501
|
value,
|
|
5498
5502
|
options,
|
|
5499
5503
|
label,
|
|
5500
5504
|
placeholder,
|
|
5501
5505
|
helperText,
|
|
5502
|
-
size = "
|
|
5506
|
+
size = "sm",
|
|
5503
5507
|
required,
|
|
5504
5508
|
onChange,
|
|
5505
5509
|
maxHeight = 300,
|
|
@@ -5932,7 +5936,7 @@ import { Stack as Stack6 } from "@mui/joy";
|
|
|
5932
5936
|
import React36, { forwardRef as forwardRef9, useCallback as useCallback20, useEffect as useEffect11, useImperativeHandle as useImperativeHandle4, useMemo as useMemo15, useRef as useRef10, useState as useState14 } from "react";
|
|
5933
5937
|
import { IMaskInput as IMaskInput3, IMask as IMask3 } from "react-imask";
|
|
5934
5938
|
import CalendarTodayIcon3 from "@mui/icons-material/CalendarToday";
|
|
5935
|
-
import { styled as styled20, useThemeProps as
|
|
5939
|
+
import { styled as styled20, useThemeProps as useThemeProps9 } from "@mui/joy";
|
|
5936
5940
|
import { FocusTrap as FocusTrap3, ClickAwayListener as ClickAwayListener3, Popper as Popper4 } from "@mui/base";
|
|
5937
5941
|
var hasAlphabeticMonth3 = (format) => /MMMM|MMM/.test(format);
|
|
5938
5942
|
var StyledPopper3 = styled20(Popper4, {
|
|
@@ -6021,7 +6025,7 @@ var TextMaskAdapter7 = React36.forwardRef(function TextMaskAdapter8(props, ref)
|
|
|
6021
6025
|
);
|
|
6022
6026
|
});
|
|
6023
6027
|
var MonthRangePicker = forwardRef9((inProps, ref) => {
|
|
6024
|
-
const props =
|
|
6028
|
+
const props = useThemeProps9({ props: inProps, name: "MonthRangePicker" });
|
|
6025
6029
|
const {
|
|
6026
6030
|
onChange,
|
|
6027
6031
|
disabled,
|
|
@@ -6376,7 +6380,7 @@ import { Stack as Stack9, Typography as Typography5 } from "@mui/joy";
|
|
|
6376
6380
|
// src/components/PercentageInput/PercentageInput.tsx
|
|
6377
6381
|
import React40, { useCallback as useCallback24, useMemo as useMemo17, useState as useState15 } from "react";
|
|
6378
6382
|
import { NumericFormat as NumericFormat2 } from "react-number-format";
|
|
6379
|
-
import { styled as styled21, useThemeProps as
|
|
6383
|
+
import { styled as styled21, useThemeProps as useThemeProps10 } from "@mui/joy";
|
|
6380
6384
|
var padDecimal = (value, decimalScale) => {
|
|
6381
6385
|
const [integer, decimal = ""] = `${value}`.split(".");
|
|
6382
6386
|
return Number(`${integer}${decimal.padEnd(decimalScale, "0")}`);
|
|
@@ -6410,7 +6414,7 @@ var PercentageInputRoot = styled21(Input_default, {
|
|
|
6410
6414
|
})({});
|
|
6411
6415
|
var PercentageInput = React40.forwardRef(
|
|
6412
6416
|
function PercentageInput2(inProps, ref) {
|
|
6413
|
-
const props =
|
|
6417
|
+
const props = useThemeProps10({ props: inProps, name: "PercentageInput" });
|
|
6414
6418
|
const {
|
|
6415
6419
|
name,
|
|
6416
6420
|
onChange,
|
|
@@ -6697,7 +6701,7 @@ function FilterMenu(props) {
|
|
|
6697
6701
|
}
|
|
6698
6702
|
) : null;
|
|
6699
6703
|
}))),
|
|
6700
|
-
/* @__PURE__ */ React44.createElement(DialogActions, { sx: { justifyContent: "space-between" } }, useClear && filters?.length === 1 && /* @__PURE__ */ React44.createElement(Button2, { variant: "plain", color: "neutral",
|
|
6704
|
+
/* @__PURE__ */ React44.createElement(DialogActions, { sx: { justifyContent: "space-between" } }, useClear && filters?.length === 1 && /* @__PURE__ */ React44.createElement(Button2, { variant: "plain", color: "neutral", onClick: handleClear }, "Clear"), useReset && !useClear && /* @__PURE__ */ React44.createElement(Button2, { variant: "plain", color: "neutral", onClick: handleClear }, "Reset"), /* @__PURE__ */ React44.createElement(Button2, { variant: "solid", color: "primary", onClick: handleApply }, "Apply"))
|
|
6701
6705
|
);
|
|
6702
6706
|
}
|
|
6703
6707
|
FilterMenu.displayName = "FilterMenu";
|
|
@@ -7301,7 +7305,7 @@ MenuButton2.displayName = "MenuButton";
|
|
|
7301
7305
|
// src/components/MonthPicker/MonthPicker.tsx
|
|
7302
7306
|
import React49, { forwardRef as forwardRef10, useCallback as useCallback29, useEffect as useEffect15, useImperativeHandle as useImperativeHandle5, useRef as useRef12, useState as useState18 } from "react";
|
|
7303
7307
|
import CalendarTodayIcon4 from "@mui/icons-material/CalendarToday";
|
|
7304
|
-
import { styled as styled23, useThemeProps as
|
|
7308
|
+
import { styled as styled23, useThemeProps as useThemeProps11 } from "@mui/joy";
|
|
7305
7309
|
import { FocusTrap as FocusTrap4, ClickAwayListener as ClickAwayListener4, Popper as Popper5 } from "@mui/base";
|
|
7306
7310
|
var StyledPopper4 = styled23(Popper5, {
|
|
7307
7311
|
name: "MonthPicker",
|
|
@@ -7356,7 +7360,7 @@ function parseDate4(dateString, format) {
|
|
|
7356
7360
|
return result;
|
|
7357
7361
|
}
|
|
7358
7362
|
var MonthPicker = forwardRef10((inProps, ref) => {
|
|
7359
|
-
const props =
|
|
7363
|
+
const props = useThemeProps11({ props: inProps, name: "MonthPicker" });
|
|
7360
7364
|
const {
|
|
7361
7365
|
onChange,
|
|
7362
7366
|
disabled,
|
|
@@ -7678,7 +7682,7 @@ Navigator.displayName = "Navigator";
|
|
|
7678
7682
|
|
|
7679
7683
|
// src/components/ProfileMenu/ProfileMenu.tsx
|
|
7680
7684
|
import React53, { useCallback as useCallback30, useMemo as useMemo19 } from "react";
|
|
7681
|
-
import { Dropdown as Dropdown2, ListDivider, menuItemClasses, styled as styled26, MenuButton as MenuButton3 } from "@mui/joy";
|
|
7685
|
+
import { Dropdown as Dropdown2, ListDivider, menuItemClasses, styled as styled26, MenuButton as MenuButton3, useThemeProps as useThemeProps12 } from "@mui/joy";
|
|
7682
7686
|
import { ClickAwayListener as ClickAwayListener5 } from "@mui/base";
|
|
7683
7687
|
import DropdownIcon from "@mui/icons-material/ArrowDropDown";
|
|
7684
7688
|
var StyledProfileCard = styled26(Stack, {
|
|
@@ -7700,7 +7704,7 @@ var StyledProfileMenuButton = styled26(MenuButton3, {
|
|
|
7700
7704
|
"--Button-gap": theme.spacing(1)
|
|
7701
7705
|
}));
|
|
7702
7706
|
function ProfileMenuButton(props) {
|
|
7703
|
-
const { size = "
|
|
7707
|
+
const { size = "sm", src, alt, children, getInitial, ...innerProps } = props;
|
|
7704
7708
|
return /* @__PURE__ */ React53.createElement(
|
|
7705
7709
|
StyledProfileMenuButton,
|
|
7706
7710
|
{
|
|
@@ -7724,7 +7728,8 @@ var ProfileMenuRoot = styled26(Menu, {
|
|
|
7724
7728
|
border: "none"
|
|
7725
7729
|
}
|
|
7726
7730
|
}));
|
|
7727
|
-
function ProfileMenu(
|
|
7731
|
+
function ProfileMenu(inProps) {
|
|
7732
|
+
const props = useThemeProps12({ props: inProps, name: "ProfileMenu" });
|
|
7728
7733
|
const { open: _open, defaultOpen, onOpenChange, profile, getInitial, menuItems, size, ...innerProps } = props;
|
|
7729
7734
|
const [open, setOpen] = useControlledState(
|
|
7730
7735
|
_open,
|
|
@@ -7929,7 +7934,7 @@ RadioList.displayName = "RadioList";
|
|
|
7929
7934
|
|
|
7930
7935
|
// src/components/SearchBar/SearchBar.tsx
|
|
7931
7936
|
import * as React56 from "react";
|
|
7932
|
-
import { styled as styled28, useThemeProps as
|
|
7937
|
+
import { styled as styled28, useThemeProps as useThemeProps13 } from "@mui/joy/styles";
|
|
7933
7938
|
import Box2 from "@mui/joy/Box";
|
|
7934
7939
|
import SearchRoundedIcon from "@mui/icons-material/SearchRounded";
|
|
7935
7940
|
import CloseRoundedIcon from "@mui/icons-material/CloseRounded";
|
|
@@ -7949,7 +7954,7 @@ var SearchBarRoot = styled28(Box2, {
|
|
|
7949
7954
|
flexShrink: 0
|
|
7950
7955
|
}));
|
|
7951
7956
|
var SearchBar = React56.forwardRef(function SearchBar2(inProps, ref) {
|
|
7952
|
-
const props =
|
|
7957
|
+
const props = useThemeProps13({ props: inProps, name: "SearchBar" });
|
|
7953
7958
|
const { showSelect = false, options, placeholder: placeholderProp, value, onChange, onSearch, ...other } = props;
|
|
7954
7959
|
const [selectVal, setSelectVal] = React56.useState(options?.[0]?.value ?? "");
|
|
7955
7960
|
const [isHovered, setIsHovered] = React56.useState(false);
|
|
@@ -8442,6 +8447,9 @@ var defaultTheme = extendTheme({
|
|
|
8442
8447
|
}
|
|
8443
8448
|
},
|
|
8444
8449
|
JoyAvatar: {
|
|
8450
|
+
defaultProps: {
|
|
8451
|
+
size: "sm"
|
|
8452
|
+
},
|
|
8445
8453
|
styleOverrides: {
|
|
8446
8454
|
root: ({ ownerState }) => ({
|
|
8447
8455
|
...ownerState.size === "xs" && {
|
|
@@ -8463,6 +8471,121 @@ var defaultTheme = extendTheme({
|
|
|
8463
8471
|
defaultProps: {
|
|
8464
8472
|
size: "sm"
|
|
8465
8473
|
}
|
|
8474
|
+
},
|
|
8475
|
+
JoyButton: {
|
|
8476
|
+
defaultProps: {
|
|
8477
|
+
size: "sm"
|
|
8478
|
+
}
|
|
8479
|
+
},
|
|
8480
|
+
JoyIconButton: {
|
|
8481
|
+
defaultProps: {
|
|
8482
|
+
size: "sm"
|
|
8483
|
+
}
|
|
8484
|
+
},
|
|
8485
|
+
JoyChip: {
|
|
8486
|
+
defaultProps: {
|
|
8487
|
+
size: "sm"
|
|
8488
|
+
}
|
|
8489
|
+
},
|
|
8490
|
+
JoyCard: {
|
|
8491
|
+
defaultProps: {
|
|
8492
|
+
size: "sm"
|
|
8493
|
+
}
|
|
8494
|
+
},
|
|
8495
|
+
JoyBreadcrumbs: {
|
|
8496
|
+
defaultProps: {
|
|
8497
|
+
size: "sm"
|
|
8498
|
+
}
|
|
8499
|
+
},
|
|
8500
|
+
JoyList: {
|
|
8501
|
+
defaultProps: {
|
|
8502
|
+
size: "sm"
|
|
8503
|
+
}
|
|
8504
|
+
},
|
|
8505
|
+
JoyMenu: {
|
|
8506
|
+
defaultProps: {
|
|
8507
|
+
size: "sm"
|
|
8508
|
+
}
|
|
8509
|
+
},
|
|
8510
|
+
JoyMenuList: {
|
|
8511
|
+
defaultProps: {
|
|
8512
|
+
size: "sm"
|
|
8513
|
+
}
|
|
8514
|
+
},
|
|
8515
|
+
JoyTabs: {
|
|
8516
|
+
defaultProps: {
|
|
8517
|
+
size: "sm"
|
|
8518
|
+
}
|
|
8519
|
+
},
|
|
8520
|
+
JoyTabList: {
|
|
8521
|
+
defaultProps: {
|
|
8522
|
+
size: "sm"
|
|
8523
|
+
}
|
|
8524
|
+
},
|
|
8525
|
+
JoyStepper: {
|
|
8526
|
+
defaultProps: {
|
|
8527
|
+
size: "sm"
|
|
8528
|
+
}
|
|
8529
|
+
},
|
|
8530
|
+
JoyModalDialog: {
|
|
8531
|
+
defaultProps: {
|
|
8532
|
+
size: "sm"
|
|
8533
|
+
}
|
|
8534
|
+
},
|
|
8535
|
+
JoyAccordionGroup: {
|
|
8536
|
+
defaultProps: {
|
|
8537
|
+
size: "sm"
|
|
8538
|
+
}
|
|
8539
|
+
},
|
|
8540
|
+
JoyButtonGroup: {
|
|
8541
|
+
defaultProps: {
|
|
8542
|
+
size: "sm"
|
|
8543
|
+
}
|
|
8544
|
+
},
|
|
8545
|
+
JoyMenuButton: {
|
|
8546
|
+
defaultProps: {
|
|
8547
|
+
size: "sm"
|
|
8548
|
+
}
|
|
8549
|
+
},
|
|
8550
|
+
JoyCircularProgress: {
|
|
8551
|
+
defaultProps: {
|
|
8552
|
+
size: "sm"
|
|
8553
|
+
}
|
|
8554
|
+
},
|
|
8555
|
+
JoyLinearProgress: {
|
|
8556
|
+
defaultProps: {
|
|
8557
|
+
size: "sm"
|
|
8558
|
+
}
|
|
8559
|
+
},
|
|
8560
|
+
JoySlider: {
|
|
8561
|
+
defaultProps: {
|
|
8562
|
+
size: "sm"
|
|
8563
|
+
}
|
|
8564
|
+
},
|
|
8565
|
+
JoyBadge: {
|
|
8566
|
+
defaultProps: {
|
|
8567
|
+
size: "sm"
|
|
8568
|
+
}
|
|
8569
|
+
},
|
|
8570
|
+
Alert: {
|
|
8571
|
+
defaultProps: {
|
|
8572
|
+
size: "sm"
|
|
8573
|
+
}
|
|
8574
|
+
},
|
|
8575
|
+
Pagination: {
|
|
8576
|
+
defaultProps: {
|
|
8577
|
+
size: "sm"
|
|
8578
|
+
}
|
|
8579
|
+
},
|
|
8580
|
+
FilterableCheckboxGroup: {
|
|
8581
|
+
defaultProps: {
|
|
8582
|
+
size: "sm"
|
|
8583
|
+
}
|
|
8584
|
+
},
|
|
8585
|
+
ProfileMenu: {
|
|
8586
|
+
defaultProps: {
|
|
8587
|
+
size: "sm"
|
|
8588
|
+
}
|
|
8466
8589
|
}
|
|
8467
8590
|
}
|
|
8468
8591
|
});
|
|
@@ -8651,5 +8774,5 @@ export {
|
|
|
8651
8774
|
useColorScheme,
|
|
8652
8775
|
useMenuButton,
|
|
8653
8776
|
useTheme2 as useTheme,
|
|
8654
|
-
|
|
8777
|
+
useThemeProps14 as useThemeProps
|
|
8655
8778
|
};
|