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.
- package/dist/componentProps/atoms/spinner/SpinnerProps.d.ts +5 -0
- package/dist/componentProps/molecules/cards/recommendednextstepcard/RecommendedNextStepCardProps.d.ts +1 -0
- package/dist/componentProps/templates/admin/dataissues/AdminDataIssuesTemplateProps.d.ts +2 -0
- package/dist/componentProps/templates/admin/productguides/AdminProductGuidesTemplateProps.d.ts +0 -17
- package/dist/index.cjs +8 -8
- package/dist/index.d.ts +3 -1
- package/dist/index.js +2034 -2041
- package/dist/stories/atoms/spinner/Spinner.d.ts +4 -0
- package/dist/tailwind.css +1 -1
- package/package.json +7 -7
|
@@ -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;
|
package/dist/componentProps/templates/admin/productguides/AdminProductGuidesTemplateProps.d.ts
CHANGED
|
@@ -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;
|