@digitalculture/ochre-sdk 0.10.20 → 0.10.22
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/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -800,7 +800,7 @@ type WebBlock<T extends WebBlockLayout = WebBlockLayout> = {
|
|
|
800
800
|
justifyContent: "stretch" | "start" | "center" | "end" | "space-between";
|
|
801
801
|
isAccordionSidebarDisplayed: T extends "accordion" ? boolean : never;
|
|
802
802
|
};
|
|
803
|
-
propertiesMobile:
|
|
803
|
+
propertiesMobile: Partial<Omit<WebBlock, "uuid" | "type" | "properties" | "propertiesMobile"> & WebBlock["properties"]> | null;
|
|
804
804
|
cssStyles: Array<Style>;
|
|
805
805
|
cssStylesMobile: Array<Style>;
|
|
806
806
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -800,7 +800,7 @@ type WebBlock<T extends WebBlockLayout = WebBlockLayout> = {
|
|
|
800
800
|
justifyContent: "stretch" | "start" | "center" | "end" | "space-between";
|
|
801
801
|
isAccordionSidebarDisplayed: T extends "accordion" ? boolean : never;
|
|
802
802
|
};
|
|
803
|
-
propertiesMobile:
|
|
803
|
+
propertiesMobile: Partial<Omit<WebBlock, "uuid" | "type" | "properties" | "propertiesMobile"> & WebBlock["properties"]> | null;
|
|
804
804
|
cssStyles: Array<Style>;
|
|
805
805
|
cssStylesMobile: Array<Style>;
|
|
806
806
|
};
|
package/package.json
CHANGED