formica-ui-lib 1.0.243 → 1.0.245

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.
@@ -1,5 +1,5 @@
1
1
  export type DataIssueActionCardStatus = "safe" | "warning" | "error" | "review" | "resolved";
2
- export type DataIssueActionCardConfidenceTone = "success" | "warning" | "error" | "neutral";
2
+ export type DataIssueActionCardConfidenceTone = "success" | "warning" | "error" | "review" | "neutral";
3
3
  export type DataIssueActionCardActionVariant = "solid" | "outline";
4
4
  export interface DataIssueActionCardActionPayload {
5
5
  issueId: string;
@@ -10,11 +10,11 @@ export interface DataIssueActionCardProps {
10
10
  groupCountLabel: string;
11
11
  description: string;
12
12
  status: DataIssueActionCardStatus;
13
+ stepNumber?: number;
13
14
  recommendedActionTitle?: string;
14
15
  recommendedActions: string[];
15
16
  confidenceLabel?: string;
16
17
  confidenceTone?: DataIssueActionCardConfidenceTone;
17
- estimatedRuntimeLabel?: string;
18
18
  primaryActionLabel?: string;
19
19
  primaryActionIconName?: string;
20
20
  primaryActionVariant?: DataIssueActionCardActionVariant;
@@ -23,5 +23,4 @@ export interface DataIssueActionCardProps {
23
23
  ariaLabel?: string;
24
24
  onPrimaryActionClick?: (payload: DataIssueActionCardActionPayload) => void;
25
25
  onSecondaryActionClick?: (payload: DataIssueActionCardActionPayload) => void;
26
- onExpandClick?: (payload: DataIssueActionCardActionPayload) => void;
27
26
  }
@@ -1,12 +1,5 @@
1
- export interface RecommendedNextStepCardActionPayload {
2
- actionId: "primary" | "secondary";
3
- }
4
1
  export interface RecommendedNextStepCardProps {
5
2
  title: string;
6
3
  description: string;
7
- primaryActionLabel?: string;
8
- secondaryActionLabel?: string;
9
4
  ariaLabel?: string;
10
- onPrimaryActionClick?: (payload: RecommendedNextStepCardActionPayload) => void;
11
- onSecondaryActionClick?: (payload: RecommendedNextStepCardActionPayload) => void;
12
5
  }