@1d1s/design-system 0.2.5 → 0.2.6

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.
@@ -25,6 +25,7 @@ export interface BannerCarouselProps extends React.HTMLAttributes<HTMLDivElement
25
25
  enableLoop?: boolean;
26
26
  showIndicators?: boolean;
27
27
  aspectRatioClassName?: string;
28
+ minHeightPx?: number;
28
29
  componentId?: string;
29
30
  enableDataLayerTracking?: boolean;
30
31
  impressionMode?: "once" | "always";
@@ -38,4 +39,4 @@ export interface BannerCarouselProps extends React.HTMLAttributes<HTMLDivElement
38
39
  * 메인 배너 슬라이더 컴포넌트. 자동 슬라이드, 무한 루프, 인디케이터를 지원하며
39
40
  * 클릭/노출 추적 콜백 및 dataLayer 이벤트 전송 포인트를 제공합니다.
40
41
  */
41
- export declare function BannerCarousel({ items, autoSlideIntervalMs, initialIndex, enableLoop, showIndicators, aspectRatioClassName, componentId, enableDataLayerTracking, impressionMode, onBannerClick, onBannerImpression, onBannerChange, onItemClick, className, ...props }: BannerCarouselProps): React.ReactElement | null;
42
+ export declare function BannerCarousel({ items, autoSlideIntervalMs, initialIndex, enableLoop, showIndicators, aspectRatioClassName, minHeightPx, componentId, enableDataLayerTracking, impressionMode, onBannerClick, onBannerImpression, onBannerChange, onItemClick, className, ...props }: BannerCarouselProps): React.ReactElement | null;
@@ -5,6 +5,8 @@ export default meta;
5
5
  type Story = StoryObj<typeof ChallengeCard>;
6
6
  export declare const Default: Story;
7
7
  export declare const Recruiting: Story;
8
+ export declare const IndividualParticipant: Story;
9
+ export declare const GroupParticipantCount: Story;
8
10
  export declare const Ended: Story;
9
11
  export declare const Grid3x2: Story;
10
12
  export declare const ChallengeIcons: Story;
@@ -11,10 +11,11 @@ export interface DiaryCardProps {
11
11
  user: string;
12
12
  userImage?: string;
13
13
  challengeLabel: string;
14
+ totalMemberCount?: number;
14
15
  onChallengeClick?(): void;
15
16
  date: string;
16
17
  emotion: Emotion;
17
18
  onClick?(): void;
18
19
  }
19
- export declare function DiaryCard({ imageUrl, percent, likes, isLiked: isLikedProp, defaultLiked, onLikeToggle, title, user, userImage, challengeLabel, onChallengeClick, date, emotion, onClick, }: DiaryCardProps): React.ReactElement;
20
+ export declare function DiaryCard({ imageUrl, percent, likes, isLiked: isLikedProp, defaultLiked, onLikeToggle, title, user, userImage, challengeLabel, totalMemberCount, onChallengeClick, date, emotion, onClick, }: DiaryCardProps): React.ReactElement;
20
21
  export {};