@digitalculture/ochre-sdk 0.8.33 → 0.8.34
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 +3 -3
- package/dist/index.d.ts +3 -3
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -602,7 +602,7 @@ type WebElementComponent = {
|
|
|
602
602
|
component: "entries";
|
|
603
603
|
entriesId: string;
|
|
604
604
|
variant: "entry" | "item";
|
|
605
|
-
|
|
605
|
+
isFilterDisplayed: boolean;
|
|
606
606
|
} | {
|
|
607
607
|
component: "button";
|
|
608
608
|
variant: "default" | "transparent" | "link";
|
|
@@ -617,7 +617,7 @@ type WebElementComponent = {
|
|
|
617
617
|
variant: "full" | "highlights";
|
|
618
618
|
itemVariant: "default" | "card";
|
|
619
619
|
paginationVariant: "default" | "numeric";
|
|
620
|
-
|
|
620
|
+
isFilterDisplayed: boolean;
|
|
621
621
|
showCount: boolean;
|
|
622
622
|
layout: "image-top" | "image-bottom" | "image-start" | "image-end";
|
|
623
623
|
} | {
|
|
@@ -655,7 +655,7 @@ type WebElementComponent = {
|
|
|
655
655
|
} | {
|
|
656
656
|
component: "image-gallery";
|
|
657
657
|
galleryId: string;
|
|
658
|
-
|
|
658
|
+
isFilterDisplayed: boolean;
|
|
659
659
|
} | {
|
|
660
660
|
component: "map";
|
|
661
661
|
mapId: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -602,7 +602,7 @@ type WebElementComponent = {
|
|
|
602
602
|
component: "entries";
|
|
603
603
|
entriesId: string;
|
|
604
604
|
variant: "entry" | "item";
|
|
605
|
-
|
|
605
|
+
isFilterDisplayed: boolean;
|
|
606
606
|
} | {
|
|
607
607
|
component: "button";
|
|
608
608
|
variant: "default" | "transparent" | "link";
|
|
@@ -617,7 +617,7 @@ type WebElementComponent = {
|
|
|
617
617
|
variant: "full" | "highlights";
|
|
618
618
|
itemVariant: "default" | "card";
|
|
619
619
|
paginationVariant: "default" | "numeric";
|
|
620
|
-
|
|
620
|
+
isFilterDisplayed: boolean;
|
|
621
621
|
showCount: boolean;
|
|
622
622
|
layout: "image-top" | "image-bottom" | "image-start" | "image-end";
|
|
623
623
|
} | {
|
|
@@ -655,7 +655,7 @@ type WebElementComponent = {
|
|
|
655
655
|
} | {
|
|
656
656
|
component: "image-gallery";
|
|
657
657
|
galleryId: string;
|
|
658
|
-
|
|
658
|
+
isFilterDisplayed: boolean;
|
|
659
659
|
} | {
|
|
660
660
|
component: "map";
|
|
661
661
|
mapId: string;
|
package/package.json
CHANGED