formica-ui-lib 1.0.313 → 1.0.316
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/molecules/selectors/verticalcheckboxlist/VerticalCheckboxListProps.d.ts +2 -0
- package/dist/componentProps/templates/admin/marketreadiness/MarketReadinessTemplateProps.d.ts +8 -0
- package/dist/componentProps/templates/proresourcetemplate/ProResourceTemplateProps.d.ts +6 -6
- package/dist/index.cjs +9 -9
- package/dist/index.js +274 -231
- package/package.json +2 -1
package/dist/componentProps/templates/admin/marketreadiness/MarketReadinessTemplateProps.d.ts
CHANGED
|
@@ -39,6 +39,8 @@ export interface MarketReadinessEditorControls {
|
|
|
39
39
|
cancelDisabled?: boolean;
|
|
40
40
|
}
|
|
41
41
|
export interface MarketReadinessDecorEditor {
|
|
42
|
+
localizationAvailability?: MarketReadinessLocalizationAvailability[];
|
|
43
|
+
localizationAvailabilityLabel?: string;
|
|
42
44
|
sharedTitle?: string;
|
|
43
45
|
sharedDescription?: string;
|
|
44
46
|
sharedFields: DynamicFormFieldConfig[];
|
|
@@ -359,7 +361,13 @@ export interface MarketReadinessSampleCreatePayload {
|
|
|
359
361
|
size: string;
|
|
360
362
|
variantSelections?: Partial<Record<MarketReadinessSampleVariantDimension, string>>;
|
|
361
363
|
}
|
|
364
|
+
export interface MarketReadinessDecorLocalizationAvailabilityChangePayload {
|
|
365
|
+
decorId: string;
|
|
366
|
+
localizationId: string;
|
|
367
|
+
enabled: boolean;
|
|
368
|
+
}
|
|
362
369
|
export interface MarketReadinessTemplateCallbacks {
|
|
370
|
+
onDecorLocalizationAvailabilityChange?: (payload: MarketReadinessDecorLocalizationAvailabilityChangePayload) => void;
|
|
363
371
|
sideNavProps?: AdminSideNavProps;
|
|
364
372
|
backgroundJobTrayProps?: AdminBackgroundJobTrayProps;
|
|
365
373
|
data: MarketReadinessTemplateData;
|
|
@@ -5,10 +5,10 @@ import type { InfoCardProps } from "../../molecules/cards/infocard/InfoCardProps
|
|
|
5
5
|
import type { FaqCardCollectionProps } from "../../organisms/collections/faqcardcollection/FaqCardCollectionProps";
|
|
6
6
|
import type { WarrantyCardProps } from "../../molecules/cards/warrantycard/WarrantyCardProps";
|
|
7
7
|
export type ProResourceTemplateProps = {
|
|
8
|
-
standardCopyHeroProps
|
|
9
|
-
multiButtonBarProps
|
|
10
|
-
warrantyCardProps
|
|
11
|
-
documentLinkCollectionProps
|
|
12
|
-
infoCardProps
|
|
13
|
-
faqCardCollectionProps
|
|
8
|
+
standardCopyHeroProps?: StandardCopyHeroProps | null;
|
|
9
|
+
multiButtonBarProps?: MultiButtonBarProps | null;
|
|
10
|
+
warrantyCardProps?: WarrantyCardProps | null;
|
|
11
|
+
documentLinkCollectionProps?: DocumentLinkCollectionProps | null;
|
|
12
|
+
infoCardProps?: InfoCardProps | null;
|
|
13
|
+
faqCardCollectionProps?: FaqCardCollectionProps | null;
|
|
14
14
|
};
|