formica-ui-lib 1.0.252 → 1.0.254

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.
@@ -0,0 +1,5 @@
1
+ export type SpinnerSize = "xs" | "sm" | "md" | "lg" | "xl" | "2xl";
2
+ export interface SpinnerProps {
3
+ label?: string;
4
+ size?: SpinnerSize;
5
+ }
@@ -2,6 +2,7 @@ export interface RecommendedNextStepCardProps {
2
2
  title: string;
3
3
  description: string;
4
4
  recalculateLabel?: string;
5
+ recalculating?: boolean;
5
6
  ariaLabel?: string;
6
7
  onRecalculateClick?: () => void;
7
8
  }
@@ -134,6 +134,8 @@ export interface AdminDataIssuesTemplateProps {
134
134
  pageTitle: string;
135
135
  pageDescription?: string;
136
136
  lastScanLabel?: string;
137
+ recalculateLabel?: string;
138
+ recalculateStatus?: AdminDataIssuesOperationStatus;
137
139
  updateCacheLabel?: string;
138
140
  deleteAndRebuildLabel?: string;
139
141
  changeProductDataLabel?: string;
@@ -10,18 +10,6 @@ export interface AdminProductGuideValidationIssue {
10
10
  path: string;
11
11
  message: string;
12
12
  }
13
- export interface AdminProductGuideSummary {
14
- schemaVersion: number;
15
- productCount: number;
16
- offeringSetCount: number;
17
- rangeProductCounts: Record<string, number>;
18
- }
19
- export interface AdminProductGuideStorage {
20
- source: "bundled" | "runtime-upload";
21
- durable: boolean;
22
- updatedAt: string | null;
23
- updatedBy: string | null;
24
- }
25
13
  export interface AdminProductGuideLogo {
26
14
  src: string;
27
15
  alt?: string;
@@ -33,11 +21,6 @@ export interface AdminProductGuideCard {
33
21
  logo?: AdminProductGuideLogo;
34
22
  availability?: AdminProductGuideAvailability;
35
23
  availabilityMessage?: string;
36
- edition?: string;
37
- effectiveDate?: string;
38
- sourceFileName?: string;
39
- summary?: AdminProductGuideSummary;
40
- storage?: AdminProductGuideStorage;
41
24
  selectedFile?: AdminProductGuideSelectedFile;
42
25
  actionStatus?: AdminProductGuideActionStatus;
43
26
  actionStatusMessage?: string;