@designbasekorea/ui-wc 0.2.2 → 0.3.0

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.
Files changed (54) hide show
  1. package/dist/esm/components/animation-background/canvas-controller.js +1 -1
  2. package/dist/esm/components/animation-background/controls.js +1 -0
  3. package/dist/esm/components/animation-background/graphite-controller.js +1 -0
  4. package/dist/esm/components/animation-background/graphite-presets.js +1 -0
  5. package/dist/esm/components/animation-background/graphite-shader.js +1 -0
  6. package/dist/esm/components/animation-background/layers.js +1 -1
  7. package/dist/esm/components/animation-background/lumina-shaders.js +1 -1
  8. package/dist/esm/components/animation-background/lumina-utils.js +1 -1
  9. package/dist/esm/components/animation-background/renderers.js +1 -1
  10. package/dist/esm/components/animation-background/shader-controller.js +1 -1
  11. package/dist/esm/components/db-ad-banner.d.ts +26 -1
  12. package/dist/esm/components/db-ad-banner.js +1 -1
  13. package/dist/esm/components/db-animation-background.d.ts +23 -2
  14. package/dist/esm/components/db-animation-background.js +1 -1
  15. package/dist/esm/components/db-animation-text.d.ts +11 -0
  16. package/dist/esm/components/db-animation-text.js +1 -1
  17. package/dist/esm/components/db-context-menu.js +1 -1
  18. package/dist/esm/components/db-cursor-follower.d.ts +1 -2
  19. package/dist/esm/components/db-cursor-follower.js +1 -1
  20. package/dist/esm/components/db-dropdown.js +1 -1
  21. package/dist/esm/components/db-footer.d.ts +74 -0
  22. package/dist/esm/components/db-footer.js +1 -0
  23. package/dist/esm/components/db-grid-background.d.ts +93 -0
  24. package/dist/esm/components/db-grid-background.js +1 -0
  25. package/dist/esm/components/db-indicator.d.ts +12 -0
  26. package/dist/esm/components/db-indicator.js +1 -1
  27. package/dist/esm/components/db-lightbox.d.ts +1 -0
  28. package/dist/esm/components/db-lightbox.js +1 -1
  29. package/dist/esm/components/db-marquee.d.ts +26 -4
  30. package/dist/esm/components/db-marquee.js +1 -1
  31. package/dist/esm/components/db-masonry.js +1 -1
  32. package/dist/esm/components/db-navbar.d.ts +32 -1
  33. package/dist/esm/components/db-navbar.js +1 -1
  34. package/dist/esm/components/db-popover.js +1 -1
  35. package/dist/esm/components/db-progress.d.ts +10 -0
  36. package/dist/esm/components/db-progress.js +1 -1
  37. package/dist/esm/components/db-range-slider.d.ts +7 -0
  38. package/dist/esm/components/db-range-slider.js +1 -1
  39. package/dist/esm/components/db-share-icons.js +1 -1
  40. package/dist/esm/components/db-tooltip.d.ts +3 -0
  41. package/dist/esm/components/db-tooltip.js +1 -1
  42. package/dist/esm/index.d.ts +2 -0
  43. package/dist/esm/index.js +1 -1
  44. package/dist/index.cjs +1 -1
  45. package/dist/index.css +1 -1
  46. package/dist/index.d.ts +317 -11
  47. package/dist/index.esm.js +1 -1
  48. package/dist/react/chunks/lottie-14e7addb.js +1 -0
  49. package/dist/react/index.cjs +1 -1
  50. package/dist/react/index.d.ts +428 -16
  51. package/dist/react/index.esm.js +1 -1
  52. package/package.json +1 -1
  53. package/dist/react/chunks/lottie-eed75107.js +0 -1
  54. /package/dist/chunks/{lottie-e741cdda.js → lottie-1e5700ad.js} +0 -0
@@ -473,6 +473,8 @@ declare class DbTooltip extends HTMLElement {
473
473
  private showTimer?;
474
474
  private hideTimer?;
475
475
  private repositionRaf?;
476
+ private enterRaf?;
477
+ private removalTimer?;
476
478
  get content(): string;
477
479
  set content(value: string);
478
480
  get position(): string;
@@ -504,6 +506,7 @@ declare class DbTooltip extends HTMLElement {
504
506
  private syncTooltipClasses;
505
507
  private calculatePosition;
506
508
  private setVisible;
509
+ private hideTooltip;
507
510
  private removeTooltip;
508
511
  private handleShow;
509
512
  private handleHide;
@@ -586,11 +589,21 @@ declare global {
586
589
 
587
590
  declare class DbProgress extends HTMLElement {
588
591
  static get observedAttributes(): string[];
592
+ private structureSignature;
593
+ private barEl?;
594
+ private linearValueEl?;
595
+ private circularBarEl?;
596
+ private circularValueEl?;
597
+ private circumference;
589
598
  get value(): number;
590
599
  set value(value: number);
591
600
  connectedCallback(): void;
592
601
  attributeChangedCallback(): void;
593
602
  private render;
603
+ private buildLinear;
604
+ private updateLinear;
605
+ private buildCircular;
606
+ private updateCircular;
594
607
  }
595
608
  declare global {
596
609
  interface HTMLElementTagNameMap {
@@ -1067,6 +1080,10 @@ declare class DbIndicator extends HTMLElement {
1067
1080
  set size(value: string);
1068
1081
  get direction(): string;
1069
1082
  set direction(value: string);
1083
+ get numberBackground(): boolean;
1084
+ set numberBackground(value: boolean);
1085
+ get playback(): boolean;
1086
+ set playback(value: boolean);
1070
1087
  get clickable(): boolean;
1071
1088
  set clickable(value: boolean);
1072
1089
  get timer(): boolean;
@@ -1085,6 +1102,14 @@ declare class DbIndicator extends HTMLElement {
1085
1102
  private renderStep;
1086
1103
  private renderDots;
1087
1104
  private renderPlaybackButton;
1105
+ private renderNumbers;
1106
+ private renderSlide;
1107
+ private renderScaleFill;
1108
+ private renderLine;
1109
+ private renderDotLine;
1110
+ private fillRatio;
1111
+ private renderFill;
1112
+ private renderContent;
1088
1113
  private render;
1089
1114
  }
1090
1115
  declare global {
@@ -1375,6 +1400,7 @@ declare class DbLightbox extends HTMLElement {
1375
1400
  private imageError;
1376
1401
  private keydownHandler;
1377
1402
  private boundSrc;
1403
+ private thumbnailSignature;
1378
1404
  static get observedAttributes(): string[];
1379
1405
  connectedCallback(): void;
1380
1406
  disconnectedCallback(): void;
@@ -1436,9 +1462,34 @@ interface DbNavbarItem {
1436
1462
  label: string;
1437
1463
  href?: string;
1438
1464
  icon?: string;
1465
+ /** 메가 메뉴 링크에서 라벨 아래 표시되는 보조 설명 */
1466
+ description?: string;
1439
1467
  active?: boolean;
1440
1468
  disabled?: boolean;
1441
1469
  children?: DbNavbarItem[];
1470
+ /** children 대신 메가 메뉴(다단 패널) 스타일로 렌더링 */
1471
+ megaMenu?: boolean;
1472
+ /** 메가 메뉴 컬럼 목록 */
1473
+ columns?: DbNavbarMegaColumn[];
1474
+ /** 메가 메뉴 우측 강조(피처드) 영역 */
1475
+ featured?: DbNavbarMegaFeatured;
1476
+ }
1477
+ interface DbNavbarMegaColumn {
1478
+ id: string;
1479
+ /** 컬럼 상단 제목 */
1480
+ title?: string;
1481
+ /** 컬럼 내 링크 목록 */
1482
+ items: DbNavbarItem[];
1483
+ }
1484
+ interface DbNavbarMegaFeatured {
1485
+ title?: string;
1486
+ description?: string;
1487
+ /** 배경 이미지 URL */
1488
+ image?: string;
1489
+ href?: string;
1490
+ /** CTA 텍스트 (예: 자세히 보기) */
1491
+ ctaLabel?: string;
1492
+ icon?: string;
1442
1493
  }
1443
1494
  interface DbNavbarUserProfile {
1444
1495
  name: string;
@@ -1471,10 +1522,16 @@ declare class DbNavbar extends HTMLElement {
1471
1522
  private unbindOutsideClick;
1472
1523
  private dispatchItemClick;
1473
1524
  private syncHostClasses;
1525
+ private isMegaMenu;
1526
+ private createNavToggleButton;
1527
+ private createMegaLink;
1528
+ private createMegaMenu;
1529
+ private createMegaFeatured;
1474
1530
  private createDesktopNavItem;
1475
1531
  private createUserMenuItemElement;
1476
1532
  private bindSearchEvents;
1477
1533
  private applyAvatarProfile;
1534
+ private getMobileChildren;
1478
1535
  private createMobileMenuItem;
1479
1536
  private updateUserMenuVisibility;
1480
1537
  private renderMobileMenu;
@@ -1486,6 +1543,78 @@ declare global {
1486
1543
  }
1487
1544
  }
1488
1545
 
1546
+ type DbFooterSocialPlatform = 'youtube' | 'instagram' | 'x' | 'linkedin' | 'facebook' | 'email';
1547
+ interface DbFooterLink {
1548
+ id: string;
1549
+ label: string;
1550
+ href?: string;
1551
+ external?: boolean;
1552
+ /** 개인정보처리방침 등 강조 링크 */
1553
+ emphasize?: boolean;
1554
+ }
1555
+ interface DbFooterLinkColumn {
1556
+ id: string;
1557
+ title: string;
1558
+ items: DbFooterLink[];
1559
+ }
1560
+ interface DbFooterSocialLink {
1561
+ id: string;
1562
+ platform: DbFooterSocialPlatform;
1563
+ href: string;
1564
+ label?: string;
1565
+ }
1566
+ interface DbFooterCompanyInfo {
1567
+ companyName?: string;
1568
+ representative?: string;
1569
+ businessNumber?: string;
1570
+ mailOrderNumber?: string;
1571
+ address?: string;
1572
+ phone?: string;
1573
+ customerCenter?: string;
1574
+ email?: string;
1575
+ hostingProvider?: string;
1576
+ }
1577
+ interface DbFooterFamilySite {
1578
+ id: string;
1579
+ label: string;
1580
+ href: string;
1581
+ }
1582
+ declare class DbFooter extends HTMLElement {
1583
+ static get observedAttributes(): string[];
1584
+ connectedCallback(): void;
1585
+ attributeChangedCallback(): void;
1586
+ get columns(): DbFooterLinkColumn[];
1587
+ set columns(value: DbFooterLinkColumn[] | string);
1588
+ get legalLinks(): DbFooterLink[];
1589
+ set legalLinks(value: DbFooterLink[] | string);
1590
+ get socialLinks(): DbFooterSocialLink[];
1591
+ set socialLinks(value: DbFooterSocialLink[] | string);
1592
+ get companyInfo(): DbFooterCompanyInfo;
1593
+ set companyInfo(value: DbFooterCompanyInfo | string);
1594
+ get familySites(): DbFooterFamilySite[];
1595
+ set familySites(value: DbFooterFamilySite[] | string);
1596
+ private syncHostClasses;
1597
+ private dispatchLinkClick;
1598
+ private createLink;
1599
+ private createSocialLink;
1600
+ private createCompanyInfoRows;
1601
+ private showLogo;
1602
+ private createLogo;
1603
+ private renderBrand;
1604
+ private renderColumns;
1605
+ private createLegalNav;
1606
+ private renderLegalBar;
1607
+ private renderCompanyInfo;
1608
+ private createCopyright;
1609
+ private renderMinimal;
1610
+ private render;
1611
+ }
1612
+ declare global {
1613
+ interface HTMLElementTagNameMap {
1614
+ 'db-footer': DbFooter;
1615
+ }
1616
+ }
1617
+
1489
1618
  interface DbSidebarItem {
1490
1619
  id: string;
1491
1620
  label: string;
@@ -3057,27 +3186,49 @@ declare class DbMarquee extends HTMLElement {
3057
3186
  static get observedAttributes(): string[];
3058
3187
  private built;
3059
3188
  private containerEl?;
3060
- private trackEl?;
3061
- private baseGroupEl?;
3189
+ private rowsEl?;
3062
3190
  private srOnlyEl?;
3191
+ private rows;
3192
+ private rowCount;
3063
3193
  private resizeObserver?;
3064
3194
  private containerWidth;
3065
- private baseGroupWidth;
3195
+ private gap;
3196
+ private scrollVelocityEnabled;
3197
+ private rafId;
3198
+ private lastFrameTime;
3199
+ private lastScrollY;
3200
+ private smoothedScrollV;
3201
+ private baseDurationSec;
3202
+ private reduceMotion;
3066
3203
  private boundMeasure;
3204
+ private boundFrame;
3067
3205
  connectedCallback(): void;
3068
3206
  disconnectedCallback(): void;
3069
3207
  attributeChangedCallback(): void;
3070
3208
  private getBool;
3071
3209
  private parseItems;
3210
+ private itemToText;
3072
3211
  private build;
3073
3212
  private bindResize;
3213
+ /** rows 개수에 맞춰 행 DOM을 만들거나 제거한다. */
3214
+ private reconcileRows;
3074
3215
  private measure;
3075
3216
  private unbindImageListeners;
3076
3217
  private bindImageListeners;
3077
3218
  private renderItem;
3078
3219
  private renderGroup;
3079
- private renderDuplicates;
3220
+ /**
3221
+ * 각 행의 base 그룹을 items로 다시 만든다 — items/attributes 변경 시에만 실행.
3222
+ * 이미지 노드 재생성으로 인한 재로딩을 막기 위해 measure() 중에는 건드리지 않는다.
3223
+ */
3224
+ private buildBase;
3225
+ private baseImagesReady;
3226
+ /** 트랙을 채울 만큼의 복제 그룹 개수를 델타만 조정한다. */
3227
+ private reconcileDuplicates;
3080
3228
  private syncReadyState;
3229
+ private startScrollEngine;
3230
+ private stopScrollEngine;
3231
+ private frame;
3081
3232
  private updateUI;
3082
3233
  }
3083
3234
  declare global {
@@ -3142,8 +3293,16 @@ declare class DbAdBanner extends HTMLElement {
3142
3293
  private autoCloseTimer?;
3143
3294
  private rootEl?;
3144
3295
  private gradientEl?;
3296
+ private animBgEl?;
3297
+ private animBgInner?;
3298
+ private gridBgEl?;
3299
+ private gridBgInner?;
3145
3300
  private contentEl?;
3301
+ private mainEl?;
3302
+ private textEl?;
3146
3303
  private closeBtn?;
3304
+ private imageEl?;
3305
+ private linkEl?;
3147
3306
  private iconEl?;
3148
3307
  private labelEl?;
3149
3308
  private badgeEl?;
@@ -3161,11 +3320,28 @@ declare class DbAdBanner extends HTMLElement {
3161
3320
  private getBool;
3162
3321
  private getType;
3163
3322
  private getVariant;
3323
+ private getSize;
3324
+ private ctaButtonSize;
3164
3325
  private build;
3165
3326
  private handleClose;
3166
3327
  private stopAutoClose;
3167
3328
  private startAutoClose;
3168
- private renderGradientWrapper;
3329
+ private getBackground;
3330
+ private ensureAnimBg;
3331
+ private ensureGridBg;
3332
+ /** 이전 배경 모드의 백드롭 엘리먼트를 정리한다. */
3333
+ private clearBackdrop;
3334
+ private renderBackground;
3335
+ /** 장식 아이콘은 card 타입에서만 사용한다. */
3336
+ private syncIcon;
3337
+ /** floating 타입에서만 텍스트 상단에 배지 칩을 노출한다. */
3338
+ private syncBadge;
3339
+ /** floating 타입에서 배너 이미지를 콘텐츠 상단(패딩 밖)에 렌더한다. */
3340
+ private syncImage;
3341
+ /** topbar 타입에서 href 가 있으면 전체를 덮는 링크 오버레이를 렌더한다. */
3342
+ private syncLink;
3343
+ /** show-countdown + end-date 가 있을 때만 카운트다운을 마운트한다. */
3344
+ private syncCountdown;
3169
3345
  private updateUI;
3170
3346
  }
3171
3347
  declare global {
@@ -3209,11 +3385,18 @@ declare class DbAnimationText extends HTMLElement {
3209
3385
  private displayText;
3210
3386
  private isVisible;
3211
3387
  private isAnimating;
3388
+ private wordEls;
3389
+ private scrollHandler?;
3390
+ private rafId?;
3391
+ private rotateToken;
3392
+ private rotateObserver?;
3212
3393
  static get observedAttributes(): string[];
3213
3394
  connectedCallback(): void;
3214
3395
  disconnectedCallback(): void;
3215
3396
  attributeChangedCallback(): void;
3216
3397
  private getText;
3398
+ private getRotateTexts;
3399
+ private getLongestText;
3217
3400
  private getType;
3218
3401
  private getTrigger;
3219
3402
  private ensureStructure;
@@ -3221,6 +3404,10 @@ declare class DbAnimationText extends HTMLElement {
3221
3404
  private syncFromAttributes;
3222
3405
  private syncClasses;
3223
3406
  private setupTrigger;
3407
+ private setupTextRotate;
3408
+ private setupScrollFill;
3409
+ private teardownScrollFill;
3410
+ private updateScrollFill;
3224
3411
  private startAnimation;
3225
3412
  private startTyping;
3226
3413
  private startDecoding;
@@ -3288,15 +3475,36 @@ declare global {
3288
3475
  declare class DbAnimationBackground extends HTMLElement {
3289
3476
  private layersEl?;
3290
3477
  private contentEl?;
3478
+ private controlsRootEl?;
3479
+ private panelEl?;
3480
+ private panelOpen;
3291
3481
  private layerHandle?;
3292
3482
  private clickHandler?;
3483
+ private mountedType?;
3484
+ private controlInputs;
3485
+ private syncingControls;
3293
3486
  static get observedAttributes(): string[];
3294
3487
  connectedCallback(): void;
3295
3488
  disconnectedCallback(): void;
3296
- attributeChangedCallback(): void;
3297
- private teardownLayers;
3489
+ attributeChangedCallback(name: string, oldValue: string | null, newValue: string | null): void;
3490
+ private getBool;
3298
3491
  private getSizeStyle;
3492
+ private getConfig;
3493
+ private teardownLayers;
3494
+ private remountLayers;
3495
+ private canLiveUpdate;
3496
+ private applyConfig;
3497
+ private syncClickable;
3299
3498
  private render;
3499
+ private ensureControlsShell;
3500
+ private syncControlsVisibility;
3501
+ private syncPanelState;
3502
+ private createIconButton;
3503
+ private rebuildControlInputs;
3504
+ private createControlField;
3505
+ private commitControlValue;
3506
+ private syncControlInputs;
3507
+ private renderColorInputs;
3300
3508
  }
3301
3509
  declare global {
3302
3510
  interface HTMLElementTagNameMap {
@@ -3304,8 +3512,99 @@ declare global {
3304
3512
  }
3305
3513
  }
3306
3514
 
3515
+ /**
3516
+ * db-grid-background — 캔버스 기반 그리드 배경.
3517
+ *
3518
+ * 패턴은 항상 중앙을 기준으로 대칭 배치되며(가장자리 라인 없음),
3519
+ * 단독 배경으로도, 다른 배경 위 데코 레이어(overlay)로도 쓸 수 있다.
3520
+ * interactive/animate 로 마우스 인터랙션과 앰비언트 애니메이션을 켤 수 있다.
3521
+ *
3522
+ * @example
3523
+ * <db-grid-background type="lines" size="32" fade="all"
3524
+ * interactive animate height="240"></db-grid-background>
3525
+ */
3526
+ declare class DbGridBackground extends HTMLElement {
3527
+ private canvas?;
3528
+ private ctx?;
3529
+ private hlCanvas?;
3530
+ private maskCanvas?;
3531
+ private ro?;
3532
+ private rafId?;
3533
+ private lastTime;
3534
+ private lastPointerMove;
3535
+ private bandAngle;
3536
+ private pointer;
3537
+ private cssW;
3538
+ private cssH;
3539
+ private colorProbe?;
3540
+ private themeObserver?;
3541
+ private themeMedia?;
3542
+ private tracePulses;
3543
+ private traceSpawnAccumulator;
3544
+ private onThemeMediaChange;
3545
+ private onPointerMove;
3546
+ static get observedAttributes(): string[];
3547
+ connectedCallback(): void;
3548
+ disconnectedCallback(): void;
3549
+ attributeChangedCallback(): void;
3550
+ private getBool;
3551
+ private getNumber;
3552
+ private getSizeStyle;
3553
+ private getColorProbe;
3554
+ private resolveCssColor;
3555
+ private isDarkContext;
3556
+ private resolveThemeColor;
3557
+ private effectiveOpacity;
3558
+ private effectiveColor;
3559
+ private effectiveInterColor;
3560
+ private traceDrawColor;
3561
+ private traceDrawOpacity;
3562
+ private parseColorRgb;
3563
+ private crossArm;
3564
+ private interactionMode;
3565
+ private animationStyle;
3566
+ private traceDirection;
3567
+ private linesLayout;
3568
+ private crossStyle;
3569
+ private parseGuideEdges;
3570
+ private guideFraction;
3571
+ private isGridLines;
3572
+ private isTraceableLines;
3573
+ private get cfg();
3574
+ private ensureCanvas;
3575
+ private applyHostStyles;
3576
+ private startObserving;
3577
+ private observeDocumentTheme;
3578
+ private bindPointer;
3579
+ private handlePointerMove;
3580
+ private measure;
3581
+ /** 중앙을 기준으로 대칭 배치되며 (0, extent) 내부 좌표만 반환 → 가장자리 라인 없음 */
3582
+ private axis;
3583
+ private scheduleDraw;
3584
+ private ensureLoop;
3585
+ private drawFrame;
3586
+ private easeInOutCubic;
3587
+ private traceSegmentLength;
3588
+ private pulseHead;
3589
+ private updateTracePulses;
3590
+ private traceLinePositions;
3591
+ private spawnTracePulse;
3592
+ private drawTracePulseSegment;
3593
+ private drawTraceHighlight;
3594
+ private drawPattern;
3595
+ private drawGridLines;
3596
+ private drawFrameGuides;
3597
+ private drawCenterGuides;
3598
+ private buildEnergyMask;
3599
+ private applyFade;
3600
+ }
3601
+ declare global {
3602
+ interface HTMLElementTagNameMap {
3603
+ 'db-grid-background': DbGridBackground;
3604
+ }
3605
+ }
3606
+
3307
3607
  declare class DbCursorFollower extends HTMLElement {
3308
- private scopeEl?;
3309
3608
  private portalRoot?;
3310
3609
  private pillEl?;
3311
3610
  private labelEl?;
@@ -3323,7 +3622,7 @@ declare class DbCursorFollower extends HTMLElement {
3323
3622
  disconnectedCallback(): void;
3324
3623
  attributeChangedCallback(): void;
3325
3624
  private setupDesktopGate;
3326
- private ensureScope;
3625
+ private updateScope;
3327
3626
  private isInScope;
3328
3627
  private mountLayer;
3329
3628
  private teardownLayer;
@@ -4284,6 +4583,10 @@ type RangeSliderProps = WebComponentProps & {
4284
4583
  size?: 's' | 'm' | 'l';
4285
4584
  variant?: 'default' | 'primary' | 'success' | 'warning' | 'danger';
4286
4585
  showValue?: boolean;
4586
+ showLabel?: boolean;
4587
+ label?: string;
4588
+ valueFixed?: number;
4589
+ showThumbTooltip?: boolean;
4287
4590
  valuePosition?: 'top' | 'left' | 'right' | 'bottom';
4288
4591
  showMarks?: boolean;
4289
4592
  marks?: number[];
@@ -4926,6 +5229,56 @@ type NavbarProps = WebComponentProps & {
4926
5229
  fullWidth?: boolean;
4927
5230
  shadow?: boolean;
4928
5231
  };
5232
+ type FooterLink = {
5233
+ id: string;
5234
+ label: string;
5235
+ href?: string;
5236
+ external?: boolean;
5237
+ emphasize?: boolean;
5238
+ };
5239
+ type FooterLinkColumn = {
5240
+ id: string;
5241
+ title: string;
5242
+ items: FooterLink[];
5243
+ };
5244
+ type FooterSocialLink = {
5245
+ id: string;
5246
+ platform: 'youtube' | 'instagram' | 'x' | 'linkedin' | 'facebook' | 'email';
5247
+ href: string;
5248
+ label?: string;
5249
+ };
5250
+ type FooterCompanyInfo = {
5251
+ companyName?: string;
5252
+ representative?: string;
5253
+ businessNumber?: string;
5254
+ mailOrderNumber?: string;
5255
+ address?: string;
5256
+ phone?: string;
5257
+ customerCenter?: string;
5258
+ email?: string;
5259
+ hostingProvider?: string;
5260
+ };
5261
+ type FooterFamilySite = {
5262
+ id: string;
5263
+ label: string;
5264
+ href: string;
5265
+ };
5266
+ type FooterProps = WebComponentProps & {
5267
+ columns?: FooterLinkColumn[] | string;
5268
+ legalLinks?: FooterLink[] | string;
5269
+ socialLinks?: FooterSocialLink[] | string;
5270
+ companyInfo?: FooterCompanyInfo | string;
5271
+ familySites?: FooterFamilySite[] | string;
5272
+ tagline?: string;
5273
+ copyright?: string;
5274
+ logoType?: string;
5275
+ variant?: 'default' | 'compact' | 'minimal';
5276
+ size?: 's' | 'm' | 'l';
5277
+ fullWidth?: boolean;
5278
+ showLogo?: boolean;
5279
+ showSocial?: boolean;
5280
+ familySiteLabel?: string;
5281
+ };
4929
5282
  type SidebarItem = {
4930
5283
  id: string;
4931
5284
  label: string;
@@ -5007,6 +5360,8 @@ type ProgressProps = WebComponentProps & {
5007
5360
  showValue?: boolean;
5008
5361
  animated?: boolean;
5009
5362
  striped?: boolean;
5363
+ gradient?: boolean;
5364
+ glow?: boolean;
5010
5365
  };
5011
5366
  type SkeletonProps = WebComponentProps & {
5012
5367
  variant?: 'text' | 'circular' | 'rectangular' | 'rounded';
@@ -5559,10 +5914,12 @@ type IndicatorProps = WebComponentProps & {
5559
5914
  total?: number;
5560
5915
  current?: number;
5561
5916
  defaultCurrent?: number;
5562
- indicatorType?: 'dots' | 'numbers' | 'line' | 'dot-line' | 'slide' | 'combined';
5563
- type?: 'dots' | 'numbers' | 'line' | 'dot-line' | 'slide' | 'combined';
5917
+ indicatorType?: 'dots' | 'numbers' | 'line' | 'dot-line' | 'slide' | 'fill' | 'combined';
5918
+ type?: 'dots' | 'numbers' | 'line' | 'dot-line' | 'slide' | 'fill' | 'combined';
5564
5919
  direction?: 'horizontal' | 'vertical';
5565
5920
  size?: 's' | 'm' | 'l';
5921
+ numberBackground?: boolean;
5922
+ playback?: boolean;
5566
5923
  clickable?: boolean;
5567
5924
  timer?: boolean;
5568
5925
  timerDuration?: number;
@@ -6356,8 +6713,14 @@ type SectionAppDownloadProps = WebComponentProps & {
6356
6713
  fullHeight?: boolean;
6357
6714
  overflowVisible?: boolean;
6358
6715
  };
6716
+ type MarqueeImageItem = {
6717
+ src: string;
6718
+ alt?: string;
6719
+ href?: string;
6720
+ height?: number;
6721
+ };
6359
6722
  type MarqueeProps = WebComponentProps & {
6360
- items?: string[] | string;
6723
+ items?: Array<string | MarqueeImageItem> | string;
6361
6724
  direction?: 'left' | 'right';
6362
6725
  duration?: number;
6363
6726
  speed?: number;
@@ -6370,6 +6733,10 @@ type MarqueeProps = WebComponentProps & {
6370
6733
  edgePadding?: number;
6371
6734
  gap?: number;
6372
6735
  alignY?: 'start' | 'center' | 'end';
6736
+ rowCount?: number;
6737
+ rowGap?: number;
6738
+ scrollVelocity?: boolean;
6739
+ scrollBoost?: number;
6373
6740
  ariaLabel?: string;
6374
6741
  };
6375
6742
  type GradientColor = {
@@ -6401,11 +6768,19 @@ type RandomGradientProps = WebComponentProps & {
6401
6768
  type AdBannerProps = WebComponentProps & {
6402
6769
  type?: 'hero' | 'topbar' | 'card' | 'floating';
6403
6770
  variant?: 'primary' | 'secondary' | 'success' | 'warning' | 'error';
6771
+ size?: 's' | 'm' | 'l';
6404
6772
  title?: string;
6405
6773
  subtitle?: string;
6406
6774
  ctaText?: string;
6775
+ image?: string;
6776
+ imageAlt?: string;
6777
+ href?: string;
6778
+ target?: string;
6407
6779
  autoClose?: boolean;
6408
6780
  closeDelay?: number;
6781
+ background?: 'solid' | 'gradient' | 'animation' | 'grid';
6782
+ animationType?: string;
6783
+ gridType?: 'lines' | 'dots' | 'cross' | 'diagonal';
6409
6784
  useRandomGradient?: boolean;
6410
6785
  gradientScheme?: RandomGradientProps['scheme'];
6411
6786
  gradientTone?: RandomGradientProps['tone'];
@@ -6449,8 +6824,12 @@ type TimelineProps = WebComponentProps & {
6449
6824
  };
6450
6825
  type AnimationTextProps = WebComponentProps & {
6451
6826
  text?: string;
6827
+ /** text-rotate 타입용 — 콤마로 구분된 여러 텍스트 */
6828
+ texts?: string;
6829
+ /** text-rotate 타입용 — 각 텍스트 유지 시간(ms) */
6830
+ interval?: number;
6452
6831
  trigger?: 'mount' | 'hover' | 'click' | 'in-view';
6453
- type?: 'typing' | 'fade' | 'slide' | 'bounce' | 'shake' | 'glow' | 'gradient' | 'wave' | 'flip' | 'scale' | 'decode';
6832
+ type?: 'typing' | 'fade' | 'slide' | 'bounce' | 'shake' | 'glow' | 'gradient' | 'wave' | 'flip' | 'scale' | 'decode' | 'roll' | 'reveal' | 'scroll-fill' | 'text-rotate';
6454
6833
  speed?: number;
6455
6834
  repeat?: number;
6456
6835
  delay?: number;
@@ -6495,7 +6874,7 @@ type TutorialProps = WebComponentProps & {
6495
6874
  onDbPrev?: DbEventHandler;
6496
6875
  };
6497
6876
  type AnimationBackgroundProps = WebComponentProps & {
6498
- type?: 'gradient' | 'particles' | 'stars' | 'snow' | 'flowers' | 'confetti' | 'aurora' | 'plasma' | 'mesh-flow' | 'fluid' | 'radiant' | 'ethereal';
6877
+ type?: 'particles' | 'stars' | 'snow' | 'flowers' | 'confetti' | 'aurora' | 'plasma' | 'mesh-flow' | 'fluid' | 'radiant' | 'ethereal' | 'graphite';
6499
6878
  theme?: 'light' | 'dark';
6500
6879
  intensity?: 'subtle' | 'medium' | 'vivid';
6501
6880
  blur?: number;
@@ -6521,6 +6900,10 @@ type AnimationBackgroundProps = WebComponentProps & {
6521
6900
  showVignette?: boolean;
6522
6901
  preset?: string;
6523
6902
  zoom?: number;
6903
+ showControls?: boolean;
6904
+ shaderSpeed?: number;
6905
+ shaderIntensity?: number;
6906
+ warp?: number;
6524
6907
  onClick?: DbEventHandler;
6525
6908
  onDbClick?: DbEventHandler;
6526
6909
  };
@@ -6593,6 +6976,7 @@ declare const ImageList: react.ForwardRefExoticComponent<Omit<ImageListProps, "r
6593
6976
  declare const Lightbox: react.ForwardRefExoticComponent<Omit<LightboxProps, "ref"> & react.RefAttributes<HTMLElement>>;
6594
6977
  declare const BottomNavigation: react.ForwardRefExoticComponent<Omit<BottomNavigationProps, "ref"> & react.RefAttributes<HTMLElement>>;
6595
6978
  declare const Navbar: react.ForwardRefExoticComponent<Omit<NavbarProps, "ref"> & react.RefAttributes<HTMLElement>>;
6979
+ declare const Footer: react.ForwardRefExoticComponent<Omit<FooterProps, "ref"> & react.RefAttributes<HTMLElement>>;
6596
6980
  declare const Sidebar: react.ForwardRefExoticComponent<Omit<SidebarProps, "ref"> & react.RefAttributes<HTMLElement>>;
6597
6981
  declare const SegmentControl: react.ForwardRefExoticComponent<Omit<SegmentControlProps, "ref"> & react.RefAttributes<HTMLElement>>;
6598
6982
  declare const Select: react.ForwardRefExoticComponent<Omit<SelectProps, "ref"> & react.RefAttributes<HTMLElement>>;
@@ -6633,6 +7017,34 @@ declare const Timeline: react.ForwardRefExoticComponent<Omit<TimelineProps, "ref
6633
7017
  declare const AnimationText: react.ForwardRefExoticComponent<Omit<AnimationTextProps, "ref"> & react.RefAttributes<HTMLElement>>;
6634
7018
  declare const Tutorial: react.ForwardRefExoticComponent<Omit<TutorialProps, "ref"> & react.RefAttributes<HTMLElement>>;
6635
7019
  declare const AnimationBackground: react.ForwardRefExoticComponent<Omit<AnimationBackgroundProps, "ref"> & react.RefAttributes<HTMLElement>>;
7020
+ type GridBackgroundProps = WebComponentProps & {
7021
+ type?: 'lines' | 'dots' | 'cross' | 'diagonal';
7022
+ size?: number;
7023
+ thickness?: number;
7024
+ color?: string;
7025
+ theme?: string;
7026
+ opacity?: number;
7027
+ fade?: string;
7028
+ fadeSize?: number | string;
7029
+ background?: string;
7030
+ overlay?: string;
7031
+ interactive?: boolean;
7032
+ interaction?: 'none' | 'glow' | 'magnet' | 'rotate';
7033
+ interactionColor?: string;
7034
+ interactionRadius?: number;
7035
+ crossSize?: number;
7036
+ crossStyle?: 'plus' | 'line';
7037
+ linesLayout?: 'grid' | 'frame' | 'center';
7038
+ animated?: boolean;
7039
+ animationStyle?: 'band' | 'trace' | 'both';
7040
+ animationSpeed?: number;
7041
+ traceLength?: number;
7042
+ traceDirection?: 'vertical' | 'horizontal' | 'both';
7043
+ width?: number | string;
7044
+ height?: number | string;
7045
+ borderRadius?: number | string;
7046
+ };
7047
+ declare const GridBackground: react.ForwardRefExoticComponent<Omit<GridBackgroundProps, "ref"> & react.RefAttributes<HTMLElement>>;
6636
7048
  declare const CursorFollower: react.ForwardRefExoticComponent<Omit<CursorFollowerProps, "ref"> & react.RefAttributes<HTMLElement>>;
6637
7049
  declare const Lottie: react.ForwardRefExoticComponent<Omit<LottieProps, "ref"> & react.RefAttributes<HTMLElement>>;
6638
7050
  declare const PageHeader: react.ForwardRefExoticComponent<Omit<PageHeaderProps, "ref"> & react.RefAttributes<HTMLElement>>;
@@ -6648,5 +7060,5 @@ declare const DatePicker: react.ForwardRefExoticComponent<Omit<DatePickerProps,
6648
7060
  declare const TimePicker: react.ForwardRefExoticComponent<Omit<TimePickerProps, "ref"> & react.RefAttributes<HTMLElement>>;
6649
7061
  declare const Calendar: react.ForwardRefExoticComponent<Omit<CalendarProps, "ref"> & react.RefAttributes<HTMLElement>>;
6650
7062
 
6651
- export { Accordion, AdBanner, Alert, AnimationBackground, AnimationText, AppBadge, AudioPlayer, Avatar, Backdrop, Badge, Banner, BottomNavigation, BottomSheet, Breadcrumbs, Button, Calendar, Card, Carousel, Checkbox, Chip, CodeBlock, ColorPicker, Confirm, Container, ContextMenu, Countdown, CursorFollower, DatePicker, Divider, Drawer, Dropdown, Dropzone, EmptyState, FileUploader, FloatingActionButton, Form, Gradient, Grid, GridItem, Image, ImageList, ImagePlaceholder, Indicator, Input, Label, Lightbox, List, Logo, Lottie, MarkdownEditor, Marquee, Masonry, MenuItem, Modal, ModalBody, ModalFooter, ModalHeader, Navbar, OnboardingModal, PageHeader, Pagination, Popover, Progress, ProgressStep, Progressbar, Radio, RandomGradient, RangeSlider, Rating, Reorder, ResizablePanels, ScrollArea, SearchBar, Section, SectionAppDownload, SectionContact, SectionFeature, SectionHero, SegmentControl, Select, Share, Sidebar, Skeleton, Spinner, SplitView, Stack, Stat, Stepper, Table, Tabs, Testimonial, Textarea, TimePicker, Timeline, Toast, Toggle, Toolbar, Tooltip, TopBanner, Tutorial, VideoPlayer, YouTubePlayer, useContextMenu };
6652
- export type { AccordionItemConfig, AccordionProps, AdBannerProps, AlertAction, AlertProps, AnimationBackgroundProps, AnimationTextProps, AppBadgeProps, AudioPlayerProps, AvatarProps, BackdropProps, BadgeProps, BannerAction, BannerProps, BottomNavigationItem, BottomNavigationProps, BottomSheetProps, BreadcrumbItemConfig, BreadcrumbsProps, ButtonProps, CalendarEvent, CalendarProps, CardProps, CarouselItem, CarouselProps, ChipProps, CodeBlockItem, CodeBlockProps, ColorPickerProps, ConfirmProps, ContextMenuItemConfig, ContextMenuProps, CountdownProps, CursorFollowerProps, DatePickerProps, DbEventHandler, DividerProps, DrawerProps, DropdownItemConfig, DropdownProps, DropzoneProps, EmptyStateProps, FileUploaderProps, FloatingActionButtonProps, FormFieldData, FormProps, GradientColor, GradientProps, GradientScheme, GradientTone, ImageListItem, ImageListProps, ImagePlaceholderProps, ImageProps, IndicatorProps, InputProps, LabelProps, LightboxImage, LightboxProps, ListItemConfig, ListProps, LogoProps, LottieProps, MarkdownEditorProps, MarqueeProps, MasonryItem, MasonryProps, MenuItemChildConfig, MenuItemProps, ModalProps, ModalSegmentItem, ModalTabItem, NavbarItem, NavbarProps, NavbarUserProfile, OnboardingModalProps, OnboardingStep, PageHeaderProps, PageHeaderTabItem, PaginationProps, PopoverProps, ProgressProps, ProgressStepItem, ProgressStepProps, RadioProps, RandomGradientProps, RangeSliderProps, RatingProps, ReorderItem, ReorderProps, ResizablePanelsProps, ScrollAreaProps, SearchBarProps, SectionAppDownloadProps, SectionAppDownloadStore, SectionContactAction, SectionContactProps, SectionFeatureAction, SectionFeatureBadge, SectionFeatureProps, SectionHeroButton, SectionHeroProps, SectionProps, SegmentControlProps, SelectProps, SelectionProps, SharePlatform, ShareProps, SidebarItem, SidebarProps, SidebarSection, SidebarUserProfile, SkeletonProps, SpinnerProps, SplitViewProps, StatChange, StatProps, StepperProps, TabItemConfig, TableColumn, TableProps, TabsProps, TestimonialProps, TextareaProps, TimePickerProps, TimelineItem, TimelineProps, ToastProps, ToggleProps, TooltipProps, TopBannerProps, TutorialProps, TutorialStep, UseContextMenuReturn, VideoPlayerProps, WebComponentProps, YouTubePlayerProps };
7063
+ export { Accordion, AdBanner, Alert, AnimationBackground, AnimationText, AppBadge, AudioPlayer, Avatar, Backdrop, Badge, Banner, BottomNavigation, BottomSheet, Breadcrumbs, Button, Calendar, Card, Carousel, Checkbox, Chip, CodeBlock, ColorPicker, Confirm, Container, ContextMenu, Countdown, CursorFollower, DatePicker, Divider, Drawer, Dropdown, Dropzone, EmptyState, FileUploader, FloatingActionButton, Footer, Form, Gradient, Grid, GridBackground, GridItem, Image, ImageList, ImagePlaceholder, Indicator, Input, Label, Lightbox, List, Logo, Lottie, MarkdownEditor, Marquee, Masonry, MenuItem, Modal, ModalBody, ModalFooter, ModalHeader, Navbar, OnboardingModal, PageHeader, Pagination, Popover, Progress, ProgressStep, Progressbar, Radio, RandomGradient, RangeSlider, Rating, Reorder, ResizablePanels, ScrollArea, SearchBar, Section, SectionAppDownload, SectionContact, SectionFeature, SectionHero, SegmentControl, Select, Share, Sidebar, Skeleton, Spinner, SplitView, Stack, Stat, Stepper, Table, Tabs, Testimonial, Textarea, TimePicker, Timeline, Toast, Toggle, Toolbar, Tooltip, TopBanner, Tutorial, VideoPlayer, YouTubePlayer, useContextMenu };
7064
+ export type { AccordionItemConfig, AccordionProps, AdBannerProps, AlertAction, AlertProps, AnimationBackgroundProps, AnimationTextProps, AppBadgeProps, AudioPlayerProps, AvatarProps, BackdropProps, BadgeProps, BannerAction, BannerProps, BottomNavigationItem, BottomNavigationProps, BottomSheetProps, BreadcrumbItemConfig, BreadcrumbsProps, ButtonProps, CalendarEvent, CalendarProps, CardProps, CarouselItem, CarouselProps, ChipProps, CodeBlockItem, CodeBlockProps, ColorPickerProps, ConfirmProps, ContextMenuItemConfig, ContextMenuProps, CountdownProps, CursorFollowerProps, DatePickerProps, DbEventHandler, DividerProps, DrawerProps, DropdownItemConfig, DropdownProps, DropzoneProps, EmptyStateProps, FileUploaderProps, FloatingActionButtonProps, FooterCompanyInfo, FooterFamilySite, FooterLink, FooterLinkColumn, FooterProps, FooterSocialLink, FormFieldData, FormProps, GradientColor, GradientProps, GradientScheme, GradientTone, GridBackgroundProps, ImageListItem, ImageListProps, ImagePlaceholderProps, ImageProps, IndicatorProps, InputProps, LabelProps, LightboxImage, LightboxProps, ListItemConfig, ListProps, LogoProps, LottieProps, MarkdownEditorProps, MarqueeImageItem, MarqueeProps, MasonryItem, MasonryProps, MenuItemChildConfig, MenuItemProps, ModalProps, ModalSegmentItem, ModalTabItem, NavbarItem, NavbarProps, NavbarUserProfile, OnboardingModalProps, OnboardingStep, PageHeaderProps, PageHeaderTabItem, PaginationProps, PopoverProps, ProgressProps, ProgressStepItem, ProgressStepProps, RadioProps, RandomGradientProps, RangeSliderProps, RatingProps, ReorderItem, ReorderProps, ResizablePanelsProps, ScrollAreaProps, SearchBarProps, SectionAppDownloadProps, SectionAppDownloadStore, SectionContactAction, SectionContactProps, SectionFeatureAction, SectionFeatureBadge, SectionFeatureProps, SectionHeroButton, SectionHeroProps, SectionProps, SegmentControlProps, SelectProps, SelectionProps, SharePlatform, ShareProps, SidebarItem, SidebarProps, SidebarSection, SidebarUserProfile, SkeletonProps, SpinnerProps, SplitViewProps, StatChange, StatProps, StepperProps, TabItemConfig, TableColumn, TableProps, TabsProps, TestimonialProps, TextareaProps, TimePickerProps, TimelineItem, TimelineProps, ToastProps, ToggleProps, TooltipProps, TopBannerProps, TutorialProps, TutorialStep, UseContextMenuReturn, VideoPlayerProps, WebComponentProps, YouTubePlayerProps };