25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- export type CardType = 'INFO_PAGE' | 'EXTERNAL_LINK' | 'IMAGE_GALLERY' | 'SERVICE_REQUEST';
-
- export type MediaItem = {
- url: string;
- autoplay?: boolean; // videos only — autoplay muted when shown
- autoFullscreen?: boolean; // any media — open the fullscreen viewer at this slide on card open
- };
-
- export interface Card {
- id: string;
- portalId: string;
- title: string;
- imageUrl: string;
- extraMedia?: MediaItem[];
- shortDescription: string;
- fullContent: string;
- cardType: CardType;
- actionUrl?: string;
- displayOrder: number;
- }
-
- export interface Portal {
- id: string;
- tenantId: string;
- title: string;
- welcomeText: string;
- heroImageUrl: string;
- logoUrl: string;
- themeColor: string;
- fadeHeroImage?: boolean;
- maxGridColumns?: number;
- }
|