@team_yumi/ramen 1.0.2-next.20240311-37f5598-f16ce3cb7e633fa65ca6f0f1d14e8f76 → 1.0.2-next.20240312-9cf6926-c0f19f88eb522a4906393b6eb2dba313
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/index.css +3 -1
- package/index.js +1 -1
- package/package.json +1 -1
- package/src/components/core/x-image-preview/root.d.ts +2 -0
package/package.json
CHANGED
|
@@ -5,6 +5,8 @@ export interface IProps {
|
|
|
5
5
|
border?: (typeof Collections.IBorder)[number];
|
|
6
6
|
rounded?: (typeof Collections.IRounded)[number];
|
|
7
7
|
showExpandIcon?: boolean;
|
|
8
|
+
default?: string;
|
|
9
|
+
disabled?: boolean;
|
|
8
10
|
}
|
|
9
11
|
declare const XImagePreview: React.FC<IProps>;
|
|
10
12
|
export default XImagePreview;
|