@lobehub/ui 1.133.0 → 1.133.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/es/mdx/Cards.d.ts +5 -2
- package/es/mdx/Cards.js +4 -3
- package/es/mdx/index.d.ts +1 -1
- package/es/mdx/index.js +1 -1
- package/es/mdx/mdxComponents.js +1 -8
- package/package.json +1 -1
package/es/mdx/Cards.d.ts
CHANGED
|
@@ -10,6 +10,9 @@ export interface CardProps extends Omit<FlexboxProps, 'children'> {
|
|
|
10
10
|
title: string;
|
|
11
11
|
}
|
|
12
12
|
declare const Card: FC<CardProps>;
|
|
13
|
-
declare const
|
|
13
|
+
declare const _Cards: FC<PropsWithChildren>;
|
|
14
|
+
export type CardsProps = typeof _Cards & {
|
|
15
|
+
Card: typeof Card;
|
|
16
|
+
};
|
|
17
|
+
declare const Cards: CardsProps;
|
|
14
18
|
export default Cards;
|
|
15
|
-
export { Card };
|
package/es/mdx/Cards.js
CHANGED
|
@@ -71,7 +71,7 @@ var Card = function Card(_ref2) {
|
|
|
71
71
|
}))
|
|
72
72
|
});
|
|
73
73
|
};
|
|
74
|
-
var
|
|
74
|
+
var _Cards = function _Cards(_ref3) {
|
|
75
75
|
var children = _ref3.children;
|
|
76
76
|
var _useStyles2 = useStyles(),
|
|
77
77
|
styles = _useStyles2.styles;
|
|
@@ -80,5 +80,6 @@ var Cards = function Cards(_ref3) {
|
|
|
80
80
|
children: children
|
|
81
81
|
});
|
|
82
82
|
};
|
|
83
|
-
|
|
84
|
-
|
|
83
|
+
var Cards = _Cards;
|
|
84
|
+
Cards.Card = Card;
|
|
85
|
+
export default Cards;
|
package/es/mdx/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { default as Callout, type CalloutProps } from './Callout';
|
|
2
|
-
export {
|
|
2
|
+
export { default as Cards, type CardsProps } from './Cards';
|
|
3
3
|
export { default as FileTree, type FileTreeProps } from './FileTree';
|
|
4
4
|
export { default as Image, type ImageProps } from './Image';
|
|
5
5
|
export { default as mdxComponents } from './mdxComponents';
|
package/es/mdx/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { default as Callout } from "./Callout";
|
|
2
|
-
export {
|
|
2
|
+
export { default as Cards } from "./Cards";
|
|
3
3
|
export { default as FileTree } from "./FileTree";
|
|
4
4
|
export { default as Image } from "./Image";
|
|
5
5
|
export { default as mdxComponents } from "./mdxComponents";
|
package/es/mdx/mdxComponents.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import Callout from "./Callout";
|
|
2
|
-
import Cards
|
|
2
|
+
import Cards from "./Cards";
|
|
3
3
|
import FileTree from "./FileTree";
|
|
4
4
|
import Image from "./Image";
|
|
5
5
|
import Steps from "./Steps";
|
|
@@ -7,16 +7,9 @@ import Tabs from "./Tabs";
|
|
|
7
7
|
import Video from "./Video";
|
|
8
8
|
var mdxComponents = {
|
|
9
9
|
Callout: Callout,
|
|
10
|
-
Card: Card,
|
|
11
10
|
Cards: Cards,
|
|
12
11
|
FileTree: FileTree,
|
|
13
12
|
Image: Image,
|
|
14
|
-
LobeCallout: Callout,
|
|
15
|
-
LobeCard: Card,
|
|
16
|
-
LobeCards: Cards,
|
|
17
|
-
LobeFileTree: FileTree,
|
|
18
|
-
LobeSteps: Steps,
|
|
19
|
-
LobeTabs: Tabs,
|
|
20
13
|
Steps: Steps,
|
|
21
14
|
Tabs: Tabs,
|
|
22
15
|
Video: Video
|