formica-ui-lib 1.0.260 → 1.0.261
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/organisms/forms/dynamicform/DynamicFormProps.d.ts +2 -1
- package/dist/componentProps/templates/admin/dataissues/AdminDataIssuesTemplateProps.d.ts +2 -0
- package/dist/index.cjs +3 -3
- package/dist/index.d.ts +1 -1
- package/dist/index.js +128 -131
- package/dist/tailwind.css +1 -1
- package/package.json +1 -1
|
@@ -4,7 +4,7 @@ export type DynamicFormFieldState = "neutral" | "valid" | "warning" | "error";
|
|
|
4
4
|
export type DynamicFormFieldValue = string | number | string[] | null;
|
|
5
5
|
export type DynamicFormDensity = "compact" | "comfortable";
|
|
6
6
|
export type DynamicFormSeverityDisplay = "icon" | "label" | "none";
|
|
7
|
-
export type DynamicFormFieldLayoutWidth = "full" | "half";
|
|
7
|
+
export type DynamicFormFieldLayoutWidth = "full" | "half" | "third";
|
|
8
8
|
export type DynamicFormInformationLayout = "singleLine" | "multiline";
|
|
9
9
|
export interface DynamicFormFieldOption {
|
|
10
10
|
label: string;
|
|
@@ -16,6 +16,7 @@ export interface DynamicFormFieldOption {
|
|
|
16
16
|
export interface DynamicFormFieldConfig {
|
|
17
17
|
id: string;
|
|
18
18
|
label: string;
|
|
19
|
+
iconName?: string;
|
|
19
20
|
type: DynamicFormFieldType;
|
|
20
21
|
value: DynamicFormFieldValue;
|
|
21
22
|
placeholder?: string;
|
|
@@ -83,6 +83,7 @@ export interface AdminDataIssuesResponse {
|
|
|
83
83
|
dataSource?: AdminDataIssuesDataSource | null;
|
|
84
84
|
}
|
|
85
85
|
export type AdminDataIssuesOperationStatus = "idle" | "pending" | "success" | "error";
|
|
86
|
+
export type AdminDataIssuesUpdateCacheStatus = "idle" | "required";
|
|
86
87
|
export interface AdminDataIssuesCacheActions {
|
|
87
88
|
status: AdminDataIssuesOperationStatus;
|
|
88
89
|
title: string;
|
|
@@ -137,6 +138,7 @@ export interface AdminDataIssuesTemplateProps {
|
|
|
137
138
|
recalculateLabel?: string;
|
|
138
139
|
recalculateStatus?: AdminDataIssuesOperationStatus;
|
|
139
140
|
updateCacheLabel?: string;
|
|
141
|
+
updateCacheStatus?: AdminDataIssuesUpdateCacheStatus;
|
|
140
142
|
deleteAndRebuildLabel?: string;
|
|
141
143
|
changeProductDataLabel?: string;
|
|
142
144
|
sideNavProps: AdminSideNavProps;
|