@astral/ui 1.14.0 → 1.14.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/DataGrid/DataGridHeadColumn/styles.d.ts +5 -1
- package/DataGrid/DataGridNoData/styles.d.ts +3 -4
- package/DataGridPagination/styles.d.ts +5 -1
- package/DatePicker/DatePickerHeader/styled.d.ts +5 -1
- package/MenuGroup/stories/styled.d.ts +5 -1
- package/MenuGroup/styled.d.ts +5 -1
- package/Notification/NotificationTemplate/styled.d.ts +5 -1
- package/OverflowTypography/styles.d.ts +5 -1
- package/Placeholder/styles.d.ts +10 -2
- package/Typography/Typography.d.ts +26 -3
- package/Typography/index.d.ts +0 -1
- package/Typography/index.js +0 -1
- package/esm/DataGrid/DataGridHeadColumn/styles.d.ts +5 -1
- package/esm/DataGrid/DataGridNoData/styles.d.ts +3 -4
- package/esm/DataGridPagination/styles.d.ts +5 -1
- package/esm/DatePicker/DatePickerHeader/styled.d.ts +5 -1
- package/esm/MenuGroup/stories/styled.d.ts +5 -1
- package/esm/MenuGroup/styled.d.ts +5 -1
- package/esm/Notification/NotificationTemplate/styled.d.ts +5 -1
- package/esm/OverflowTypography/styles.d.ts +5 -1
- package/esm/Placeholder/styles.d.ts +10 -2
- package/esm/Typography/Typography.d.ts +26 -3
- package/esm/Typography/Typography.js +1 -1
- package/esm/Typography/index.d.ts +0 -1
- package/esm/Typography/index.js +0 -1
- package/package.json +2 -2
- package/Typography/types.d.ts +0 -25
- package/Typography/types.js +0 -2
- package/esm/Typography/types.d.ts +0 -25
- package/esm/Typography/types.js +0 -1
|
@@ -6,6 +6,10 @@ export declare const StyledTableCell: import("@emotion/styled").StyledComponent<
|
|
|
6
6
|
width?: CSSProperties['width'];
|
|
7
7
|
sortable?: boolean | undefined;
|
|
8
8
|
}, {}, {}>;
|
|
9
|
-
export declare const TableCellTitle: import("@emotion/styled").StyledComponent<
|
|
9
|
+
export declare const TableCellTitle: import("@emotion/styled").StyledComponent<Omit<import("@mui/material/OverridableComponent").OverrideProps<import("@mui/material").TypographyTypeMap<{}, "span">, import("react").ElementType<any>>, "color" | "variant"> & {
|
|
10
|
+
variant?: import("@mui/material").TypographyVariant | keyof import("@mui/material").TypographyPropsVariantOverrides | undefined;
|
|
11
|
+
component?: import("react").ElementType<any> | undefined;
|
|
12
|
+
color?: "primary" | "secondary" | "error" | "warning" | "info" | "success" | "text" | "textSecondary" | ((theme: import("@mui/material").Theme) => string) | undefined;
|
|
13
|
+
} & {
|
|
10
14
|
theme?: import("@emotion/react").Theme | undefined;
|
|
11
15
|
}, {}, {}>;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import { TypographyProps } from '../../Typography';
|
|
3
2
|
export declare const DataGridNoDataWrapper: import("@emotion/styled").StyledComponent<{
|
|
4
3
|
theme?: import("@emotion/react").Theme | undefined;
|
|
5
4
|
as?: import("react").ElementType<any> | undefined;
|
|
@@ -14,10 +13,10 @@ export declare const DataGridNoDataIcon: import("@emotion/styled").StyledCompone
|
|
|
14
13
|
} & {
|
|
15
14
|
noDataIconWidth: number;
|
|
16
15
|
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
17
|
-
export declare const DataGridNoDataFigcaption: import("@emotion/styled").StyledComponent<
|
|
18
|
-
theme?: import("@emotion/react").Theme | undefined;
|
|
19
|
-
} & Omit<import("@mui/material/OverridableComponent").OverrideProps<import("@mui/material").TypographyTypeMap<{}, "span">, import("react").ElementType<any>>, "color" | "variant"> & {
|
|
16
|
+
export declare const DataGridNoDataFigcaption: import("@emotion/styled").StyledComponent<Omit<import("@mui/material/OverridableComponent").OverrideProps<import("@mui/material").TypographyTypeMap<{}, "span">, import("react").ElementType<any>>, "color" | "variant"> & {
|
|
20
17
|
variant?: import("@mui/material").TypographyVariant | keyof import("@mui/material").TypographyPropsVariantOverrides | undefined;
|
|
21
18
|
component?: import("react").ElementType<any> | undefined;
|
|
22
19
|
color?: "primary" | "secondary" | "error" | "warning" | "info" | "success" | "text" | "textSecondary" | ((theme: import("@mui/material").Theme) => string) | undefined;
|
|
20
|
+
} & {
|
|
21
|
+
theme?: import("@emotion/react").Theme | undefined;
|
|
23
22
|
}, {}, {}>;
|
|
@@ -3,6 +3,10 @@ export declare const PaginationWrapper: import("@emotion/styled").StyledComponen
|
|
|
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 Range: import("@emotion/styled").StyledComponent<
|
|
6
|
+
export declare const Range: import("@emotion/styled").StyledComponent<Omit<import("@mui/material/OverridableComponent").OverrideProps<import("@mui/material").TypographyTypeMap<{}, "span">, import("react").ElementType<any>>, "color" | "variant"> & {
|
|
7
|
+
variant?: import("@mui/material").TypographyVariant | keyof import("@mui/material").TypographyPropsVariantOverrides | undefined;
|
|
8
|
+
component?: import("react").ElementType<any> | undefined;
|
|
9
|
+
color?: "primary" | "secondary" | "error" | "warning" | "info" | "success" | "text" | "textSecondary" | ((theme: import("@mui/material").Theme) => string) | undefined;
|
|
10
|
+
} & {
|
|
7
11
|
theme?: import("@emotion/react").Theme | undefined;
|
|
8
12
|
}, {}, {}>;
|
|
@@ -3,6 +3,10 @@ export declare const DatePickerHeaderWrapper: import("@emotion/styled").StyledCo
|
|
|
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 DatePickerHeaderTitle: import("@emotion/styled").StyledComponent<
|
|
6
|
+
export declare const DatePickerHeaderTitle: import("@emotion/styled").StyledComponent<Omit<import("@mui/material/OverridableComponent").OverrideProps<import("@mui/material").TypographyTypeMap<{}, "span">, import("react").ElementType<any>>, "color" | "variant"> & {
|
|
7
|
+
variant?: import("@mui/material").TypographyVariant | keyof import("@mui/material").TypographyPropsVariantOverrides | undefined;
|
|
8
|
+
component?: import("react").ElementType<any> | undefined;
|
|
9
|
+
color?: "primary" | "secondary" | "error" | "warning" | "info" | "success" | "text" | "textSecondary" | ((theme: import("@mui/material").Theme) => string) | undefined;
|
|
10
|
+
} & {
|
|
7
11
|
theme?: import("@emotion/react").Theme | undefined;
|
|
8
12
|
}, {}, {}>;
|
|
@@ -29,7 +29,11 @@ export declare const StyledMenuItem: import("@emotion/styled").StyledComponent<{
|
|
|
29
29
|
}, "disabled" | "action" | "divider" | "onFocusVisible" | "tabIndex" | "children" | "autoFocus" | "selected" | keyof import("@mui/material/OverridableComponent").CommonProps | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "sx" | "TouchRippleProps" | "touchRippleRef" | "dense" | "disableGutters"> & {
|
|
30
30
|
theme?: import("@emotion/react").Theme | undefined;
|
|
31
31
|
}, {}, {}>;
|
|
32
|
-
export declare const StyledLabel: import("@emotion/styled").StyledComponent<
|
|
32
|
+
export declare const StyledLabel: import("@emotion/styled").StyledComponent<Omit<import("@mui/material/OverridableComponent").OverrideProps<import("@mui/material").TypographyTypeMap<{}, "span">, import("react").ElementType<any>>, "color" | "variant"> & {
|
|
33
|
+
variant?: import("@mui/material").TypographyVariant | keyof import("@mui/material").TypographyPropsVariantOverrides | undefined;
|
|
34
|
+
component?: import("react").ElementType<any> | undefined;
|
|
35
|
+
color?: "primary" | "secondary" | "error" | "warning" | "info" | "success" | "text" | "textSecondary" | ((theme: import("@mui/material").Theme) => string) | undefined;
|
|
36
|
+
} & {
|
|
33
37
|
theme?: import("@emotion/react").Theme | undefined;
|
|
34
38
|
}, {}, {}>;
|
|
35
39
|
export declare const StyledMenuWrapper: import("@emotion/styled").StyledComponent<{
|
package/MenuGroup/styled.d.ts
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
export declare const StyledLabel: import("@emotion/styled").StyledComponent<
|
|
2
|
+
export declare const StyledLabel: import("@emotion/styled").StyledComponent<Omit<import("@mui/material/OverridableComponent").OverrideProps<import("@mui/material").TypographyTypeMap<{}, "span">, import("react").ElementType<any>>, "color" | "variant"> & {
|
|
3
|
+
variant?: import("@mui/material").TypographyVariant | keyof import("@mui/material").TypographyPropsVariantOverrides | undefined;
|
|
4
|
+
component?: import("react").ElementType<any> | undefined;
|
|
5
|
+
color?: "primary" | "secondary" | "error" | "warning" | "info" | "success" | "text" | "textSecondary" | ((theme: import("@mui/material").Theme) => string) | undefined;
|
|
6
|
+
} & {
|
|
3
7
|
theme?: import("@emotion/react").Theme | undefined;
|
|
4
8
|
}, {}, {}>;
|
|
5
9
|
export declare const StyledContentWrapper: import("@emotion/styled").StyledComponent<{
|
|
@@ -59,7 +59,11 @@ export declare const NotificationCloseIcon: import("@emotion/styled").StyledComp
|
|
|
59
59
|
export declare const NotificationCloseButton: import("@emotion/styled").StyledComponent<Pick<import("../..").BaseButtonProps, "color" | "translate" | keyof import("@mui/base").ButtonUnstyledOwnProps | "form" | "slot" | "style" | "title" | "key" | "css" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "name" | "value" | "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" | "variant" | "size" | "component" | "selected"> & import("react").RefAttributes<HTMLButtonElement> & {
|
|
60
60
|
theme?: import("@emotion/react").Theme | undefined;
|
|
61
61
|
} & NotificationCloseButtonProps, {}, {}>;
|
|
62
|
-
export declare const NotificationTitle: import("@emotion/styled").StyledComponent<
|
|
62
|
+
export declare const NotificationTitle: import("@emotion/styled").StyledComponent<Omit<import("@mui/material/OverridableComponent").OverrideProps<import("@mui/material").TypographyTypeMap<{}, "span">, import("react").ElementType<any>>, "color" | "variant"> & {
|
|
63
|
+
variant?: import("@mui/material").TypographyVariant | keyof import("@mui/material").TypographyPropsVariantOverrides | undefined;
|
|
64
|
+
component?: import("react").ElementType<any> | undefined;
|
|
65
|
+
color?: "primary" | "secondary" | "error" | "warning" | "info" | "success" | "text" | "textSecondary" | ((theme: import("@mui/material").Theme) => string) | undefined;
|
|
66
|
+
} & {
|
|
63
67
|
theme?: import("@emotion/react").Theme | undefined;
|
|
64
68
|
}, {}, {}>;
|
|
65
69
|
export {};
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { OverflowedProps } from './OverflowTypography';
|
|
3
|
-
export declare const OverflowTypographyWrapper: import("@emotion/styled").StyledComponent<
|
|
3
|
+
export declare const OverflowTypographyWrapper: import("@emotion/styled").StyledComponent<Omit<import("@mui/material/OverridableComponent").OverrideProps<import("@mui/material").TypographyTypeMap<{}, "span">, import("react").ElementType<any>>, "color" | "variant"> & {
|
|
4
|
+
variant?: import("@mui/material").TypographyVariant | keyof import("@mui/material").TypographyPropsVariantOverrides | undefined;
|
|
5
|
+
component?: import("react").ElementType<any> | undefined;
|
|
6
|
+
color?: "primary" | "secondary" | "error" | "warning" | "info" | "success" | "text" | "textSecondary" | ((theme: import("@mui/material").Theme) => string) | undefined;
|
|
7
|
+
} & {
|
|
4
8
|
theme?: import("@emotion/react").Theme | undefined;
|
|
5
9
|
} & Required<OverflowedProps>, {}, {}>;
|
package/Placeholder/styles.d.ts
CHANGED
|
@@ -11,10 +11,18 @@ export declare const PlaceholderImage: import("@emotion/styled").StyledComponent
|
|
|
11
11
|
theme?: import("@emotion/react").Theme | undefined;
|
|
12
12
|
as?: import("react").ElementType<any> | undefined;
|
|
13
13
|
}, import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, {}>;
|
|
14
|
-
export declare const PlaceholderTitle: import("@emotion/styled").StyledComponent<
|
|
14
|
+
export declare const PlaceholderTitle: import("@emotion/styled").StyledComponent<Omit<import("@mui/material/OverridableComponent").OverrideProps<import("@mui/material").TypographyTypeMap<{}, "span">, import("react").ElementType<any>>, "color" | "variant"> & {
|
|
15
|
+
variant?: import("@mui/material").TypographyVariant | keyof import("@mui/material").TypographyPropsVariantOverrides | undefined;
|
|
16
|
+
component?: import("react").ElementType<any> | undefined;
|
|
17
|
+
color?: "primary" | "secondary" | "error" | "warning" | "info" | "success" | "text" | "textSecondary" | ((theme: import("@mui/material").Theme) => string) | undefined;
|
|
18
|
+
} & {
|
|
15
19
|
theme?: import("@emotion/react").Theme | undefined;
|
|
16
20
|
}, {}, {}>;
|
|
17
|
-
export declare const PlaceholderDescription: import("@emotion/styled").StyledComponent<
|
|
21
|
+
export declare const PlaceholderDescription: import("@emotion/styled").StyledComponent<Omit<import("@mui/material/OverridableComponent").OverrideProps<import("@mui/material").TypographyTypeMap<{}, "span">, import("react").ElementType<any>>, "color" | "variant"> & {
|
|
22
|
+
variant?: import("@mui/material").TypographyVariant | keyof import("@mui/material").TypographyPropsVariantOverrides | undefined;
|
|
23
|
+
component?: import("react").ElementType<any> | undefined;
|
|
24
|
+
color?: "primary" | "secondary" | "error" | "warning" | "info" | "success" | "text" | "textSecondary" | ((theme: import("@mui/material").Theme) => string) | undefined;
|
|
25
|
+
} & {
|
|
18
26
|
theme?: import("@emotion/react").Theme | undefined;
|
|
19
27
|
}, {}, {}>;
|
|
20
28
|
export declare const PlaceholderActions: import("@emotion/styled").StyledComponent<{
|
|
@@ -1,4 +1,27 @@
|
|
|
1
|
-
|
|
2
|
-
import {
|
|
3
|
-
|
|
1
|
+
import { TypographyPropsVariantOverrides, TypographyTypeMap } from '@mui/material';
|
|
2
|
+
import { OverrideProps } from '@mui/material/OverridableComponent';
|
|
3
|
+
import { Variant } from '@mui/material/styles/createTypography';
|
|
4
|
+
import React from 'react';
|
|
5
|
+
import { Theme } from '../theme';
|
|
6
|
+
import { TypographyColors } from './enums';
|
|
7
|
+
export declare type TypographyColor = keyof typeof TypographyColors;
|
|
8
|
+
export declare type TypographyProps = Omit<OverrideProps<TypographyTypeMap, React.ElementType>, 'variant' | 'color'> & {
|
|
9
|
+
variant?: Variant | keyof TypographyPropsVariantOverrides;
|
|
10
|
+
component?: React.ElementType;
|
|
11
|
+
color?: TypographyColor | ((theme: Theme) => string);
|
|
12
|
+
};
|
|
13
|
+
declare module '@mui/material/Typography' {
|
|
14
|
+
interface TypographyPropsVariantOverrides {
|
|
15
|
+
h7: true;
|
|
16
|
+
h8: true;
|
|
17
|
+
h9: true;
|
|
18
|
+
ui: true;
|
|
19
|
+
link: true;
|
|
20
|
+
pointer: true;
|
|
21
|
+
small: true;
|
|
22
|
+
code: true;
|
|
23
|
+
div: true;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
export declare const Typography: React.FC<TypographyProps>;
|
|
4
27
|
export default Typography;
|
package/Typography/index.d.ts
CHANGED
package/Typography/index.js
CHANGED
|
@@ -6,6 +6,10 @@ export declare const StyledTableCell: import("@emotion/styled").StyledComponent<
|
|
|
6
6
|
width?: CSSProperties['width'];
|
|
7
7
|
sortable?: boolean | undefined;
|
|
8
8
|
}, {}, {}>;
|
|
9
|
-
export declare const TableCellTitle: import("@emotion/styled").StyledComponent<
|
|
9
|
+
export declare const TableCellTitle: import("@emotion/styled").StyledComponent<Omit<import("@mui/material/OverridableComponent").OverrideProps<import("@mui/material").TypographyTypeMap<{}, "span">, import("react").ElementType<any>>, "color" | "variant"> & {
|
|
10
|
+
variant?: import("@mui/material").TypographyVariant | keyof import("@mui/material").TypographyPropsVariantOverrides | undefined;
|
|
11
|
+
component?: import("react").ElementType<any> | undefined;
|
|
12
|
+
color?: "primary" | "secondary" | "error" | "warning" | "info" | "success" | "text" | "textSecondary" | ((theme: import("@mui/material").Theme) => string) | undefined;
|
|
13
|
+
} & {
|
|
10
14
|
theme?: import("@emotion/react").Theme | undefined;
|
|
11
15
|
}, {}, {}>;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import { TypographyProps } from '../../Typography';
|
|
3
2
|
export declare const DataGridNoDataWrapper: import("@emotion/styled").StyledComponent<{
|
|
4
3
|
theme?: import("@emotion/react").Theme | undefined;
|
|
5
4
|
as?: import("react").ElementType<any> | undefined;
|
|
@@ -14,10 +13,10 @@ export declare const DataGridNoDataIcon: import("@emotion/styled").StyledCompone
|
|
|
14
13
|
} & {
|
|
15
14
|
noDataIconWidth: number;
|
|
16
15
|
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
17
|
-
export declare const DataGridNoDataFigcaption: import("@emotion/styled").StyledComponent<
|
|
18
|
-
theme?: import("@emotion/react").Theme | undefined;
|
|
19
|
-
} & Omit<import("@mui/material/OverridableComponent").OverrideProps<import("@mui/material").TypographyTypeMap<{}, "span">, import("react").ElementType<any>>, "color" | "variant"> & {
|
|
16
|
+
export declare const DataGridNoDataFigcaption: import("@emotion/styled").StyledComponent<Omit<import("@mui/material/OverridableComponent").OverrideProps<import("@mui/material").TypographyTypeMap<{}, "span">, import("react").ElementType<any>>, "color" | "variant"> & {
|
|
20
17
|
variant?: import("@mui/material").TypographyVariant | keyof import("@mui/material").TypographyPropsVariantOverrides | undefined;
|
|
21
18
|
component?: import("react").ElementType<any> | undefined;
|
|
22
19
|
color?: "primary" | "secondary" | "error" | "warning" | "info" | "success" | "text" | "textSecondary" | ((theme: import("@mui/material").Theme) => string) | undefined;
|
|
20
|
+
} & {
|
|
21
|
+
theme?: import("@emotion/react").Theme | undefined;
|
|
23
22
|
}, {}, {}>;
|
|
@@ -3,6 +3,10 @@ export declare const PaginationWrapper: import("@emotion/styled").StyledComponen
|
|
|
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 Range: import("@emotion/styled").StyledComponent<
|
|
6
|
+
export declare const Range: import("@emotion/styled").StyledComponent<Omit<import("@mui/material/OverridableComponent").OverrideProps<import("@mui/material").TypographyTypeMap<{}, "span">, import("react").ElementType<any>>, "color" | "variant"> & {
|
|
7
|
+
variant?: import("@mui/material").TypographyVariant | keyof import("@mui/material").TypographyPropsVariantOverrides | undefined;
|
|
8
|
+
component?: import("react").ElementType<any> | undefined;
|
|
9
|
+
color?: "primary" | "secondary" | "error" | "warning" | "info" | "success" | "text" | "textSecondary" | ((theme: import("@mui/material").Theme) => string) | undefined;
|
|
10
|
+
} & {
|
|
7
11
|
theme?: import("@emotion/react").Theme | undefined;
|
|
8
12
|
}, {}, {}>;
|
|
@@ -3,6 +3,10 @@ export declare const DatePickerHeaderWrapper: import("@emotion/styled").StyledCo
|
|
|
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 DatePickerHeaderTitle: import("@emotion/styled").StyledComponent<
|
|
6
|
+
export declare const DatePickerHeaderTitle: import("@emotion/styled").StyledComponent<Omit<import("@mui/material/OverridableComponent").OverrideProps<import("@mui/material").TypographyTypeMap<{}, "span">, import("react").ElementType<any>>, "color" | "variant"> & {
|
|
7
|
+
variant?: import("@mui/material").TypographyVariant | keyof import("@mui/material").TypographyPropsVariantOverrides | undefined;
|
|
8
|
+
component?: import("react").ElementType<any> | undefined;
|
|
9
|
+
color?: "primary" | "secondary" | "error" | "warning" | "info" | "success" | "text" | "textSecondary" | ((theme: import("@mui/material").Theme) => string) | undefined;
|
|
10
|
+
} & {
|
|
7
11
|
theme?: import("@emotion/react").Theme | undefined;
|
|
8
12
|
}, {}, {}>;
|
|
@@ -29,7 +29,11 @@ export declare const StyledMenuItem: import("@emotion/styled").StyledComponent<{
|
|
|
29
29
|
}, "disabled" | "action" | "divider" | "onFocusVisible" | "tabIndex" | "children" | "autoFocus" | "selected" | keyof import("@mui/material/OverridableComponent").CommonProps | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "sx" | "TouchRippleProps" | "touchRippleRef" | "dense" | "disableGutters"> & {
|
|
30
30
|
theme?: import("@emotion/react").Theme | undefined;
|
|
31
31
|
}, {}, {}>;
|
|
32
|
-
export declare const StyledLabel: import("@emotion/styled").StyledComponent<
|
|
32
|
+
export declare const StyledLabel: import("@emotion/styled").StyledComponent<Omit<import("@mui/material/OverridableComponent").OverrideProps<import("@mui/material").TypographyTypeMap<{}, "span">, import("react").ElementType<any>>, "color" | "variant"> & {
|
|
33
|
+
variant?: import("@mui/material").TypographyVariant | keyof import("@mui/material").TypographyPropsVariantOverrides | undefined;
|
|
34
|
+
component?: import("react").ElementType<any> | undefined;
|
|
35
|
+
color?: "primary" | "secondary" | "error" | "warning" | "info" | "success" | "text" | "textSecondary" | ((theme: import("@mui/material").Theme) => string) | undefined;
|
|
36
|
+
} & {
|
|
33
37
|
theme?: import("@emotion/react").Theme | undefined;
|
|
34
38
|
}, {}, {}>;
|
|
35
39
|
export declare const StyledMenuWrapper: import("@emotion/styled").StyledComponent<{
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
export declare const StyledLabel: import("@emotion/styled").StyledComponent<
|
|
2
|
+
export declare const StyledLabel: import("@emotion/styled").StyledComponent<Omit<import("@mui/material/OverridableComponent").OverrideProps<import("@mui/material").TypographyTypeMap<{}, "span">, import("react").ElementType<any>>, "color" | "variant"> & {
|
|
3
|
+
variant?: import("@mui/material").TypographyVariant | keyof import("@mui/material").TypographyPropsVariantOverrides | undefined;
|
|
4
|
+
component?: import("react").ElementType<any> | undefined;
|
|
5
|
+
color?: "primary" | "secondary" | "error" | "warning" | "info" | "success" | "text" | "textSecondary" | ((theme: import("@mui/material").Theme) => string) | undefined;
|
|
6
|
+
} & {
|
|
3
7
|
theme?: import("@emotion/react").Theme | undefined;
|
|
4
8
|
}, {}, {}>;
|
|
5
9
|
export declare const StyledContentWrapper: import("@emotion/styled").StyledComponent<{
|
|
@@ -59,7 +59,11 @@ export declare const NotificationCloseIcon: import("@emotion/styled").StyledComp
|
|
|
59
59
|
export declare const NotificationCloseButton: import("@emotion/styled").StyledComponent<Pick<import("../..").BaseButtonProps, "color" | "translate" | keyof import("@mui/base").ButtonUnstyledOwnProps | "form" | "slot" | "style" | "title" | "key" | "css" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "name" | "value" | "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" | "variant" | "size" | "component" | "selected"> & import("react").RefAttributes<HTMLButtonElement> & {
|
|
60
60
|
theme?: import("@emotion/react").Theme | undefined;
|
|
61
61
|
} & NotificationCloseButtonProps, {}, {}>;
|
|
62
|
-
export declare const NotificationTitle: import("@emotion/styled").StyledComponent<
|
|
62
|
+
export declare const NotificationTitle: import("@emotion/styled").StyledComponent<Omit<import("@mui/material/OverridableComponent").OverrideProps<import("@mui/material").TypographyTypeMap<{}, "span">, import("react").ElementType<any>>, "color" | "variant"> & {
|
|
63
|
+
variant?: import("@mui/material").TypographyVariant | keyof import("@mui/material").TypographyPropsVariantOverrides | undefined;
|
|
64
|
+
component?: import("react").ElementType<any> | undefined;
|
|
65
|
+
color?: "primary" | "secondary" | "error" | "warning" | "info" | "success" | "text" | "textSecondary" | ((theme: import("@mui/material").Theme) => string) | undefined;
|
|
66
|
+
} & {
|
|
63
67
|
theme?: import("@emotion/react").Theme | undefined;
|
|
64
68
|
}, {}, {}>;
|
|
65
69
|
export {};
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { OverflowedProps } from './OverflowTypography';
|
|
3
|
-
export declare const OverflowTypographyWrapper: import("@emotion/styled").StyledComponent<
|
|
3
|
+
export declare const OverflowTypographyWrapper: import("@emotion/styled").StyledComponent<Omit<import("@mui/material/OverridableComponent").OverrideProps<import("@mui/material").TypographyTypeMap<{}, "span">, import("react").ElementType<any>>, "color" | "variant"> & {
|
|
4
|
+
variant?: import("@mui/material").TypographyVariant | keyof import("@mui/material").TypographyPropsVariantOverrides | undefined;
|
|
5
|
+
component?: import("react").ElementType<any> | undefined;
|
|
6
|
+
color?: "primary" | "secondary" | "error" | "warning" | "info" | "success" | "text" | "textSecondary" | ((theme: import("@mui/material").Theme) => string) | undefined;
|
|
7
|
+
} & {
|
|
4
8
|
theme?: import("@emotion/react").Theme | undefined;
|
|
5
9
|
} & Required<OverflowedProps>, {}, {}>;
|
|
@@ -11,10 +11,18 @@ export declare const PlaceholderImage: import("@emotion/styled").StyledComponent
|
|
|
11
11
|
theme?: import("@emotion/react").Theme | undefined;
|
|
12
12
|
as?: import("react").ElementType<any> | undefined;
|
|
13
13
|
}, import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, {}>;
|
|
14
|
-
export declare const PlaceholderTitle: import("@emotion/styled").StyledComponent<
|
|
14
|
+
export declare const PlaceholderTitle: import("@emotion/styled").StyledComponent<Omit<import("@mui/material/OverridableComponent").OverrideProps<import("@mui/material").TypographyTypeMap<{}, "span">, import("react").ElementType<any>>, "color" | "variant"> & {
|
|
15
|
+
variant?: import("@mui/material").TypographyVariant | keyof import("@mui/material").TypographyPropsVariantOverrides | undefined;
|
|
16
|
+
component?: import("react").ElementType<any> | undefined;
|
|
17
|
+
color?: "primary" | "secondary" | "error" | "warning" | "info" | "success" | "text" | "textSecondary" | ((theme: import("@mui/material").Theme) => string) | undefined;
|
|
18
|
+
} & {
|
|
15
19
|
theme?: import("@emotion/react").Theme | undefined;
|
|
16
20
|
}, {}, {}>;
|
|
17
|
-
export declare const PlaceholderDescription: import("@emotion/styled").StyledComponent<
|
|
21
|
+
export declare const PlaceholderDescription: import("@emotion/styled").StyledComponent<Omit<import("@mui/material/OverridableComponent").OverrideProps<import("@mui/material").TypographyTypeMap<{}, "span">, import("react").ElementType<any>>, "color" | "variant"> & {
|
|
22
|
+
variant?: import("@mui/material").TypographyVariant | keyof import("@mui/material").TypographyPropsVariantOverrides | undefined;
|
|
23
|
+
component?: import("react").ElementType<any> | undefined;
|
|
24
|
+
color?: "primary" | "secondary" | "error" | "warning" | "info" | "success" | "text" | "textSecondary" | ((theme: import("@mui/material").Theme) => string) | undefined;
|
|
25
|
+
} & {
|
|
18
26
|
theme?: import("@emotion/react").Theme | undefined;
|
|
19
27
|
}, {}, {}>;
|
|
20
28
|
export declare const PlaceholderActions: import("@emotion/styled").StyledComponent<{
|
|
@@ -1,4 +1,27 @@
|
|
|
1
|
-
|
|
2
|
-
import {
|
|
3
|
-
|
|
1
|
+
import { TypographyPropsVariantOverrides, TypographyTypeMap } from '@mui/material';
|
|
2
|
+
import { OverrideProps } from '@mui/material/OverridableComponent';
|
|
3
|
+
import { Variant } from '@mui/material/styles/createTypography';
|
|
4
|
+
import React from 'react';
|
|
5
|
+
import { Theme } from '../theme';
|
|
6
|
+
import { TypographyColors } from './enums';
|
|
7
|
+
export declare type TypographyColor = keyof typeof TypographyColors;
|
|
8
|
+
export declare type TypographyProps = Omit<OverrideProps<TypographyTypeMap, React.ElementType>, 'variant' | 'color'> & {
|
|
9
|
+
variant?: Variant | keyof TypographyPropsVariantOverrides;
|
|
10
|
+
component?: React.ElementType;
|
|
11
|
+
color?: TypographyColor | ((theme: Theme) => string);
|
|
12
|
+
};
|
|
13
|
+
declare module '@mui/material/Typography' {
|
|
14
|
+
interface TypographyPropsVariantOverrides {
|
|
15
|
+
h7: true;
|
|
16
|
+
h8: true;
|
|
17
|
+
h9: true;
|
|
18
|
+
ui: true;
|
|
19
|
+
link: true;
|
|
20
|
+
pointer: true;
|
|
21
|
+
small: true;
|
|
22
|
+
code: true;
|
|
23
|
+
div: true;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
export declare const Typography: React.FC<TypographyProps>;
|
|
4
27
|
export default Typography;
|
|
@@ -21,7 +21,7 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
|
21
21
|
return t;
|
|
22
22
|
};
|
|
23
23
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
24
|
-
import { Typography as MuiTypography } from '@mui/material';
|
|
24
|
+
import { Typography as MuiTypography, } from '@mui/material';
|
|
25
25
|
import { forwardRef, useMemo } from 'react';
|
|
26
26
|
import { TypographyColors } from './enums';
|
|
27
27
|
export var Typography = forwardRef(function (_a, ref) {
|
package/esm/Typography/index.js
CHANGED
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
}
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@astral/icons": "^1.14.
|
|
10
|
+
"@astral/icons": "^1.14.1",
|
|
11
11
|
"@emotion/cache": "11.7.1",
|
|
12
12
|
"@emotion/react": "11.9.0",
|
|
13
13
|
"@emotion/server": "11.4.0",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"require": "./server/index.js"
|
|
37
37
|
}
|
|
38
38
|
},
|
|
39
|
-
"version": "1.14.
|
|
39
|
+
"version": "1.14.1",
|
|
40
40
|
"author": "Astral.Soft",
|
|
41
41
|
"license": "MIT",
|
|
42
42
|
"repository": {
|
package/Typography/types.d.ts
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { OverrideProps } from '@mui/material/OverridableComponent';
|
|
2
|
-
import { TypographyPropsVariantOverrides, TypographyTypeMap } from '@mui/material/Typography';
|
|
3
|
-
import { Variant } from '@mui/material/styles/createTypography';
|
|
4
|
-
import * as React from 'react';
|
|
5
|
-
import { Theme } from '../theme';
|
|
6
|
-
import { TypographyColors } from './enums';
|
|
7
|
-
declare module '@mui/material/Typography' {
|
|
8
|
-
interface TypographyPropsVariantOverrides {
|
|
9
|
-
h7: true;
|
|
10
|
-
h8: true;
|
|
11
|
-
h9: true;
|
|
12
|
-
ui: true;
|
|
13
|
-
link: true;
|
|
14
|
-
pointer: true;
|
|
15
|
-
small: true;
|
|
16
|
-
code: true;
|
|
17
|
-
div: true;
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
|
-
export declare type TypographyColor = keyof typeof TypographyColors;
|
|
21
|
-
export declare type TypographyProps = Omit<OverrideProps<TypographyTypeMap, React.ElementType>, 'variant' | 'color'> & {
|
|
22
|
-
variant?: Variant | keyof TypographyPropsVariantOverrides;
|
|
23
|
-
component?: React.ElementType;
|
|
24
|
-
color?: TypographyColor | ((theme: Theme) => string);
|
|
25
|
-
};
|
package/Typography/types.js
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { OverrideProps } from '@mui/material/OverridableComponent';
|
|
2
|
-
import { TypographyPropsVariantOverrides, TypographyTypeMap } from '@mui/material/Typography';
|
|
3
|
-
import { Variant } from '@mui/material/styles/createTypography';
|
|
4
|
-
import * as React from 'react';
|
|
5
|
-
import { Theme } from '../theme';
|
|
6
|
-
import { TypographyColors } from './enums';
|
|
7
|
-
declare module '@mui/material/Typography' {
|
|
8
|
-
interface TypographyPropsVariantOverrides {
|
|
9
|
-
h7: true;
|
|
10
|
-
h8: true;
|
|
11
|
-
h9: true;
|
|
12
|
-
ui: true;
|
|
13
|
-
link: true;
|
|
14
|
-
pointer: true;
|
|
15
|
-
small: true;
|
|
16
|
-
code: true;
|
|
17
|
-
div: true;
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
|
-
export declare type TypographyColor = keyof typeof TypographyColors;
|
|
21
|
-
export declare type TypographyProps = Omit<OverrideProps<TypographyTypeMap, React.ElementType>, 'variant' | 'color'> & {
|
|
22
|
-
variant?: Variant | keyof TypographyPropsVariantOverrides;
|
|
23
|
-
component?: React.ElementType;
|
|
24
|
-
color?: TypographyColor | ((theme: Theme) => string);
|
|
25
|
-
};
|
package/esm/Typography/types.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|