@lobehub/ui 1.133.4 → 1.133.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/index.d.ts +1 -0
- package/es/index.js +1 -0
- package/es/mdx/Callout.js +1 -1
- package/es/mdx/Cards.d.ts +1 -1
- package/es/mdx/FileTree.d.ts +1 -1
- package/es/mdx/mdxComponents.d.ts +12 -2
- package/package.json +1 -1
package/es/index.d.ts
CHANGED
|
@@ -57,6 +57,7 @@ export { default as LogoThree, type LogoThreeProps } from './LogoThree';
|
|
|
57
57
|
export { default as LogoSpline, type LogoSplineProps } from './LogoThree/LogoSpline';
|
|
58
58
|
export { default as Markdown, type MarkdownProps } from './Markdown';
|
|
59
59
|
export { Typography, type TypographyProps } from './Markdown/Typography';
|
|
60
|
+
export { mdxComponents, Pre, PreSingleLine } from './mdx';
|
|
60
61
|
export { default as MessageInput, type MessageInputProps } from './MessageInput';
|
|
61
62
|
export { default as MessageModal, type MessageModalProps } from './MessageModal';
|
|
62
63
|
export { default as MobileNavBar, type MobileNavBarProps } from './MobileNavBar';
|
package/es/index.js
CHANGED
|
@@ -56,6 +56,7 @@ export { default as LogoThree } from "./LogoThree";
|
|
|
56
56
|
export { default as LogoSpline } from "./LogoThree/LogoSpline";
|
|
57
57
|
export { default as Markdown } from "./Markdown";
|
|
58
58
|
export { Typography } from "./Markdown/Typography";
|
|
59
|
+
export { mdxComponents, Pre, PreSingleLine } from "./mdx";
|
|
59
60
|
export { default as MessageInput } from "./MessageInput";
|
|
60
61
|
export { default as MessageModal } from "./MessageModal";
|
|
61
62
|
export { default as MobileNavBar } from "./MobileNavBar";
|
package/es/mdx/Callout.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import _taggedTemplateLiteral from "@babel/runtime/helpers/esm/taggedTemplateLiteral";
|
|
2
2
|
var _templateObject, _templateObject2, _templateObject3;
|
|
3
|
-
import { Icon } from "./..";
|
|
4
3
|
import { createStyles } from 'antd-style';
|
|
5
4
|
import { isString } from 'lodash-es';
|
|
6
5
|
import { Info, Lightbulb, MessageSquareWarning, OctagonAlert, TriangleAlert } from 'lucide-react';
|
|
7
6
|
import { rgba } from 'polished';
|
|
8
7
|
import { Flexbox } from 'react-layout-kit';
|
|
8
|
+
import Icon from "../Icon";
|
|
9
9
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
10
10
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
11
11
|
var useStyles = createStyles(function (_ref) {
|
package/es/mdx/Cards.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { FC, PropsWithChildren } from 'react';
|
|
2
2
|
import { type FlexboxProps } from 'react-layout-kit';
|
|
3
|
-
import { type IconProps } from
|
|
3
|
+
import { type IconProps } from "../Icon";
|
|
4
4
|
export interface CardProps extends Omit<FlexboxProps, 'children'> {
|
|
5
5
|
desc?: string;
|
|
6
6
|
href?: string;
|
package/es/mdx/FileTree.d.ts
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
-
|
|
2
|
-
declare const mdxComponents:
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
declare const mdxComponents: {
|
|
3
|
+
Callout: import("react").FC<import("./Callout").CalloutProps>;
|
|
4
|
+
Cards: import("./Cards").CardsProps;
|
|
5
|
+
FileTree: import("./FileTree").FileTreeProps;
|
|
6
|
+
Image: import("react").FC<import("./Image").ImageProps>;
|
|
7
|
+
Steps: import("react").FC<{
|
|
8
|
+
children?: import("react").ReactNode;
|
|
9
|
+
}>;
|
|
10
|
+
Tabs: import("./Tabs").TabsProps;
|
|
11
|
+
Video: import("react").FC<import("./Video").VideoProps>;
|
|
12
|
+
};
|
|
3
13
|
export default mdxComponents;
|