Skip to content

Commit 8035647

Browse files
committed
Added queryType as 'media' by default. Ignore queryType on docs
1 parent 403d261 commit 8035647

2 files changed

Lines changed: 5 additions & 0 deletions

File tree

src/components/mediaObject/CdrMediaObject.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ const props = withDefaults(defineProps<MediaObject>(), {
2222
overlayRowAlign: 'start',
2323
overlayColumnAlign: 'start',
2424
contentPadding: 'zero',
25+
queryType: "media",
2526
});
2627
2728
const style = useCssModule();

src/types/interfaces.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -321,6 +321,10 @@ export interface fulfillmentTileIcon {
321321
}
322322

323323
export interface MediaObject extends Layout {
324+
/**
325+
* @ignore
326+
*/
327+
queryType?: QueryType;
324328
/**
325329
* The alignment of the media and content along the x or y axis, depending on the layout. This can be an object with values for each Cedar breakpoint (xs, sm, md, lg).
326330
* @values start, center, end

0 commit comments

Comments
 (0)