@astral/ui 1.30.3 → 1.31.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.
- package/Badge/styled.d.ts +9 -1
- package/ButtonBase/styles.js +6 -25
- package/DatePicker/DatePickerPopper/styles.d.ts +1 -1
- package/ListItem/styles.d.ts +1 -1
- package/Placeholder/Placeholder.d.ts +5 -5
- package/Placeholder/Placeholder.js +1 -1
- package/Tooltip/Tooltip.d.ts +1 -1
- package/Typography/Typography.js +15 -5
- package/esm/Badge/styled.d.ts +9 -1
- package/esm/ButtonBase/styles.js +4 -3
- package/esm/DatePicker/DatePickerPopper/styles.d.ts +1 -1
- package/esm/ListItem/styles.d.ts +1 -1
- package/esm/Placeholder/Placeholder.d.ts +5 -5
- package/esm/Placeholder/Placeholder.js +1 -1
- package/esm/Tooltip/Tooltip.d.ts +1 -1
- package/esm/Typography/Typography.js +15 -5
- package/esm/theme/components/MuiDialogTitle.js +2 -1
- package/package.json +5 -5
- package/theme/components/MuiDialogTitle.js +2 -1
package/Badge/styled.d.ts
CHANGED
|
@@ -5,12 +5,20 @@ export declare const StyledBadge: import("@emotion/styled").StyledComponent<{
|
|
|
5
5
|
classes?: Partial<import("@mui/material").BadgeClasses> | undefined;
|
|
6
6
|
className?: string | undefined;
|
|
7
7
|
color?: "primary" | "secondary" | "default" | "error" | "warning" | "info" | "success" | undefined;
|
|
8
|
+
componentsProps?: {
|
|
9
|
+
root?: import("@mui/base").SlotComponentProps<"span", import("@mui/base").BadgeUnstyledComponentsPropsOverrides, import("@mui/base").BadgeUnstyledOwnerState> | undefined;
|
|
10
|
+
badge?: import("@mui/base").SlotComponentProps<"span", import("@mui/base").BadgeUnstyledComponentsPropsOverrides, import("@mui/base").BadgeUnstyledOwnerState> | undefined;
|
|
11
|
+
} | undefined;
|
|
12
|
+
components?: {
|
|
13
|
+
Root?: import("react").ElementType<any> | undefined;
|
|
14
|
+
Badge?: import("react").ElementType<any> | undefined;
|
|
15
|
+
} | undefined;
|
|
8
16
|
overlap?: "circular" | "rectangular" | undefined;
|
|
9
17
|
sx?: import("@mui/material").SxProps<import("@mui/material").Theme> | undefined;
|
|
10
18
|
variant?: "standard" | "dot" | undefined;
|
|
11
19
|
} & import("@mui/base").BadgeUnstyledOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "css" | "key" | keyof import("react").HTMLAttributes<HTMLSpanElement>> & {
|
|
12
20
|
ref?: ((instance: HTMLSpanElement | null) => void) | import("react").RefObject<HTMLSpanElement> | null | undefined;
|
|
13
|
-
}, "color" | "sx" | "variant" | keyof import("@mui/material/OverridableComponent").CommonProps | "anchorOrigin" | "overlap" | keyof import("@mui/base").BadgeUnstyledOwnProps> & {
|
|
21
|
+
}, "color" | "components" | "sx" | "variant" | keyof import("@mui/material/OverridableComponent").CommonProps | "componentsProps" | "anchorOrigin" | "overlap" | keyof import("@mui/base").BadgeUnstyledOwnProps> & {
|
|
14
22
|
theme?: import("@emotion/react").Theme | undefined;
|
|
15
23
|
} & Omit<BadgeProps, "color"> & {
|
|
16
24
|
customColor: BadgeColor;
|
package/ButtonBase/styles.js
CHANGED
|
@@ -1,30 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var
|
|
3
|
-
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
-
}) : function(o, v) {
|
|
16
|
-
o["default"] = v;
|
|
17
|
-
});
|
|
18
|
-
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
-
if (mod && mod.__esModule) return mod;
|
|
20
|
-
var result = {};
|
|
21
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
-
__setModuleDefault(result, mod);
|
|
23
|
-
return result;
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
24
4
|
};
|
|
25
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
6
|
exports.ButtonBaseWrapper = exports.getButtonHeightMobile = exports.getButtonPaddingMobile = exports.getDisabledBgColor = exports.getButtonPadding = exports.getButtonHeight = exports.getBgColor = exports.getColor = void 0;
|
|
27
|
-
const ButtonUnstyled_1 =
|
|
7
|
+
const ButtonUnstyled_1 = __importDefault(require("@mui/base/ButtonUnstyled"));
|
|
8
|
+
const material_1 = require("@mui/material");
|
|
28
9
|
const styles_1 = require("../styles");
|
|
29
10
|
const enums_1 = require("./enums");
|
|
30
11
|
const getColor = ({ theme, customVariant, customColor, buttonState, selected, }) => {
|
|
@@ -260,14 +241,14 @@ exports.ButtonBaseWrapper = (0, styles_1.styled)(ButtonUnstyled_1.default, {
|
|
|
260
241
|
outline: none;
|
|
261
242
|
}
|
|
262
243
|
|
|
263
|
-
&.${
|
|
244
|
+
&.${material_1.buttonClasses.disabled} {
|
|
264
245
|
color: ${({ theme }) => theme.palette.grey['500']};
|
|
265
246
|
|
|
266
247
|
background-color: ${exports.getDisabledBgColor};
|
|
267
248
|
cursor: unset;
|
|
268
249
|
}
|
|
269
250
|
|
|
270
|
-
&.${
|
|
251
|
+
&.${material_1.buttonClasses.focusVisible} {
|
|
271
252
|
outline: 2px solid ${({ theme }) => theme.palette.primary['400']};
|
|
272
253
|
}
|
|
273
254
|
`;
|
|
@@ -3,6 +3,6 @@ export declare const DatePickerPopoverInner: import("@emotion/styled").StyledCom
|
|
|
3
3
|
theme?: import("@emotion/react").Theme | undefined;
|
|
4
4
|
as?: import("react").ElementType<any> | undefined;
|
|
5
5
|
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
6
|
-
export declare const PopperWrapper: import("@emotion/styled").StyledComponent<Pick<import("@mui/material").PopperProps, "color" | "translate" | "transition" | "components" | "sx" | "tabIndex" | "children" | "className" | "
|
|
6
|
+
export declare const PopperWrapper: import("@emotion/styled").StyledComponent<Pick<import("@mui/material").PopperProps, "color" | "translate" | "transition" | "components" | "sx" | "tabIndex" | "children" | "className" | "slotProps" | "slots" | "slot" | "style" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "component" | "componentsProps" | "container" | "open" | "disablePortal" | "keepMounted" | "anchorEl" | "modifiers" | "placement" | "popperOptions" | "popperRef"> & import("react").RefAttributes<HTMLDivElement> & {
|
|
7
7
|
theme?: import("@emotion/react").Theme | undefined;
|
|
8
8
|
}, {}, {}>;
|
package/ListItem/styles.d.ts
CHANGED
|
@@ -22,7 +22,7 @@ export declare const StyledListItem: import("@emotion/styled").StyledComponent<{
|
|
|
22
22
|
} | undefined;
|
|
23
23
|
} & import("@mui/material/OverridableComponent").CommonProps & Omit<Pick<import("react").DetailedHTMLProps<import("react").LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "css" | "key" | keyof import("react").LiHTMLAttributes<HTMLLIElement>> & {
|
|
24
24
|
ref?: ((instance: HTMLLIElement | null) => void) | import("react").RefObject<HTMLLIElement> | null | undefined;
|
|
25
|
-
}, "button" | "disabled" | "alignItems" | "components" | "divider" | "sx" | "children" | "className" | "
|
|
25
|
+
}, "button" | "disabled" | "alignItems" | "components" | "divider" | "sx" | "children" | "className" | "style" | "autoFocus" | "selected" | "classes" | "componentsProps" | "dense" | "disableGutters" | "disablePadding" | "ContainerComponent" | "ContainerProps" | "secondaryAction"> & {
|
|
26
26
|
theme?: import("@emotion/react").Theme | undefined;
|
|
27
27
|
} & ListItemProps, {}, {}>;
|
|
28
28
|
export {};
|
|
@@ -3,11 +3,11 @@ export declare type PlaceholderProps = {
|
|
|
3
3
|
/**
|
|
4
4
|
* Ссылка на изображение
|
|
5
5
|
*/
|
|
6
|
-
imgSrc
|
|
6
|
+
imgSrc?: string;
|
|
7
7
|
/**
|
|
8
|
-
* Описание изображения
|
|
8
|
+
* Описание изображения (атрибут alt)
|
|
9
9
|
*/
|
|
10
|
-
imgAlt
|
|
10
|
+
imgAlt?: string;
|
|
11
11
|
/**
|
|
12
12
|
* ширина изображения
|
|
13
13
|
*/
|
|
@@ -19,11 +19,11 @@ export declare type PlaceholderProps = {
|
|
|
19
19
|
/**
|
|
20
20
|
* Заголовок
|
|
21
21
|
*/
|
|
22
|
-
title: string;
|
|
22
|
+
title: JSX.Element | JSX.Element[] | string;
|
|
23
23
|
/**
|
|
24
24
|
* Описание
|
|
25
25
|
*/
|
|
26
|
-
description?:
|
|
26
|
+
description?: JSX.Element | JSX.Element[] | string;
|
|
27
27
|
/**
|
|
28
28
|
* Действия
|
|
29
29
|
*/
|
|
@@ -4,6 +4,6 @@ exports.Placeholder = void 0;
|
|
|
4
4
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
5
|
const styles_1 = require("./styles");
|
|
6
6
|
const Placeholder = ({ title, imgSrc, imgAlt, imgWidth, imgHeight, description, Actions, }) => {
|
|
7
|
-
return ((0, jsx_runtime_1.jsxs)(styles_1.PlaceholderRoot, { children: [(0, jsx_runtime_1.jsxs)(styles_1.PlaceholderInnerContainer, { children: [(0, jsx_runtime_1.jsx)(styles_1.PlaceholderImage, { src: imgSrc, alt: imgAlt, width: imgWidth, height: imgHeight }), (0, jsx_runtime_1.jsx)(styles_1.PlaceholderTitle, Object.assign({ variant: "h4" }, { children: title })), description && ((0, jsx_runtime_1.jsx)(styles_1.PlaceholderDescription, Object.assign({ variant: "ui" }, { children: description })))] }), Actions && (0, jsx_runtime_1.jsx)(styles_1.PlaceholderActions, { children: Actions })] }));
|
|
7
|
+
return ((0, jsx_runtime_1.jsxs)(styles_1.PlaceholderRoot, { children: [(0, jsx_runtime_1.jsxs)(styles_1.PlaceholderInnerContainer, { children: [imgSrc && ((0, jsx_runtime_1.jsx)(styles_1.PlaceholderImage, { src: imgSrc, alt: imgAlt, width: imgWidth, height: imgHeight })), (0, jsx_runtime_1.jsx)(styles_1.PlaceholderTitle, Object.assign({ variant: "h4" }, { children: title })), description && ((0, jsx_runtime_1.jsx)(styles_1.PlaceholderDescription, Object.assign({ variant: "ui" }, { children: description })))] }), Actions && (0, jsx_runtime_1.jsx)(styles_1.PlaceholderActions, { children: Actions })] }));
|
|
8
8
|
};
|
|
9
9
|
exports.Placeholder = Placeholder;
|
package/Tooltip/Tooltip.d.ts
CHANGED
|
@@ -8,4 +8,4 @@ export declare type TooltipProps = WithoutEmotionSpecific<MuiTooltipProps> & {
|
|
|
8
8
|
*/
|
|
9
9
|
size?: TooltipSize;
|
|
10
10
|
};
|
|
11
|
-
export declare const Tooltip: import("react").ForwardRefExoticComponent<Pick<TooltipProps, "color" | "translate" | "components" | "tabIndex" | "children" | "className" | "
|
|
11
|
+
export declare const Tooltip: import("react").ForwardRefExoticComponent<Pick<TooltipProps, "color" | "translate" | "components" | "tabIndex" | "children" | "className" | "slot" | "style" | "title" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "size" | "classes" | "componentsProps" | "open" | "onClose" | "TransitionComponent" | "TransitionProps" | "placement" | "arrow" | "describeChild" | "disableFocusListener" | "disableHoverListener" | "disableInteractive" | "disableTouchListener" | "enterDelay" | "enterNextDelay" | "enterTouchDelay" | "followCursor" | "leaveDelay" | "leaveTouchDelay" | "onOpen" | "PopperComponent" | "PopperProps"> & import("react").RefAttributes<HTMLDivElement>>;
|
package/Typography/Typography.js
CHANGED
|
@@ -17,16 +17,26 @@ const material_1 = require("@mui/material");
|
|
|
17
17
|
const react_1 = require("react");
|
|
18
18
|
const enums_1 = require("./enums");
|
|
19
19
|
exports.Typography = (0, react_1.forwardRef)((_a, ref) => {
|
|
20
|
-
var { children, color, colorIntensity } = _a, props = __rest(_a, ["children", "color", "colorIntensity"]);
|
|
20
|
+
var { children, color, colorIntensity = '800' } = _a, props = __rest(_a, ["children", "color", "colorIntensity"]);
|
|
21
21
|
const typographyColor = (0, react_1.useMemo)(() => {
|
|
22
22
|
if (typeof color === 'function') {
|
|
23
23
|
return color;
|
|
24
24
|
}
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
25
|
+
// получаем название цвета по TypographyColors
|
|
26
|
+
const colorName = color && enums_1.TypographyColors[color];
|
|
27
|
+
if (colorName) {
|
|
28
|
+
return (theme) => {
|
|
29
|
+
// если такой цвет есть в палитре, то ищем его intensity
|
|
30
|
+
// или возвращаем main цвет (если для данного цвета не определены intensity)
|
|
31
|
+
// или возвращаем значение colorName (например, необходимо для таких TypographyColor, как "textSecondary",
|
|
32
|
+
// которые невозможно найти в palette потому-что поиск осуществляется по ключу "text.secondary")
|
|
33
|
+
var _a, _b;
|
|
34
|
+
return (((_a = theme.palette[colorName]) === null || _a === void 0 ? void 0 : _a[colorIntensity]) ||
|
|
35
|
+
((_b = theme.palette[colorName]) === null || _b === void 0 ? void 0 : _b.main) ||
|
|
36
|
+
colorName);
|
|
37
|
+
};
|
|
28
38
|
}
|
|
29
|
-
return
|
|
39
|
+
return;
|
|
30
40
|
}, [color, colorIntensity]);
|
|
31
41
|
return ((0, jsx_runtime_1.jsx)(material_1.Typography, Object.assign({ ref: ref }, props, { color: typographyColor }, { children: children })));
|
|
32
42
|
});
|
package/esm/Badge/styled.d.ts
CHANGED
|
@@ -5,12 +5,20 @@ export declare const StyledBadge: import("@emotion/styled").StyledComponent<{
|
|
|
5
5
|
classes?: Partial<import("@mui/material").BadgeClasses> | undefined;
|
|
6
6
|
className?: string | undefined;
|
|
7
7
|
color?: "primary" | "secondary" | "default" | "error" | "warning" | "info" | "success" | undefined;
|
|
8
|
+
componentsProps?: {
|
|
9
|
+
root?: import("@mui/base").SlotComponentProps<"span", import("@mui/base").BadgeUnstyledComponentsPropsOverrides, import("@mui/base").BadgeUnstyledOwnerState> | undefined;
|
|
10
|
+
badge?: import("@mui/base").SlotComponentProps<"span", import("@mui/base").BadgeUnstyledComponentsPropsOverrides, import("@mui/base").BadgeUnstyledOwnerState> | undefined;
|
|
11
|
+
} | undefined;
|
|
12
|
+
components?: {
|
|
13
|
+
Root?: import("react").ElementType<any> | undefined;
|
|
14
|
+
Badge?: import("react").ElementType<any> | undefined;
|
|
15
|
+
} | undefined;
|
|
8
16
|
overlap?: "circular" | "rectangular" | undefined;
|
|
9
17
|
sx?: import("@mui/material").SxProps<import("@mui/material").Theme> | undefined;
|
|
10
18
|
variant?: "standard" | "dot" | undefined;
|
|
11
19
|
} & import("@mui/base").BadgeUnstyledOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "css" | "key" | keyof import("react").HTMLAttributes<HTMLSpanElement>> & {
|
|
12
20
|
ref?: ((instance: HTMLSpanElement | null) => void) | import("react").RefObject<HTMLSpanElement> | null | undefined;
|
|
13
|
-
}, "color" | "sx" | "variant" | keyof import("@mui/material/OverridableComponent").CommonProps | "anchorOrigin" | "overlap" | keyof import("@mui/base").BadgeUnstyledOwnProps> & {
|
|
21
|
+
}, "color" | "components" | "sx" | "variant" | keyof import("@mui/material/OverridableComponent").CommonProps | "componentsProps" | "anchorOrigin" | "overlap" | keyof import("@mui/base").BadgeUnstyledOwnProps> & {
|
|
14
22
|
theme?: import("@emotion/react").Theme | undefined;
|
|
15
23
|
} & Omit<BadgeProps, "color"> & {
|
|
16
24
|
customColor: BadgeColor;
|
package/esm/ButtonBase/styles.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import ButtonUnstyled
|
|
1
|
+
import ButtonUnstyled from '@mui/base/ButtonUnstyled';
|
|
2
|
+
import { buttonClasses } from '@mui/material';
|
|
2
3
|
import { styled } from '../styles';
|
|
3
4
|
import { ButtonSizes, ButtonStates, ButtonVariants } from './enums';
|
|
4
5
|
export const getColor = ({ theme, customVariant, customColor, buttonState, selected, }) => {
|
|
@@ -227,14 +228,14 @@ export const ButtonBaseWrapper = styled(ButtonUnstyled, {
|
|
|
227
228
|
outline: none;
|
|
228
229
|
}
|
|
229
230
|
|
|
230
|
-
&.${
|
|
231
|
+
&.${buttonClasses.disabled} {
|
|
231
232
|
color: ${({ theme }) => theme.palette.grey['500']};
|
|
232
233
|
|
|
233
234
|
background-color: ${getDisabledBgColor};
|
|
234
235
|
cursor: unset;
|
|
235
236
|
}
|
|
236
237
|
|
|
237
|
-
&.${
|
|
238
|
+
&.${buttonClasses.focusVisible} {
|
|
238
239
|
outline: 2px solid ${({ theme }) => theme.palette.primary['400']};
|
|
239
240
|
}
|
|
240
241
|
`;
|
|
@@ -3,6 +3,6 @@ export declare const DatePickerPopoverInner: import("@emotion/styled").StyledCom
|
|
|
3
3
|
theme?: import("@emotion/react").Theme | undefined;
|
|
4
4
|
as?: import("react").ElementType<any> | undefined;
|
|
5
5
|
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
6
|
-
export declare const PopperWrapper: import("@emotion/styled").StyledComponent<Pick<import("@mui/material").PopperProps, "color" | "translate" | "transition" | "components" | "sx" | "tabIndex" | "children" | "className" | "
|
|
6
|
+
export declare const PopperWrapper: import("@emotion/styled").StyledComponent<Pick<import("@mui/material").PopperProps, "color" | "translate" | "transition" | "components" | "sx" | "tabIndex" | "children" | "className" | "slotProps" | "slots" | "slot" | "style" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "component" | "componentsProps" | "container" | "open" | "disablePortal" | "keepMounted" | "anchorEl" | "modifiers" | "placement" | "popperOptions" | "popperRef"> & import("react").RefAttributes<HTMLDivElement> & {
|
|
7
7
|
theme?: import("@emotion/react").Theme | undefined;
|
|
8
8
|
}, {}, {}>;
|
package/esm/ListItem/styles.d.ts
CHANGED
|
@@ -22,7 +22,7 @@ export declare const StyledListItem: import("@emotion/styled").StyledComponent<{
|
|
|
22
22
|
} | undefined;
|
|
23
23
|
} & import("@mui/material/OverridableComponent").CommonProps & Omit<Pick<import("react").DetailedHTMLProps<import("react").LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "css" | "key" | keyof import("react").LiHTMLAttributes<HTMLLIElement>> & {
|
|
24
24
|
ref?: ((instance: HTMLLIElement | null) => void) | import("react").RefObject<HTMLLIElement> | null | undefined;
|
|
25
|
-
}, "button" | "disabled" | "alignItems" | "components" | "divider" | "sx" | "children" | "className" | "
|
|
25
|
+
}, "button" | "disabled" | "alignItems" | "components" | "divider" | "sx" | "children" | "className" | "style" | "autoFocus" | "selected" | "classes" | "componentsProps" | "dense" | "disableGutters" | "disablePadding" | "ContainerComponent" | "ContainerProps" | "secondaryAction"> & {
|
|
26
26
|
theme?: import("@emotion/react").Theme | undefined;
|
|
27
27
|
} & ListItemProps, {}, {}>;
|
|
28
28
|
export {};
|
|
@@ -3,11 +3,11 @@ export declare type PlaceholderProps = {
|
|
|
3
3
|
/**
|
|
4
4
|
* Ссылка на изображение
|
|
5
5
|
*/
|
|
6
|
-
imgSrc
|
|
6
|
+
imgSrc?: string;
|
|
7
7
|
/**
|
|
8
|
-
* Описание изображения
|
|
8
|
+
* Описание изображения (атрибут alt)
|
|
9
9
|
*/
|
|
10
|
-
imgAlt
|
|
10
|
+
imgAlt?: string;
|
|
11
11
|
/**
|
|
12
12
|
* ширина изображения
|
|
13
13
|
*/
|
|
@@ -19,11 +19,11 @@ export declare type PlaceholderProps = {
|
|
|
19
19
|
/**
|
|
20
20
|
* Заголовок
|
|
21
21
|
*/
|
|
22
|
-
title: string;
|
|
22
|
+
title: JSX.Element | JSX.Element[] | string;
|
|
23
23
|
/**
|
|
24
24
|
* Описание
|
|
25
25
|
*/
|
|
26
|
-
description?:
|
|
26
|
+
description?: JSX.Element | JSX.Element[] | string;
|
|
27
27
|
/**
|
|
28
28
|
* Действия
|
|
29
29
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { PlaceholderActions, PlaceholderDescription, PlaceholderImage, PlaceholderInnerContainer, PlaceholderRoot, PlaceholderTitle, } from './styles';
|
|
3
3
|
export const Placeholder = ({ title, imgSrc, imgAlt, imgWidth, imgHeight, description, Actions, }) => {
|
|
4
|
-
return (_jsxs(PlaceholderRoot, { children: [_jsxs(PlaceholderInnerContainer, { children: [_jsx(PlaceholderImage, { src: imgSrc, alt: imgAlt, width: imgWidth, height: imgHeight }), _jsx(PlaceholderTitle, Object.assign({ variant: "h4" }, { children: title })), description && (_jsx(PlaceholderDescription, Object.assign({ variant: "ui" }, { children: description })))] }), Actions && _jsx(PlaceholderActions, { children: Actions })] }));
|
|
4
|
+
return (_jsxs(PlaceholderRoot, { children: [_jsxs(PlaceholderInnerContainer, { children: [imgSrc && (_jsx(PlaceholderImage, { src: imgSrc, alt: imgAlt, width: imgWidth, height: imgHeight })), _jsx(PlaceholderTitle, Object.assign({ variant: "h4" }, { children: title })), description && (_jsx(PlaceholderDescription, Object.assign({ variant: "ui" }, { children: description })))] }), Actions && _jsx(PlaceholderActions, { children: Actions })] }));
|
|
5
5
|
};
|
package/esm/Tooltip/Tooltip.d.ts
CHANGED
|
@@ -8,4 +8,4 @@ export declare type TooltipProps = WithoutEmotionSpecific<MuiTooltipProps> & {
|
|
|
8
8
|
*/
|
|
9
9
|
size?: TooltipSize;
|
|
10
10
|
};
|
|
11
|
-
export declare const Tooltip: import("react").ForwardRefExoticComponent<Pick<TooltipProps, "color" | "translate" | "components" | "tabIndex" | "children" | "className" | "
|
|
11
|
+
export declare const Tooltip: import("react").ForwardRefExoticComponent<Pick<TooltipProps, "color" | "translate" | "components" | "tabIndex" | "children" | "className" | "slot" | "style" | "title" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "size" | "classes" | "componentsProps" | "open" | "onClose" | "TransitionComponent" | "TransitionProps" | "placement" | "arrow" | "describeChild" | "disableFocusListener" | "disableHoverListener" | "disableInteractive" | "disableTouchListener" | "enterDelay" | "enterNextDelay" | "enterTouchDelay" | "followCursor" | "leaveDelay" | "leaveTouchDelay" | "onOpen" | "PopperComponent" | "PopperProps"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
@@ -14,16 +14,26 @@ import { Typography as MuiTypography, } from '@mui/material';
|
|
|
14
14
|
import { forwardRef, useMemo } from 'react';
|
|
15
15
|
import { TypographyColors } from './enums';
|
|
16
16
|
export const Typography = forwardRef((_a, ref) => {
|
|
17
|
-
var { children, color, colorIntensity } = _a, props = __rest(_a, ["children", "color", "colorIntensity"]);
|
|
17
|
+
var { children, color, colorIntensity = '800' } = _a, props = __rest(_a, ["children", "color", "colorIntensity"]);
|
|
18
18
|
const typographyColor = useMemo(() => {
|
|
19
19
|
if (typeof color === 'function') {
|
|
20
20
|
return color;
|
|
21
21
|
}
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
22
|
+
// получаем название цвета по TypographyColors
|
|
23
|
+
const colorName = color && TypographyColors[color];
|
|
24
|
+
if (colorName) {
|
|
25
|
+
return (theme) => {
|
|
26
|
+
// если такой цвет есть в палитре, то ищем его intensity
|
|
27
|
+
// или возвращаем main цвет (если для данного цвета не определены intensity)
|
|
28
|
+
// или возвращаем значение colorName (например, необходимо для таких TypographyColor, как "textSecondary",
|
|
29
|
+
// которые невозможно найти в palette потому-что поиск осуществляется по ключу "text.secondary")
|
|
30
|
+
var _a, _b;
|
|
31
|
+
return (((_a = theme.palette[colorName]) === null || _a === void 0 ? void 0 : _a[colorIntensity]) ||
|
|
32
|
+
((_b = theme.palette[colorName]) === null || _b === void 0 ? void 0 : _b.main) ||
|
|
33
|
+
colorName);
|
|
34
|
+
};
|
|
25
35
|
}
|
|
26
|
-
return
|
|
36
|
+
return;
|
|
27
37
|
}, [color, colorIntensity]);
|
|
28
38
|
return (_jsx(MuiTypography, Object.assign({ ref: ref }, props, { color: typographyColor }, { children: children })));
|
|
29
39
|
});
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { buttonClasses } from '@mui/material';
|
|
1
2
|
export const MuiDialogTitle = {
|
|
2
3
|
styleOverrides: {
|
|
3
4
|
root({ theme }) {
|
|
@@ -6,7 +7,7 @@ export const MuiDialogTitle = {
|
|
|
6
7
|
fontSize: theme.typography.h4.fontSize,
|
|
7
8
|
fontWeight: theme.typography.h4.fontWeight,
|
|
8
9
|
lineHeight: theme.typography.h4.lineHeight,
|
|
9
|
-
|
|
10
|
+
[`& .${buttonClasses.root}`]: {
|
|
10
11
|
position: 'absolute',
|
|
11
12
|
right: theme.spacing(5),
|
|
12
13
|
top: theme.spacing(5),
|
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@astral/ui",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.31.0",
|
|
4
4
|
"browser": "./esm/index.js",
|
|
5
5
|
"main": "./index.js",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@astral/icons": "^1.
|
|
7
|
+
"@astral/icons": "^1.31.0",
|
|
8
8
|
"@emotion/cache": "11.7.1",
|
|
9
9
|
"@emotion/react": "11.9.0",
|
|
10
10
|
"@emotion/server": "11.4.0",
|
|
11
11
|
"@emotion/styled": "11.8.1",
|
|
12
|
-
"@mui/base": "^5.0.0-alpha.
|
|
13
|
-
"@mui/lab": "^5.0.0-alpha.
|
|
14
|
-
"@mui/material": "^5.
|
|
12
|
+
"@mui/base": "^5.0.0-alpha.104",
|
|
13
|
+
"@mui/lab": "^5.0.0-alpha.106",
|
|
14
|
+
"@mui/material": "^5.10.12",
|
|
15
15
|
"dayjs": "^1.11.5",
|
|
16
16
|
"lodash-es": "^4.17.21",
|
|
17
17
|
"react-imask": "^6.4.2",
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.MuiDialogTitle = void 0;
|
|
4
|
+
const material_1 = require("@mui/material");
|
|
4
5
|
exports.MuiDialogTitle = {
|
|
5
6
|
styleOverrides: {
|
|
6
7
|
root({ theme }) {
|
|
@@ -9,7 +10,7 @@ exports.MuiDialogTitle = {
|
|
|
9
10
|
fontSize: theme.typography.h4.fontSize,
|
|
10
11
|
fontWeight: theme.typography.h4.fontWeight,
|
|
11
12
|
lineHeight: theme.typography.h4.lineHeight,
|
|
12
|
-
|
|
13
|
+
[`& .${material_1.buttonClasses.root}`]: {
|
|
13
14
|
position: 'absolute',
|
|
14
15
|
right: theme.spacing(5),
|
|
15
16
|
top: theme.spacing(5),
|