gemini-uis 0.2.0 → 0.2.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/dist/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -50,7 +50,7 @@ export declare const Card: ForwardRefExoticComponent<CardProps & RefAttributes<H
|
|
|
50
50
|
/**
|
|
51
51
|
* 卡片边框粗细类型
|
|
52
52
|
*/
|
|
53
|
-
declare type CardBorder = 'none' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
|
|
53
|
+
export declare type CardBorder = 'none' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
|
|
54
54
|
|
|
55
55
|
/**
|
|
56
56
|
* Card组件的基础属性接口
|
|
@@ -78,7 +78,7 @@ export declare type CardRef = HTMLDivElement;
|
|
|
78
78
|
/**
|
|
79
79
|
* 卡片阴影级别类型
|
|
80
80
|
*/
|
|
81
|
-
declare type CardShadow = 'none' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
|
|
81
|
+
export declare type CardShadow = 'none' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
|
|
82
82
|
|
|
83
83
|
/**
|
|
84
84
|
* 合并 CSS 类名
|