@team_yumi/ramen 1.2.3-next.20240704-72ccfdc-d57dfe816dd26d4d80f5987c25bca6f1 → 1.2.3-next.20240821-bae06f9-f4455711ced42dc9e2ecf932f1b872e2
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/package.json
CHANGED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Collections } from '../../../models';
|
|
3
|
+
export interface IProps {
|
|
4
|
+
title?: string;
|
|
5
|
+
description?: string;
|
|
6
|
+
size?: (typeof Collections.ICardProgressSize)[number];
|
|
7
|
+
borderType?: (typeof Collections.IBorderType)[number];
|
|
8
|
+
onClick?: () => void;
|
|
9
|
+
children?: React.ReactNode;
|
|
10
|
+
disabled?: boolean;
|
|
11
|
+
progress?: number;
|
|
12
|
+
items?: {
|
|
13
|
+
description: string;
|
|
14
|
+
progress: number;
|
|
15
|
+
}[];
|
|
16
|
+
}
|
|
17
|
+
declare const XCardExpandProgress: React.FC<IProps>;
|
|
18
|
+
export default XCardExpandProgress;
|