@akinon/ui-card 0.0.3 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +3 -2
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { CardProps as AntCardProps } from 'antd';
|
|
2
|
+
|
|
2
3
|
import * as React from 'react';
|
|
3
4
|
export type CardProps = AntCardProps;
|
|
4
5
|
export declare const Card: ({ children, ...restCardProps }: CardProps) => React.JSX.Element;
|
|
5
|
-
export declare const CardMeta: React.FC<import(
|
|
6
|
+
export declare const CardMeta: React.FC<import('antd/es/card').CardMetaProps>;
|
|
6
7
|
export type SingleNavCard = {
|
|
7
8
|
title: string;
|
|
8
9
|
text: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@akinon/ui-card",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
],
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"antd": "5.11.0",
|
|
13
|
-
"@akinon/icons": "0.1.
|
|
13
|
+
"@akinon/icons": "0.1.1",
|
|
14
14
|
"@akinon/ui-theme": "0.0.2",
|
|
15
15
|
"@akinon/ui-typography": "0.0.2"
|
|
16
16
|
},
|