@designbasekorea/ui-wc 0.3.0 → 0.4.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.
- package/dist/esm/components/db-accordion.d.ts +2 -0
- package/dist/esm/components/db-accordion.js +1 -1
- package/dist/esm/components/db-breadcrumbs.d.ts +29 -0
- package/dist/esm/components/db-breadcrumbs.js +1 -1
- package/dist/esm/components/db-calendar.js +1 -1
- package/dist/esm/components/db-gantt.d.ts +96 -0
- package/dist/esm/components/db-gantt.js +1 -0
- package/dist/esm/components/db-icons.js +1 -1
- package/dist/esm/components/db-kanban.d.ts +70 -0
- package/dist/esm/components/db-kanban.js +1 -0
- package/dist/esm/components/db-section-app-download.d.ts +0 -2
- package/dist/esm/components/db-section-app-download.js +1 -1
- package/dist/esm/components/db-section-contact.d.ts +1 -3
- package/dist/esm/components/db-section-contact.js +1 -1
- package/dist/esm/components/db-section-cta.d.ts +24 -0
- package/dist/esm/components/db-section-cta.js +1 -0
- package/dist/esm/components/db-section-faq.d.ts +20 -0
- package/dist/esm/components/db-section-faq.js +1 -0
- package/dist/esm/components/db-section-feature-grid.d.ts +20 -0
- package/dist/esm/components/db-section-feature-grid.js +1 -0
- package/dist/esm/components/db-section-feature.d.ts +2 -2
- package/dist/esm/components/db-section-feature.js +1 -1
- package/dist/esm/components/db-section-logo-cloud.d.ts +20 -0
- package/dist/esm/components/db-section-logo-cloud.js +1 -0
- package/dist/esm/components/db-section-pricing.d.ts +20 -0
- package/dist/esm/components/db-section-pricing.js +1 -0
- package/dist/esm/components/db-section-stats.d.ts +20 -0
- package/dist/esm/components/db-section-stats.js +1 -0
- package/dist/esm/components/db-section-testimonials.d.ts +34 -0
- package/dist/esm/components/db-section-testimonials.js +1 -0
- package/dist/esm/components/marketing-block-host-utils.js +1 -0
- package/dist/esm/components/section-block-header-utils.js +1 -0
- package/dist/esm/index.d.ts +9 -0
- package/dist/esm/index.js +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.css +1 -1
- package/dist/index.d.ts +349 -9
- package/dist/index.esm.js +1 -1
- package/dist/react/index.cjs +1 -1
- package/dist/react/index.d.ts +739 -13
- package/dist/react/index.esm.js +1 -1
- package/package.json +1 -1
- /package/dist/chunks/{lottie-1e5700ad.js → lottie-3b3dac01.js} +0 -0
package/dist/react/index.d.ts
CHANGED
|
@@ -522,6 +522,8 @@ declare global {
|
|
|
522
522
|
interface AccordionItemConfig$1 {
|
|
523
523
|
id?: string;
|
|
524
524
|
title: string;
|
|
525
|
+
/** 슬롯(content-N)이 없을 때 본문으로 렌더되는 텍스트 */
|
|
526
|
+
content?: string;
|
|
525
527
|
disabled?: boolean;
|
|
526
528
|
itemType?: 'icon' | 'number' | 'question' | 'none';
|
|
527
529
|
icon?: string;
|
|
@@ -763,6 +765,14 @@ declare global {
|
|
|
763
765
|
}
|
|
764
766
|
}
|
|
765
767
|
|
|
768
|
+
interface BreadcrumbMenuItem {
|
|
769
|
+
id?: string;
|
|
770
|
+
label: string;
|
|
771
|
+
href?: string;
|
|
772
|
+
active?: boolean;
|
|
773
|
+
disabled?: boolean;
|
|
774
|
+
icon?: string;
|
|
775
|
+
}
|
|
766
776
|
interface BreadcrumbItem {
|
|
767
777
|
id?: string;
|
|
768
778
|
label: string;
|
|
@@ -770,14 +780,35 @@ interface BreadcrumbItem {
|
|
|
770
780
|
active?: boolean;
|
|
771
781
|
disabled?: boolean;
|
|
772
782
|
icon?: string;
|
|
783
|
+
menu?: BreadcrumbMenuItem[];
|
|
773
784
|
}
|
|
774
785
|
declare class DbBreadcrumbs extends HTMLElement {
|
|
775
786
|
static get observedAttributes(): string[];
|
|
787
|
+
private openMenuId;
|
|
788
|
+
private onDocumentMouseDown;
|
|
789
|
+
private onDocumentKeyDown;
|
|
776
790
|
get items(): BreadcrumbItem[] | string;
|
|
777
791
|
set items(value: BreadcrumbItem[] | string);
|
|
778
792
|
connectedCallback(): void;
|
|
793
|
+
disconnectedCallback(): void;
|
|
779
794
|
attributeChangedCallback(): void;
|
|
795
|
+
private get menuDropdown();
|
|
796
|
+
private get maxLabelLength();
|
|
797
|
+
private get resolvedVariant();
|
|
798
|
+
private itemId;
|
|
799
|
+
private menuItemId;
|
|
780
800
|
private visibleItems;
|
|
801
|
+
private shouldUseDropdown;
|
|
802
|
+
private closeMenu;
|
|
803
|
+
private openMenu;
|
|
804
|
+
private toggleMenu;
|
|
805
|
+
private addGlobalListeners;
|
|
806
|
+
private removeGlobalListeners;
|
|
807
|
+
private updateDropdownStates;
|
|
808
|
+
private createLabel;
|
|
809
|
+
private createMenuItem;
|
|
810
|
+
private createDropdownItem;
|
|
811
|
+
private createStandardItem;
|
|
781
812
|
private render;
|
|
782
813
|
}
|
|
783
814
|
declare global {
|
|
@@ -2731,6 +2762,168 @@ declare global {
|
|
|
2731
2762
|
}
|
|
2732
2763
|
}
|
|
2733
2764
|
|
|
2765
|
+
type DbKanbanPriority = 'low' | 'medium' | 'high' | 'urgent';
|
|
2766
|
+
type DbKanbanTag = {
|
|
2767
|
+
label: string;
|
|
2768
|
+
variant?: 'default' | 'primary' | 'success' | 'warning' | 'danger' | 'info' | 'neutral';
|
|
2769
|
+
};
|
|
2770
|
+
type DbKanbanAssignee = {
|
|
2771
|
+
name: string;
|
|
2772
|
+
initials?: string;
|
|
2773
|
+
avatar?: string;
|
|
2774
|
+
};
|
|
2775
|
+
type DbKanbanCard = {
|
|
2776
|
+
id: string;
|
|
2777
|
+
title: string;
|
|
2778
|
+
description?: string;
|
|
2779
|
+
tags?: DbKanbanTag[];
|
|
2780
|
+
assignee?: DbKanbanAssignee;
|
|
2781
|
+
priority?: DbKanbanPriority;
|
|
2782
|
+
dueDate?: string;
|
|
2783
|
+
disabled?: boolean;
|
|
2784
|
+
};
|
|
2785
|
+
type DbKanbanColumn = {
|
|
2786
|
+
id: string;
|
|
2787
|
+
title: string;
|
|
2788
|
+
cards: DbKanbanCard[];
|
|
2789
|
+
limit?: number;
|
|
2790
|
+
color?: string;
|
|
2791
|
+
};
|
|
2792
|
+
declare class DbKanban extends HTMLElement {
|
|
2793
|
+
private dragState;
|
|
2794
|
+
private dropTarget;
|
|
2795
|
+
static get observedAttributes(): string[];
|
|
2796
|
+
get columns(): DbKanbanColumn[];
|
|
2797
|
+
set columns(value: DbKanbanColumn[] | string);
|
|
2798
|
+
connectedCallback(): void;
|
|
2799
|
+
disconnectedCallback(): void;
|
|
2800
|
+
attributeChangedCallback(): void;
|
|
2801
|
+
private getBool;
|
|
2802
|
+
private getOption;
|
|
2803
|
+
private emitChange;
|
|
2804
|
+
private emitCardMove;
|
|
2805
|
+
private findCardLocation;
|
|
2806
|
+
private getAdjustedDropIndex;
|
|
2807
|
+
private isValidDropTarget;
|
|
2808
|
+
private moveCard;
|
|
2809
|
+
private setDropTarget;
|
|
2810
|
+
private resetDragState;
|
|
2811
|
+
private updateDragClasses;
|
|
2812
|
+
private getDropIndexFromPointer;
|
|
2813
|
+
private getDropIndexFromColumnPointer;
|
|
2814
|
+
private commitDrop;
|
|
2815
|
+
private handleBoardDragOver;
|
|
2816
|
+
private handleBoardDrop;
|
|
2817
|
+
private formatDueDate;
|
|
2818
|
+
private getInitials;
|
|
2819
|
+
private createTag;
|
|
2820
|
+
private createPriorityBadge;
|
|
2821
|
+
private createAssignee;
|
|
2822
|
+
private bindCardDrag;
|
|
2823
|
+
private createCard;
|
|
2824
|
+
private createColumn;
|
|
2825
|
+
private render;
|
|
2826
|
+
}
|
|
2827
|
+
declare global {
|
|
2828
|
+
interface HTMLElementTagNameMap {
|
|
2829
|
+
'db-kanban': DbKanban;
|
|
2830
|
+
}
|
|
2831
|
+
}
|
|
2832
|
+
|
|
2833
|
+
type DbGanttAssignee = {
|
|
2834
|
+
name: string;
|
|
2835
|
+
initials?: string;
|
|
2836
|
+
avatar?: string;
|
|
2837
|
+
};
|
|
2838
|
+
type DbGanttItemStatus = 'on-track' | 'at-risk' | 'delayed' | 'completed';
|
|
2839
|
+
type DbGanttItem = {
|
|
2840
|
+
id: string;
|
|
2841
|
+
rowId: string;
|
|
2842
|
+
title: string;
|
|
2843
|
+
startDate: string;
|
|
2844
|
+
endDate: string;
|
|
2845
|
+
color?: string;
|
|
2846
|
+
assignee?: DbGanttAssignee;
|
|
2847
|
+
progress?: number;
|
|
2848
|
+
status?: DbGanttItemStatus;
|
|
2849
|
+
disabled?: boolean;
|
|
2850
|
+
};
|
|
2851
|
+
type DbGanttRow = {
|
|
2852
|
+
id: string;
|
|
2853
|
+
label: string;
|
|
2854
|
+
groupId?: string;
|
|
2855
|
+
};
|
|
2856
|
+
type DbGanttGroup = {
|
|
2857
|
+
id: string;
|
|
2858
|
+
title: string;
|
|
2859
|
+
color?: string;
|
|
2860
|
+
};
|
|
2861
|
+
declare class DbGantt extends HTMLElement {
|
|
2862
|
+
private collapsedGroups;
|
|
2863
|
+
private dragState;
|
|
2864
|
+
private reorderState;
|
|
2865
|
+
private reorderDropIndex;
|
|
2866
|
+
private suppressRender;
|
|
2867
|
+
private didDrag;
|
|
2868
|
+
static get observedAttributes(): string[];
|
|
2869
|
+
get groups(): DbGanttGroup[];
|
|
2870
|
+
set groups(value: DbGanttGroup[] | string);
|
|
2871
|
+
get rows(): DbGanttRow[];
|
|
2872
|
+
set rows(value: DbGanttRow[] | string);
|
|
2873
|
+
get items(): DbGanttItem[];
|
|
2874
|
+
set items(value: DbGanttItem[] | string);
|
|
2875
|
+
connectedCallback(): void;
|
|
2876
|
+
disconnectedCallback(): void;
|
|
2877
|
+
attributeChangedCallback(): void;
|
|
2878
|
+
private parseJson;
|
|
2879
|
+
private getBool;
|
|
2880
|
+
private getNumber;
|
|
2881
|
+
private getOption;
|
|
2882
|
+
private getLocale;
|
|
2883
|
+
private getWeekdays;
|
|
2884
|
+
private getViewRange;
|
|
2885
|
+
private getTodayDate;
|
|
2886
|
+
private getDateColumns;
|
|
2887
|
+
private getVisibleRows;
|
|
2888
|
+
private getMonthSegments;
|
|
2889
|
+
private getInitials;
|
|
2890
|
+
private updateItem;
|
|
2891
|
+
private emitItemsChange;
|
|
2892
|
+
private applyBarGeometry;
|
|
2893
|
+
private handlePointerMove;
|
|
2894
|
+
private handlePointerUp;
|
|
2895
|
+
private startBarDrag;
|
|
2896
|
+
private canReorder;
|
|
2897
|
+
private createDragHandle;
|
|
2898
|
+
private getGroupIndex;
|
|
2899
|
+
private getRowScope;
|
|
2900
|
+
private getRowIndexInScope;
|
|
2901
|
+
private getReorderTargets;
|
|
2902
|
+
private startReorderDrag;
|
|
2903
|
+
private updateReorderDropTarget;
|
|
2904
|
+
private clearReorderIndicators;
|
|
2905
|
+
private finishReorderDrag;
|
|
2906
|
+
private emitStructureChange;
|
|
2907
|
+
private reorderGroups;
|
|
2908
|
+
private reorderRows;
|
|
2909
|
+
private createGroupBadge;
|
|
2910
|
+
private createGroupChevron;
|
|
2911
|
+
private createAssignee;
|
|
2912
|
+
private createStatusIcon;
|
|
2913
|
+
private deriveSummaryColor;
|
|
2914
|
+
private getGroupSummary;
|
|
2915
|
+
private applyBarTone;
|
|
2916
|
+
private createGroupSummaryBar;
|
|
2917
|
+
private createBar;
|
|
2918
|
+
private toggleGroup;
|
|
2919
|
+
private render;
|
|
2920
|
+
}
|
|
2921
|
+
declare global {
|
|
2922
|
+
interface HTMLElementTagNameMap {
|
|
2923
|
+
'db-gantt': DbGantt;
|
|
2924
|
+
}
|
|
2925
|
+
}
|
|
2926
|
+
|
|
2734
2927
|
declare class DbResizablePanels extends HTMLElement {
|
|
2735
2928
|
private container?;
|
|
2736
2929
|
private contentEl?;
|
|
@@ -3087,8 +3280,8 @@ interface FeatureAction {
|
|
|
3087
3280
|
declare class DbSectionFeature extends HTMLElement {
|
|
3088
3281
|
static get observedAttributes(): string[];
|
|
3089
3282
|
private built;
|
|
3090
|
-
private
|
|
3091
|
-
private
|
|
3283
|
+
private innerEl?;
|
|
3284
|
+
private contentEl?;
|
|
3092
3285
|
private badgeEl?;
|
|
3093
3286
|
private headlineEl?;
|
|
3094
3287
|
private subtitleEl?;
|
|
@@ -3133,9 +3326,7 @@ declare global {
|
|
|
3133
3326
|
declare class DbSectionContact extends HTMLElement {
|
|
3134
3327
|
static get observedAttributes(): string[];
|
|
3135
3328
|
private built;
|
|
3136
|
-
private
|
|
3137
|
-
private wrapEl?;
|
|
3138
|
-
private contactWrapEl?;
|
|
3329
|
+
private innerEl?;
|
|
3139
3330
|
private titleEl?;
|
|
3140
3331
|
private descriptionEl?;
|
|
3141
3332
|
private actionEl?;
|
|
@@ -3162,8 +3353,6 @@ interface DownloadStore {
|
|
|
3162
3353
|
declare class DbSectionAppDownload extends HTMLElement {
|
|
3163
3354
|
static get observedAttributes(): string[];
|
|
3164
3355
|
private built;
|
|
3165
|
-
private sectionEl?;
|
|
3166
|
-
private wrapEl?;
|
|
3167
3356
|
private innerEl?;
|
|
3168
3357
|
private titleEl?;
|
|
3169
3358
|
private descriptionEl?;
|
|
@@ -3182,6 +3371,157 @@ declare global {
|
|
|
3182
3371
|
}
|
|
3183
3372
|
}
|
|
3184
3373
|
|
|
3374
|
+
declare class DbSectionCta extends HTMLElement {
|
|
3375
|
+
static get observedAttributes(): string[];
|
|
3376
|
+
private built;
|
|
3377
|
+
private wrapEl?;
|
|
3378
|
+
private headerEl?;
|
|
3379
|
+
private badgeEl?;
|
|
3380
|
+
private headlineEl?;
|
|
3381
|
+
private subtitleEl?;
|
|
3382
|
+
private descriptionEl?;
|
|
3383
|
+
private actionsEl?;
|
|
3384
|
+
connectedCallback(): void;
|
|
3385
|
+
attributeChangedCallback(): void;
|
|
3386
|
+
private parseBadge;
|
|
3387
|
+
private parseButtons;
|
|
3388
|
+
private build;
|
|
3389
|
+
private updateUI;
|
|
3390
|
+
}
|
|
3391
|
+
declare global {
|
|
3392
|
+
interface HTMLElementTagNameMap {
|
|
3393
|
+
'db-section-cta': DbSectionCta;
|
|
3394
|
+
}
|
|
3395
|
+
}
|
|
3396
|
+
|
|
3397
|
+
declare class DbSectionTestimonials extends HTMLElement {
|
|
3398
|
+
static get observedAttributes(): string[];
|
|
3399
|
+
private built;
|
|
3400
|
+
private carouselIndex;
|
|
3401
|
+
private innerEl?;
|
|
3402
|
+
private headerEl?;
|
|
3403
|
+
private contentEl?;
|
|
3404
|
+
private carouselViewport?;
|
|
3405
|
+
private carouselTrack?;
|
|
3406
|
+
private carouselIndicator?;
|
|
3407
|
+
private resizeObserver?;
|
|
3408
|
+
connectedCallback(): void;
|
|
3409
|
+
disconnectedCallback(): void;
|
|
3410
|
+
attributeChangedCallback(): void;
|
|
3411
|
+
private parseItems;
|
|
3412
|
+
private parseBadge;
|
|
3413
|
+
private buildHeader;
|
|
3414
|
+
private build;
|
|
3415
|
+
private createTestimonialEl;
|
|
3416
|
+
private updateHeader;
|
|
3417
|
+
private clampCarouselIndex;
|
|
3418
|
+
private updateCarouselTransform;
|
|
3419
|
+
private goToCarouselSlide;
|
|
3420
|
+
private renderGrid;
|
|
3421
|
+
private renderCarousel;
|
|
3422
|
+
private updateUI;
|
|
3423
|
+
}
|
|
3424
|
+
declare global {
|
|
3425
|
+
interface HTMLElementTagNameMap {
|
|
3426
|
+
'db-section-testimonials': DbSectionTestimonials;
|
|
3427
|
+
}
|
|
3428
|
+
}
|
|
3429
|
+
|
|
3430
|
+
declare class DbSectionFeatureGrid extends HTMLElement {
|
|
3431
|
+
static get observedAttributes(): string[];
|
|
3432
|
+
private built;
|
|
3433
|
+
private innerEl?;
|
|
3434
|
+
private headerEl?;
|
|
3435
|
+
private gridEl?;
|
|
3436
|
+
connectedCallback(): void;
|
|
3437
|
+
attributeChangedCallback(): void;
|
|
3438
|
+
private parseItems;
|
|
3439
|
+
private parseBadge;
|
|
3440
|
+
private build;
|
|
3441
|
+
private updateUI;
|
|
3442
|
+
}
|
|
3443
|
+
declare global {
|
|
3444
|
+
interface HTMLElementTagNameMap {
|
|
3445
|
+
'db-section-feature-grid': DbSectionFeatureGrid;
|
|
3446
|
+
}
|
|
3447
|
+
}
|
|
3448
|
+
|
|
3449
|
+
declare class DbSectionLogoCloud extends HTMLElement {
|
|
3450
|
+
static get observedAttributes(): string[];
|
|
3451
|
+
private built;
|
|
3452
|
+
private innerEl?;
|
|
3453
|
+
private headerEl?;
|
|
3454
|
+
private contentEl?;
|
|
3455
|
+
connectedCallback(): void;
|
|
3456
|
+
attributeChangedCallback(): void;
|
|
3457
|
+
private parseLogos;
|
|
3458
|
+
private parseBadge;
|
|
3459
|
+
private build;
|
|
3460
|
+
private updateUI;
|
|
3461
|
+
}
|
|
3462
|
+
declare global {
|
|
3463
|
+
interface HTMLElementTagNameMap {
|
|
3464
|
+
'db-section-logo-cloud': DbSectionLogoCloud;
|
|
3465
|
+
}
|
|
3466
|
+
}
|
|
3467
|
+
|
|
3468
|
+
declare class DbSectionStats extends HTMLElement {
|
|
3469
|
+
static get observedAttributes(): string[];
|
|
3470
|
+
private built;
|
|
3471
|
+
private innerEl?;
|
|
3472
|
+
private headerEl?;
|
|
3473
|
+
private gridEl?;
|
|
3474
|
+
connectedCallback(): void;
|
|
3475
|
+
attributeChangedCallback(): void;
|
|
3476
|
+
private parseItems;
|
|
3477
|
+
private parseBadge;
|
|
3478
|
+
private build;
|
|
3479
|
+
private updateUI;
|
|
3480
|
+
}
|
|
3481
|
+
declare global {
|
|
3482
|
+
interface HTMLElementTagNameMap {
|
|
3483
|
+
'db-section-stats': DbSectionStats;
|
|
3484
|
+
}
|
|
3485
|
+
}
|
|
3486
|
+
|
|
3487
|
+
declare class DbSectionFaq extends HTMLElement {
|
|
3488
|
+
static get observedAttributes(): string[];
|
|
3489
|
+
private built;
|
|
3490
|
+
private innerEl?;
|
|
3491
|
+
private headerEl?;
|
|
3492
|
+
private accordionEl?;
|
|
3493
|
+
connectedCallback(): void;
|
|
3494
|
+
attributeChangedCallback(): void;
|
|
3495
|
+
private parseItems;
|
|
3496
|
+
private parseBadge;
|
|
3497
|
+
private build;
|
|
3498
|
+
private updateUI;
|
|
3499
|
+
}
|
|
3500
|
+
declare global {
|
|
3501
|
+
interface HTMLElementTagNameMap {
|
|
3502
|
+
'db-section-faq': DbSectionFaq;
|
|
3503
|
+
}
|
|
3504
|
+
}
|
|
3505
|
+
|
|
3506
|
+
declare class DbSectionPricing extends HTMLElement {
|
|
3507
|
+
static get observedAttributes(): string[];
|
|
3508
|
+
private built;
|
|
3509
|
+
private innerEl?;
|
|
3510
|
+
private headerEl?;
|
|
3511
|
+
private gridEl?;
|
|
3512
|
+
connectedCallback(): void;
|
|
3513
|
+
attributeChangedCallback(): void;
|
|
3514
|
+
private parsePlans;
|
|
3515
|
+
private parseBadge;
|
|
3516
|
+
private build;
|
|
3517
|
+
private updateUI;
|
|
3518
|
+
}
|
|
3519
|
+
declare global {
|
|
3520
|
+
interface HTMLElementTagNameMap {
|
|
3521
|
+
'db-section-pricing': DbSectionPricing;
|
|
3522
|
+
}
|
|
3523
|
+
}
|
|
3524
|
+
|
|
3185
3525
|
declare class DbMarquee extends HTMLElement {
|
|
3186
3526
|
static get observedAttributes(): string[];
|
|
3187
3527
|
private built;
|
|
@@ -5698,6 +6038,14 @@ type TabsProps = WebComponentProps & {
|
|
|
5698
6038
|
id: string;
|
|
5699
6039
|
}>;
|
|
5700
6040
|
};
|
|
6041
|
+
type BreadcrumbMenuItemConfig = {
|
|
6042
|
+
id?: string;
|
|
6043
|
+
label: string;
|
|
6044
|
+
href?: string;
|
|
6045
|
+
active?: boolean;
|
|
6046
|
+
disabled?: boolean;
|
|
6047
|
+
icon?: string;
|
|
6048
|
+
};
|
|
5701
6049
|
type BreadcrumbItemConfig = {
|
|
5702
6050
|
id?: string;
|
|
5703
6051
|
label: string;
|
|
@@ -5705,24 +6053,34 @@ type BreadcrumbItemConfig = {
|
|
|
5705
6053
|
active?: boolean;
|
|
5706
6054
|
disabled?: boolean;
|
|
5707
6055
|
icon?: string;
|
|
6056
|
+
menu?: BreadcrumbMenuItemConfig[];
|
|
5708
6057
|
};
|
|
5709
6058
|
type BreadcrumbsProps = WebComponentProps & {
|
|
5710
6059
|
items?: BreadcrumbItemConfig[] | string;
|
|
5711
6060
|
size?: 's' | 'm' | 'l';
|
|
5712
|
-
|
|
5713
|
-
|
|
5714
|
-
|
|
5715
|
-
variant?: 'default' | 'contained' | 'underlined' | 'minimal' | 'outlined';
|
|
6061
|
+
variant?: 'default' | 'contained' | 'underlined';
|
|
6062
|
+
/** @deprecated variant 사용 */
|
|
6063
|
+
breadcrumbStyle?: 'default' | 'contained' | 'underlined';
|
|
5716
6064
|
maxItems?: number;
|
|
6065
|
+
menuDropdown?: boolean;
|
|
6066
|
+
maxLabelLength?: number;
|
|
5717
6067
|
onItemClick?: DbEventHandler<{
|
|
5718
6068
|
item: BreadcrumbItemConfig;
|
|
5719
6069
|
}>;
|
|
6070
|
+
onMenuItemClick?: DbEventHandler<{
|
|
6071
|
+
menuItem: BreadcrumbMenuItemConfig;
|
|
6072
|
+
parentItem: BreadcrumbItemConfig;
|
|
6073
|
+
}>;
|
|
5720
6074
|
onClick?: DbEventHandler<{
|
|
5721
6075
|
item: BreadcrumbItemConfig;
|
|
5722
6076
|
}>;
|
|
5723
6077
|
onDbClick?: DbEventHandler<{
|
|
5724
6078
|
item: BreadcrumbItemConfig;
|
|
5725
6079
|
}>;
|
|
6080
|
+
onDbMenuClick?: DbEventHandler<{
|
|
6081
|
+
menuItem: BreadcrumbMenuItemConfig;
|
|
6082
|
+
parentItem: BreadcrumbItemConfig;
|
|
6083
|
+
}>;
|
|
5726
6084
|
};
|
|
5727
6085
|
type PaginationProps = WebComponentProps & {
|
|
5728
6086
|
currentPage?: number;
|
|
@@ -6247,6 +6605,194 @@ type ReorderProps = WebComponentProps & {
|
|
|
6247
6605
|
items: ReorderItem[];
|
|
6248
6606
|
}>;
|
|
6249
6607
|
};
|
|
6608
|
+
type KanbanTag = {
|
|
6609
|
+
label: string;
|
|
6610
|
+
variant?: 'default' | 'primary' | 'success' | 'warning' | 'danger' | 'info' | 'neutral';
|
|
6611
|
+
};
|
|
6612
|
+
type KanbanAssignee = {
|
|
6613
|
+
name: string;
|
|
6614
|
+
initials?: string;
|
|
6615
|
+
avatar?: string;
|
|
6616
|
+
};
|
|
6617
|
+
type KanbanCard = {
|
|
6618
|
+
id: string;
|
|
6619
|
+
title: string;
|
|
6620
|
+
description?: string;
|
|
6621
|
+
tags?: KanbanTag[];
|
|
6622
|
+
assignee?: KanbanAssignee;
|
|
6623
|
+
priority?: 'low' | 'medium' | 'high' | 'urgent';
|
|
6624
|
+
dueDate?: string;
|
|
6625
|
+
disabled?: boolean;
|
|
6626
|
+
};
|
|
6627
|
+
type KanbanColumn = {
|
|
6628
|
+
id: string;
|
|
6629
|
+
title: string;
|
|
6630
|
+
cards: KanbanCard[];
|
|
6631
|
+
limit?: number;
|
|
6632
|
+
color?: string;
|
|
6633
|
+
};
|
|
6634
|
+
type KanbanProps = WebComponentProps & {
|
|
6635
|
+
columns?: KanbanColumn[] | string;
|
|
6636
|
+
size?: 's' | 'm' | 'l';
|
|
6637
|
+
draggable?: boolean;
|
|
6638
|
+
showColumnCount?: boolean;
|
|
6639
|
+
showAddCard?: boolean;
|
|
6640
|
+
allowCrossColumn?: boolean;
|
|
6641
|
+
fullWidth?: boolean;
|
|
6642
|
+
disabled?: boolean;
|
|
6643
|
+
emptyColumnText?: string;
|
|
6644
|
+
onChange?: DbEventHandler<{
|
|
6645
|
+
columns: KanbanColumn[];
|
|
6646
|
+
}>;
|
|
6647
|
+
onCardMove?: DbEventHandler<{
|
|
6648
|
+
cardId: string;
|
|
6649
|
+
fromColumnId: string;
|
|
6650
|
+
toColumnId: string;
|
|
6651
|
+
fromIndex: number;
|
|
6652
|
+
toIndex: number;
|
|
6653
|
+
columns: KanbanColumn[];
|
|
6654
|
+
}>;
|
|
6655
|
+
onCardClick?: DbEventHandler<{
|
|
6656
|
+
card: KanbanCard;
|
|
6657
|
+
columnId: string;
|
|
6658
|
+
}>;
|
|
6659
|
+
onAddCard?: DbEventHandler<{
|
|
6660
|
+
columnId: string;
|
|
6661
|
+
}>;
|
|
6662
|
+
onDbChange?: DbEventHandler<{
|
|
6663
|
+
columns: KanbanColumn[];
|
|
6664
|
+
}>;
|
|
6665
|
+
onDbCardMove?: DbEventHandler<{
|
|
6666
|
+
cardId: string;
|
|
6667
|
+
fromColumnId: string;
|
|
6668
|
+
toColumnId: string;
|
|
6669
|
+
fromIndex: number;
|
|
6670
|
+
toIndex: number;
|
|
6671
|
+
columns: KanbanColumn[];
|
|
6672
|
+
}>;
|
|
6673
|
+
onDbCardClick?: DbEventHandler<{
|
|
6674
|
+
card: KanbanCard;
|
|
6675
|
+
columnId: string;
|
|
6676
|
+
}>;
|
|
6677
|
+
onDbAddCard?: DbEventHandler<{
|
|
6678
|
+
columnId: string;
|
|
6679
|
+
}>;
|
|
6680
|
+
};
|
|
6681
|
+
type GanttAssignee = {
|
|
6682
|
+
name: string;
|
|
6683
|
+
initials?: string;
|
|
6684
|
+
avatar?: string;
|
|
6685
|
+
};
|
|
6686
|
+
type GanttItem = {
|
|
6687
|
+
id: string;
|
|
6688
|
+
rowId: string;
|
|
6689
|
+
title: string;
|
|
6690
|
+
startDate: string;
|
|
6691
|
+
endDate: string;
|
|
6692
|
+
color?: string;
|
|
6693
|
+
assignee?: GanttAssignee;
|
|
6694
|
+
progress?: number;
|
|
6695
|
+
status?: 'on-track' | 'at-risk' | 'delayed' | 'completed';
|
|
6696
|
+
disabled?: boolean;
|
|
6697
|
+
};
|
|
6698
|
+
type GanttRow = {
|
|
6699
|
+
id: string;
|
|
6700
|
+
label: string;
|
|
6701
|
+
groupId?: string;
|
|
6702
|
+
};
|
|
6703
|
+
type GanttGroup = {
|
|
6704
|
+
id: string;
|
|
6705
|
+
title: string;
|
|
6706
|
+
color?: string;
|
|
6707
|
+
};
|
|
6708
|
+
type GanttProps = WebComponentProps & {
|
|
6709
|
+
groups?: GanttGroup[] | string;
|
|
6710
|
+
rows?: GanttRow[] | string;
|
|
6711
|
+
items?: GanttItem[] | string;
|
|
6712
|
+
startDate?: string;
|
|
6713
|
+
endDate?: string;
|
|
6714
|
+
today?: string;
|
|
6715
|
+
scale?: 'day' | 'week';
|
|
6716
|
+
cellWidth?: number;
|
|
6717
|
+
showWeekends?: boolean;
|
|
6718
|
+
showToday?: boolean;
|
|
6719
|
+
sidebarLabel?: string;
|
|
6720
|
+
fullWidth?: boolean;
|
|
6721
|
+
disabled?: boolean;
|
|
6722
|
+
draggable?: boolean;
|
|
6723
|
+
reorderable?: boolean;
|
|
6724
|
+
locale?: string;
|
|
6725
|
+
onItemClick?: DbEventHandler<{
|
|
6726
|
+
item: GanttItem;
|
|
6727
|
+
}>;
|
|
6728
|
+
onItemChange?: DbEventHandler<{
|
|
6729
|
+
item?: GanttItem;
|
|
6730
|
+
items: GanttItem[];
|
|
6731
|
+
action: string;
|
|
6732
|
+
}>;
|
|
6733
|
+
onChange?: DbEventHandler<{
|
|
6734
|
+
groups?: GanttGroup[];
|
|
6735
|
+
rows?: GanttRow[];
|
|
6736
|
+
items: GanttItem[];
|
|
6737
|
+
}>;
|
|
6738
|
+
onRowClick?: DbEventHandler<{
|
|
6739
|
+
row: GanttRow;
|
|
6740
|
+
}>;
|
|
6741
|
+
onRowReorder?: DbEventHandler<{
|
|
6742
|
+
rowId: string;
|
|
6743
|
+
groupId?: string;
|
|
6744
|
+
fromIndex: number;
|
|
6745
|
+
toIndex: number;
|
|
6746
|
+
groups: GanttGroup[];
|
|
6747
|
+
rows: GanttRow[];
|
|
6748
|
+
}>;
|
|
6749
|
+
onGroupReorder?: DbEventHandler<{
|
|
6750
|
+
groupId: string;
|
|
6751
|
+
fromIndex: number;
|
|
6752
|
+
toIndex: number;
|
|
6753
|
+
groups: GanttGroup[];
|
|
6754
|
+
rows: GanttRow[];
|
|
6755
|
+
}>;
|
|
6756
|
+
onGroupToggle?: DbEventHandler<{
|
|
6757
|
+
groupId: string;
|
|
6758
|
+
collapsed: boolean;
|
|
6759
|
+
}>;
|
|
6760
|
+
onDbItemClick?: DbEventHandler<{
|
|
6761
|
+
item: GanttItem;
|
|
6762
|
+
}>;
|
|
6763
|
+
onDbItemChange?: DbEventHandler<{
|
|
6764
|
+
item?: GanttItem;
|
|
6765
|
+
items: GanttItem[];
|
|
6766
|
+
action: string;
|
|
6767
|
+
}>;
|
|
6768
|
+
onDbChange?: DbEventHandler<{
|
|
6769
|
+
groups?: GanttGroup[];
|
|
6770
|
+
rows?: GanttRow[];
|
|
6771
|
+
items: GanttItem[];
|
|
6772
|
+
}>;
|
|
6773
|
+
onDbRowClick?: DbEventHandler<{
|
|
6774
|
+
row: GanttRow;
|
|
6775
|
+
}>;
|
|
6776
|
+
onDbRowReorder?: DbEventHandler<{
|
|
6777
|
+
rowId: string;
|
|
6778
|
+
groupId?: string;
|
|
6779
|
+
fromIndex: number;
|
|
6780
|
+
toIndex: number;
|
|
6781
|
+
groups: GanttGroup[];
|
|
6782
|
+
rows: GanttRow[];
|
|
6783
|
+
}>;
|
|
6784
|
+
onDbGroupReorder?: DbEventHandler<{
|
|
6785
|
+
groupId: string;
|
|
6786
|
+
fromIndex: number;
|
|
6787
|
+
toIndex: number;
|
|
6788
|
+
groups: GanttGroup[];
|
|
6789
|
+
rows: GanttRow[];
|
|
6790
|
+
}>;
|
|
6791
|
+
onDbGroupToggle?: DbEventHandler<{
|
|
6792
|
+
groupId: string;
|
|
6793
|
+
collapsed: boolean;
|
|
6794
|
+
}>;
|
|
6795
|
+
};
|
|
6250
6796
|
type CarouselItem = {
|
|
6251
6797
|
id: string;
|
|
6252
6798
|
title?: string;
|
|
@@ -6713,6 +7259,177 @@ type SectionAppDownloadProps = WebComponentProps & {
|
|
|
6713
7259
|
fullHeight?: boolean;
|
|
6714
7260
|
overflowVisible?: boolean;
|
|
6715
7261
|
};
|
|
7262
|
+
type SectionBlockBadge = {
|
|
7263
|
+
text: string;
|
|
7264
|
+
variant?: string;
|
|
7265
|
+
style?: string;
|
|
7266
|
+
size?: string;
|
|
7267
|
+
};
|
|
7268
|
+
type SectionCtaButton = {
|
|
7269
|
+
text: string;
|
|
7270
|
+
variant?: string;
|
|
7271
|
+
size?: string;
|
|
7272
|
+
href?: string;
|
|
7273
|
+
};
|
|
7274
|
+
type SectionCtaProps = WebComponentProps & {
|
|
7275
|
+
title?: string;
|
|
7276
|
+
headline?: string;
|
|
7277
|
+
subtitle?: string;
|
|
7278
|
+
description?: string;
|
|
7279
|
+
badge?: SectionBlockBadge | string;
|
|
7280
|
+
buttons?: SectionCtaButton[] | string;
|
|
7281
|
+
variant?: 'default' | 'banner' | 'card';
|
|
7282
|
+
theme?: 'light' | 'dark' | 'gradient' | 'tinted';
|
|
7283
|
+
align?: 'left' | 'center';
|
|
7284
|
+
contentPadding?: 's' | 'm' | 'l';
|
|
7285
|
+
size?: 's' | 'm' | 'l' | 'xl';
|
|
7286
|
+
fullWidth?: boolean;
|
|
7287
|
+
fullHeight?: boolean;
|
|
7288
|
+
overflowVisible?: boolean;
|
|
7289
|
+
onAction?: DbEventHandler<{
|
|
7290
|
+
action: SectionCtaButton;
|
|
7291
|
+
}>;
|
|
7292
|
+
onDbAction?: DbEventHandler<{
|
|
7293
|
+
action: SectionCtaButton;
|
|
7294
|
+
}>;
|
|
7295
|
+
};
|
|
7296
|
+
type SectionTestimonialItem = {
|
|
7297
|
+
quote: string;
|
|
7298
|
+
author: string;
|
|
7299
|
+
role?: string;
|
|
7300
|
+
company?: string;
|
|
7301
|
+
avatar?: string;
|
|
7302
|
+
rating?: number;
|
|
7303
|
+
};
|
|
7304
|
+
type SectionTestimonialsProps = WebComponentProps & {
|
|
7305
|
+
headline?: string;
|
|
7306
|
+
subtitle?: string;
|
|
7307
|
+
description?: string;
|
|
7308
|
+
badge?: SectionBlockBadge | string;
|
|
7309
|
+
items?: SectionTestimonialItem[] | string;
|
|
7310
|
+
variant?: 'grid' | 'carousel';
|
|
7311
|
+
columns?: 2 | 3 | string;
|
|
7312
|
+
align?: 'left' | 'center';
|
|
7313
|
+
contentPadding?: 's' | 'm' | 'l';
|
|
7314
|
+
size?: 's' | 'm' | 'l' | 'xl';
|
|
7315
|
+
fullWidth?: boolean;
|
|
7316
|
+
fullHeight?: boolean;
|
|
7317
|
+
overflowVisible?: boolean;
|
|
7318
|
+
};
|
|
7319
|
+
type SectionFeatureGridItem = {
|
|
7320
|
+
title: string;
|
|
7321
|
+
description: string;
|
|
7322
|
+
iconName?: string;
|
|
7323
|
+
};
|
|
7324
|
+
type SectionFeatureGridProps = WebComponentProps & {
|
|
7325
|
+
headline?: string;
|
|
7326
|
+
subtitle?: string;
|
|
7327
|
+
description?: string;
|
|
7328
|
+
badge?: SectionBlockBadge | string;
|
|
7329
|
+
items?: SectionFeatureGridItem[] | string;
|
|
7330
|
+
columns?: 2 | 3 | 4 | string;
|
|
7331
|
+
tinted?: boolean;
|
|
7332
|
+
align?: 'left' | 'center';
|
|
7333
|
+
contentPadding?: 's' | 'm' | 'l';
|
|
7334
|
+
size?: 's' | 'm' | 'l' | 'xl';
|
|
7335
|
+
fullWidth?: boolean;
|
|
7336
|
+
fullHeight?: boolean;
|
|
7337
|
+
overflowVisible?: boolean;
|
|
7338
|
+
};
|
|
7339
|
+
type SectionLogoCloudItem = {
|
|
7340
|
+
src?: string;
|
|
7341
|
+
alt: string;
|
|
7342
|
+
href?: string;
|
|
7343
|
+
label?: string;
|
|
7344
|
+
};
|
|
7345
|
+
type SectionLogoCloudProps = WebComponentProps & {
|
|
7346
|
+
headline?: string;
|
|
7347
|
+
subtitle?: string;
|
|
7348
|
+
description?: string;
|
|
7349
|
+
badge?: SectionBlockBadge | string;
|
|
7350
|
+
logos?: SectionLogoCloudItem[] | string;
|
|
7351
|
+
variant?: 'grid' | 'marquee';
|
|
7352
|
+
align?: 'left' | 'center';
|
|
7353
|
+
contentPadding?: 's' | 'm' | 'l';
|
|
7354
|
+
size?: 's' | 'm' | 'l' | 'xl';
|
|
7355
|
+
fullWidth?: boolean;
|
|
7356
|
+
fullHeight?: boolean;
|
|
7357
|
+
overflowVisible?: boolean;
|
|
7358
|
+
};
|
|
7359
|
+
type SectionStatItem = {
|
|
7360
|
+
value: string | number;
|
|
7361
|
+
label: string;
|
|
7362
|
+
description?: string;
|
|
7363
|
+
};
|
|
7364
|
+
type SectionStatsProps = WebComponentProps & {
|
|
7365
|
+
headline?: string;
|
|
7366
|
+
subtitle?: string;
|
|
7367
|
+
description?: string;
|
|
7368
|
+
badge?: SectionBlockBadge | string;
|
|
7369
|
+
items?: SectionStatItem[] | string;
|
|
7370
|
+
columns?: 2 | 3 | 4 | string;
|
|
7371
|
+
tinted?: boolean;
|
|
7372
|
+
align?: 'left' | 'center';
|
|
7373
|
+
contentPadding?: 's' | 'm' | 'l';
|
|
7374
|
+
size?: 's' | 'm' | 'l' | 'xl';
|
|
7375
|
+
fullWidth?: boolean;
|
|
7376
|
+
fullHeight?: boolean;
|
|
7377
|
+
overflowVisible?: boolean;
|
|
7378
|
+
};
|
|
7379
|
+
type SectionFaqItem = {
|
|
7380
|
+
id: string;
|
|
7381
|
+
question: string;
|
|
7382
|
+
answer: string;
|
|
7383
|
+
};
|
|
7384
|
+
type SectionFaqProps = WebComponentProps & {
|
|
7385
|
+
headline?: string;
|
|
7386
|
+
subtitle?: string;
|
|
7387
|
+
description?: string;
|
|
7388
|
+
badge?: SectionBlockBadge | string;
|
|
7389
|
+
items?: SectionFaqItem[] | string;
|
|
7390
|
+
allowMultiple?: boolean;
|
|
7391
|
+
align?: 'left' | 'center';
|
|
7392
|
+
contentPadding?: 's' | 'm' | 'l';
|
|
7393
|
+
size?: 's' | 'm' | 'l' | 'xl';
|
|
7394
|
+
fullWidth?: boolean;
|
|
7395
|
+
fullHeight?: boolean;
|
|
7396
|
+
overflowVisible?: boolean;
|
|
7397
|
+
};
|
|
7398
|
+
type SectionPricingCta = {
|
|
7399
|
+
label: string;
|
|
7400
|
+
href?: string;
|
|
7401
|
+
variant?: string;
|
|
7402
|
+
};
|
|
7403
|
+
type SectionPricingPlan = {
|
|
7404
|
+
name: string;
|
|
7405
|
+
price: string;
|
|
7406
|
+
period?: string;
|
|
7407
|
+
description?: string;
|
|
7408
|
+
features: string[];
|
|
7409
|
+
highlighted?: boolean;
|
|
7410
|
+
badge?: string;
|
|
7411
|
+
cta: SectionPricingCta;
|
|
7412
|
+
};
|
|
7413
|
+
type SectionPricingProps = WebComponentProps & {
|
|
7414
|
+
headline?: string;
|
|
7415
|
+
subtitle?: string;
|
|
7416
|
+
description?: string;
|
|
7417
|
+
badge?: SectionBlockBadge | string;
|
|
7418
|
+
plans?: SectionPricingPlan[] | string;
|
|
7419
|
+
columns?: 2 | 3 | string;
|
|
7420
|
+
align?: 'left' | 'center';
|
|
7421
|
+
contentPadding?: 's' | 'm' | 'l';
|
|
7422
|
+
size?: 's' | 'm' | 'l' | 'xl';
|
|
7423
|
+
fullWidth?: boolean;
|
|
7424
|
+
fullHeight?: boolean;
|
|
7425
|
+
overflowVisible?: boolean;
|
|
7426
|
+
onAction?: DbEventHandler<{
|
|
7427
|
+
plan: SectionPricingPlan;
|
|
7428
|
+
}>;
|
|
7429
|
+
onDbAction?: DbEventHandler<{
|
|
7430
|
+
plan: SectionPricingPlan;
|
|
7431
|
+
}>;
|
|
7432
|
+
};
|
|
6716
7433
|
type MarqueeImageItem = {
|
|
6717
7434
|
src: string;
|
|
6718
7435
|
alt?: string;
|
|
@@ -6997,6 +7714,8 @@ declare const Masonry: react.ForwardRefExoticComponent<Omit<MasonryProps, "ref">
|
|
|
6997
7714
|
declare const Carousel: react.ForwardRefExoticComponent<Omit<CarouselProps, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
6998
7715
|
declare const ColorPicker: react.ForwardRefExoticComponent<Omit<ColorPickerProps, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
6999
7716
|
declare const Reorder: react.ForwardRefExoticComponent<Omit<ReorderProps, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
7717
|
+
declare const Kanban: react.ForwardRefExoticComponent<Omit<KanbanProps, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
7718
|
+
declare const Gantt: react.ForwardRefExoticComponent<Omit<GanttProps, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
7000
7719
|
declare const ResizablePanels: react.ForwardRefExoticComponent<Omit<ResizablePanelsProps, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
7001
7720
|
declare const VideoPlayer: react.ForwardRefExoticComponent<Omit<VideoPlayerProps, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
7002
7721
|
declare const YouTubePlayer: react.ForwardRefExoticComponent<Omit<YouTubePlayerProps, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
@@ -7009,6 +7728,13 @@ declare const SectionFeature: react.ForwardRefExoticComponent<Omit<SectionFeatur
|
|
|
7009
7728
|
declare const AppBadge: react.ForwardRefExoticComponent<Omit<AppBadgeProps, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
7010
7729
|
declare const SectionContact: react.ForwardRefExoticComponent<Omit<SectionContactProps, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
7011
7730
|
declare const SectionAppDownload: react.ForwardRefExoticComponent<Omit<SectionAppDownloadProps, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
7731
|
+
declare const SectionCta: react.ForwardRefExoticComponent<Omit<SectionCtaProps, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
7732
|
+
declare const SectionTestimonials: react.ForwardRefExoticComponent<Omit<SectionTestimonialsProps, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
7733
|
+
declare const SectionFeatureGrid: react.ForwardRefExoticComponent<Omit<SectionFeatureGridProps, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
7734
|
+
declare const SectionLogoCloud: react.ForwardRefExoticComponent<Omit<SectionLogoCloudProps, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
7735
|
+
declare const SectionStats: react.ForwardRefExoticComponent<Omit<SectionStatsProps, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
7736
|
+
declare const SectionFaq: react.ForwardRefExoticComponent<Omit<SectionFaqProps, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
7737
|
+
declare const SectionPricing: react.ForwardRefExoticComponent<Omit<SectionPricingProps, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
7012
7738
|
declare const Marquee: react.ForwardRefExoticComponent<Omit<MarqueeProps, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
7013
7739
|
declare const Gradient: react.ForwardRefExoticComponent<Omit<GradientProps, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
7014
7740
|
declare const RandomGradient: react.ForwardRefExoticComponent<Omit<RandomGradientProps, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
@@ -7060,5 +7786,5 @@ declare const DatePicker: react.ForwardRefExoticComponent<Omit<DatePickerProps,
|
|
|
7060
7786
|
declare const TimePicker: react.ForwardRefExoticComponent<Omit<TimePickerProps, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
7061
7787
|
declare const Calendar: react.ForwardRefExoticComponent<Omit<CalendarProps, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
7062
7788
|
|
|
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 };
|
|
7789
|
+
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, Gantt, Gradient, Grid, GridBackground, GridItem, Image, ImageList, ImagePlaceholder, Indicator, Input, Kanban, 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, SectionCta, SectionFaq, SectionFeature, SectionFeatureGrid, SectionHero, SectionLogoCloud, SectionPricing, SectionStats, SectionTestimonials, 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 };
|
|
7790
|
+
export type { AccordionItemConfig, AccordionProps, AdBannerProps, AlertAction, AlertProps, AnimationBackgroundProps, AnimationTextProps, AppBadgeProps, AudioPlayerProps, AvatarProps, BackdropProps, BadgeProps, BannerAction, BannerProps, BottomNavigationItem, BottomNavigationProps, BottomSheetProps, BreadcrumbItemConfig, BreadcrumbMenuItemConfig, 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, GanttAssignee, GanttGroup, GanttItem, GanttProps, GanttRow, GradientColor, GradientProps, GradientScheme, GradientTone, GridBackgroundProps, ImageListItem, ImageListProps, ImagePlaceholderProps, ImageProps, IndicatorProps, InputProps, KanbanAssignee, KanbanCard, KanbanColumn, KanbanProps, KanbanTag, 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, SectionBlockBadge, SectionContactAction, SectionContactProps, SectionCtaButton, SectionCtaProps, SectionFaqItem, SectionFaqProps, SectionFeatureAction, SectionFeatureBadge, SectionFeatureGridItem, SectionFeatureGridProps, SectionFeatureProps, SectionHeroButton, SectionHeroProps, SectionLogoCloudItem, SectionLogoCloudProps, SectionPricingCta, SectionPricingPlan, SectionPricingProps, SectionProps, SectionStatItem, SectionStatsProps, SectionTestimonialItem, SectionTestimonialsProps, 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 };
|