@yamada-ui/card 0.3.15 → 0.3.16
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/card.d.mts +4 -4
- package/dist/card.d.ts +4 -4
- package/package.json +3 -3
package/dist/card.d.mts
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
import * as _yamada_ui_core from '@yamada-ui/core';
|
|
2
|
-
import { HTMLUIProps, ThemeProps,
|
|
2
|
+
import { HTMLUIProps, ThemeProps, CSSUIObject } from '@yamada-ui/core';
|
|
3
3
|
|
|
4
4
|
type CardOptions = {
|
|
5
5
|
/**
|
|
6
6
|
* The CSS `flex-direction` property.
|
|
7
7
|
*/
|
|
8
|
-
direction?:
|
|
8
|
+
direction?: CSSUIObject['flexDirection'];
|
|
9
9
|
/**
|
|
10
10
|
* The CSS `justify-content` property.
|
|
11
11
|
*/
|
|
12
|
-
justify?:
|
|
12
|
+
justify?: CSSUIObject['justifyContent'];
|
|
13
13
|
/**
|
|
14
14
|
* The CSS `align-items` property.
|
|
15
15
|
*/
|
|
16
|
-
align?:
|
|
16
|
+
align?: CSSUIObject['alignItems'];
|
|
17
17
|
};
|
|
18
18
|
type CardProps = HTMLUIProps<'article'> & ThemeProps<'Card'> & CardOptions;
|
|
19
19
|
declare const Card: _yamada_ui_core.Component<"article", CardProps>;
|
package/dist/card.d.ts
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
import * as _yamada_ui_core from '@yamada-ui/core';
|
|
2
|
-
import { HTMLUIProps, ThemeProps,
|
|
2
|
+
import { HTMLUIProps, ThemeProps, CSSUIObject } from '@yamada-ui/core';
|
|
3
3
|
|
|
4
4
|
type CardOptions = {
|
|
5
5
|
/**
|
|
6
6
|
* The CSS `flex-direction` property.
|
|
7
7
|
*/
|
|
8
|
-
direction?:
|
|
8
|
+
direction?: CSSUIObject['flexDirection'];
|
|
9
9
|
/**
|
|
10
10
|
* The CSS `justify-content` property.
|
|
11
11
|
*/
|
|
12
|
-
justify?:
|
|
12
|
+
justify?: CSSUIObject['justifyContent'];
|
|
13
13
|
/**
|
|
14
14
|
* The CSS `align-items` property.
|
|
15
15
|
*/
|
|
16
|
-
align?:
|
|
16
|
+
align?: CSSUIObject['alignItems'];
|
|
17
17
|
};
|
|
18
18
|
type CardProps = HTMLUIProps<'article'> & ThemeProps<'Card'> & CardOptions;
|
|
19
19
|
declare const Card: _yamada_ui_core.Component<"article", CardProps>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yamada-ui/card",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.16",
|
|
4
4
|
"description": "Yamada UI card component",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"yamada",
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
"url": "https://github.com/hirotomoyamada/yamada-ui/issues"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@yamada-ui/core": "0.12.
|
|
39
|
-
"@yamada-ui/utils": "0.3.
|
|
38
|
+
"@yamada-ui/core": "0.12.5",
|
|
39
|
+
"@yamada-ui/utils": "0.3.3"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"react": "^18.0.0",
|