@cloudtower/eagle 0.35.4 → 0.35.6

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.
@@ -33,7 +33,11 @@ interface SingleRejectDialogProps extends BaseRejectDialogProps {
33
33
  /** 拒绝原因,可以是单个字符串或字符串数组 */
34
34
  content: string | string[];
35
35
  /** 列表类型 */
36
- listType?: "ordered" | "unordered";
36
+ listType?: "ordered" | "unordered" | "resource";
37
+ /** 灰色的进一步描述 */
38
+ secondaryDesc?: React.ReactNode;
39
+ /** 资源图标 */
40
+ resourceIcon?: React.ReactNode;
37
41
  }
38
42
  interface MultiAllRejectDialogProps extends BaseRejectDialogProps {
39
43
  type: RejectDialogType.All;
@@ -11,7 +11,9 @@ declare const meta: {
11
11
  decorators: ((Story: import("@storybook/types").PartialStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, {
12
12
  type: RejectDialogType.Single;
13
13
  content: string | string[];
14
- listType?: "ordered" | "unordered" | undefined;
14
+ listType?: "resource" | "ordered" | "unordered" | undefined;
15
+ secondaryDesc?: React.ReactNode;
16
+ resourceIcon?: React.ReactNode;
15
17
  title: React.ReactNode;
16
18
  beforeDescription?: React.ReactNode;
17
19
  description?: React.ReactNode;