@designbasekorea/ui-wc 0.3.0 → 0.5.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-menu-item.d.ts +2 -1
- package/dist/esm/components/db-menu-item.js +1 -1
- 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/db-sidebar.d.ts +54 -2
- package/dist/esm/components/db-sidebar.js +1 -1
- 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 +10 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.css +1 -1
- package/dist/index.d.ts +404 -11
- package/dist/index.esm.js +1 -1
- package/dist/react/index.cjs +1 -1
- package/dist/react/index.d.ts +816 -15
- package/dist/react/index.esm.js +1 -1
- package/package.json +1 -1
- /package/dist/chunks/{lottie-1e5700ad.js → lottie-aa12f9e1.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 {
|
|
@@ -1180,9 +1211,10 @@ declare class DbMenuItem extends HTMLElement {
|
|
|
1180
1211
|
get expanded(): boolean;
|
|
1181
1212
|
set expanded(value: boolean);
|
|
1182
1213
|
connectedCallback(): void;
|
|
1183
|
-
attributeChangedCallback(): void;
|
|
1184
1214
|
private iconSize;
|
|
1185
1215
|
private render;
|
|
1216
|
+
attributeChangedCallback(name: string): void;
|
|
1217
|
+
private syncExpandedState;
|
|
1186
1218
|
}
|
|
1187
1219
|
declare global {
|
|
1188
1220
|
interface HTMLElementTagNameMap {
|
|
@@ -1636,9 +1668,26 @@ interface DbSidebarUserProfile {
|
|
|
1636
1668
|
email?: string;
|
|
1637
1669
|
avatar?: string;
|
|
1638
1670
|
}
|
|
1671
|
+
interface DbSidebarProject {
|
|
1672
|
+
id: string;
|
|
1673
|
+
label: string;
|
|
1674
|
+
icon?: string;
|
|
1675
|
+
color?: string;
|
|
1676
|
+
href?: string;
|
|
1677
|
+
}
|
|
1678
|
+
interface DbSidebarPromoBanner {
|
|
1679
|
+
title: string;
|
|
1680
|
+
description?: string;
|
|
1681
|
+
ctaLabel?: string;
|
|
1682
|
+
ctaHref?: string;
|
|
1683
|
+
icon?: string;
|
|
1684
|
+
}
|
|
1639
1685
|
declare class DbSidebar extends HTMLElement {
|
|
1640
1686
|
private expandedItems;
|
|
1641
1687
|
private userMenuOpen;
|
|
1688
|
+
private projectMenuOpen;
|
|
1689
|
+
private flyoutItemId;
|
|
1690
|
+
private flyoutCloseTimer;
|
|
1642
1691
|
private outsideHandler;
|
|
1643
1692
|
static get observedAttributes(): string[];
|
|
1644
1693
|
connectedCallback(): void;
|
|
@@ -1653,17 +1702,52 @@ declare class DbSidebar extends HTMLElement {
|
|
|
1653
1702
|
set userMenuItems(value: DbSidebarItem[] | string);
|
|
1654
1703
|
get userProfile(): DbSidebarUserProfile | null;
|
|
1655
1704
|
set userProfile(value: DbSidebarUserProfile | string | null);
|
|
1705
|
+
get projects(): DbSidebarProject[];
|
|
1706
|
+
set projects(value: DbSidebarProject[] | string);
|
|
1707
|
+
get selectedProjectId(): string;
|
|
1708
|
+
set selectedProjectId(value: string);
|
|
1709
|
+
get projectManageLabel(): string;
|
|
1710
|
+
set projectManageLabel(value: string);
|
|
1711
|
+
get projectManageHref(): string;
|
|
1712
|
+
set projectManageHref(value: string);
|
|
1713
|
+
get projectSectionLabel(): string;
|
|
1714
|
+
set projectSectionLabel(value: string);
|
|
1715
|
+
get bottomItems(): DbSidebarItem[];
|
|
1716
|
+
set bottomItems(value: DbSidebarItem[] | string);
|
|
1717
|
+
get bottomSections(): DbSidebarSection[];
|
|
1718
|
+
set bottomSections(value: DbSidebarSection[] | string);
|
|
1719
|
+
get promoBanner(): DbSidebarPromoBanner | null;
|
|
1720
|
+
set promoBanner(value: DbSidebarPromoBanner | string | null);
|
|
1656
1721
|
private parseSections;
|
|
1657
1722
|
private parseUserMenuItems;
|
|
1658
1723
|
private parseUserProfile;
|
|
1724
|
+
private parseProjects;
|
|
1725
|
+
private parseBottomItems;
|
|
1726
|
+
private parseBottomSections;
|
|
1727
|
+
private parsePromoBanner;
|
|
1728
|
+
private getSelectedProject;
|
|
1659
1729
|
private bindOutsideClick;
|
|
1730
|
+
private closeOverlayMenus;
|
|
1731
|
+
private syncExclusiveAccordion;
|
|
1660
1732
|
private unbindOutsideClick;
|
|
1733
|
+
private cancelFlyoutClose;
|
|
1734
|
+
private showFlyout;
|
|
1735
|
+
private scheduleFlyoutClose;
|
|
1661
1736
|
private syncHostClasses;
|
|
1662
1737
|
private dispatchItemClick;
|
|
1663
1738
|
private dispatchUserMenuItemClick;
|
|
1664
|
-
private
|
|
1739
|
+
private dispatchProjectChange;
|
|
1740
|
+
private dispatchProjectManage;
|
|
1741
|
+
private dispatchPromoCtaClick;
|
|
1742
|
+
private createProjectAvatar;
|
|
1743
|
+
private createProjectSelector;
|
|
1744
|
+
private createFlyout;
|
|
1665
1745
|
private createSidebarMenuItem;
|
|
1746
|
+
private renderSectionList;
|
|
1666
1747
|
private renderNav;
|
|
1748
|
+
private renderBottomNav;
|
|
1749
|
+
private createUserDropdown;
|
|
1750
|
+
private createPromoBanner;
|
|
1667
1751
|
private render;
|
|
1668
1752
|
}
|
|
1669
1753
|
declare global {
|
|
@@ -2731,6 +2815,168 @@ declare global {
|
|
|
2731
2815
|
}
|
|
2732
2816
|
}
|
|
2733
2817
|
|
|
2818
|
+
type DbKanbanPriority = 'low' | 'medium' | 'high' | 'urgent';
|
|
2819
|
+
type DbKanbanTag = {
|
|
2820
|
+
label: string;
|
|
2821
|
+
variant?: 'default' | 'primary' | 'success' | 'warning' | 'danger' | 'info' | 'neutral';
|
|
2822
|
+
};
|
|
2823
|
+
type DbKanbanAssignee = {
|
|
2824
|
+
name: string;
|
|
2825
|
+
initials?: string;
|
|
2826
|
+
avatar?: string;
|
|
2827
|
+
};
|
|
2828
|
+
type DbKanbanCard = {
|
|
2829
|
+
id: string;
|
|
2830
|
+
title: string;
|
|
2831
|
+
description?: string;
|
|
2832
|
+
tags?: DbKanbanTag[];
|
|
2833
|
+
assignee?: DbKanbanAssignee;
|
|
2834
|
+
priority?: DbKanbanPriority;
|
|
2835
|
+
dueDate?: string;
|
|
2836
|
+
disabled?: boolean;
|
|
2837
|
+
};
|
|
2838
|
+
type DbKanbanColumn = {
|
|
2839
|
+
id: string;
|
|
2840
|
+
title: string;
|
|
2841
|
+
cards: DbKanbanCard[];
|
|
2842
|
+
limit?: number;
|
|
2843
|
+
color?: string;
|
|
2844
|
+
};
|
|
2845
|
+
declare class DbKanban extends HTMLElement {
|
|
2846
|
+
private dragState;
|
|
2847
|
+
private dropTarget;
|
|
2848
|
+
static get observedAttributes(): string[];
|
|
2849
|
+
get columns(): DbKanbanColumn[];
|
|
2850
|
+
set columns(value: DbKanbanColumn[] | string);
|
|
2851
|
+
connectedCallback(): void;
|
|
2852
|
+
disconnectedCallback(): void;
|
|
2853
|
+
attributeChangedCallback(): void;
|
|
2854
|
+
private getBool;
|
|
2855
|
+
private getOption;
|
|
2856
|
+
private emitChange;
|
|
2857
|
+
private emitCardMove;
|
|
2858
|
+
private findCardLocation;
|
|
2859
|
+
private getAdjustedDropIndex;
|
|
2860
|
+
private isValidDropTarget;
|
|
2861
|
+
private moveCard;
|
|
2862
|
+
private setDropTarget;
|
|
2863
|
+
private resetDragState;
|
|
2864
|
+
private updateDragClasses;
|
|
2865
|
+
private getDropIndexFromPointer;
|
|
2866
|
+
private getDropIndexFromColumnPointer;
|
|
2867
|
+
private commitDrop;
|
|
2868
|
+
private handleBoardDragOver;
|
|
2869
|
+
private handleBoardDrop;
|
|
2870
|
+
private formatDueDate;
|
|
2871
|
+
private getInitials;
|
|
2872
|
+
private createTag;
|
|
2873
|
+
private createPriorityBadge;
|
|
2874
|
+
private createAssignee;
|
|
2875
|
+
private bindCardDrag;
|
|
2876
|
+
private createCard;
|
|
2877
|
+
private createColumn;
|
|
2878
|
+
private render;
|
|
2879
|
+
}
|
|
2880
|
+
declare global {
|
|
2881
|
+
interface HTMLElementTagNameMap {
|
|
2882
|
+
'db-kanban': DbKanban;
|
|
2883
|
+
}
|
|
2884
|
+
}
|
|
2885
|
+
|
|
2886
|
+
type DbGanttAssignee = {
|
|
2887
|
+
name: string;
|
|
2888
|
+
initials?: string;
|
|
2889
|
+
avatar?: string;
|
|
2890
|
+
};
|
|
2891
|
+
type DbGanttItemStatus = 'on-track' | 'at-risk' | 'delayed' | 'completed';
|
|
2892
|
+
type DbGanttItem = {
|
|
2893
|
+
id: string;
|
|
2894
|
+
rowId: string;
|
|
2895
|
+
title: string;
|
|
2896
|
+
startDate: string;
|
|
2897
|
+
endDate: string;
|
|
2898
|
+
color?: string;
|
|
2899
|
+
assignee?: DbGanttAssignee;
|
|
2900
|
+
progress?: number;
|
|
2901
|
+
status?: DbGanttItemStatus;
|
|
2902
|
+
disabled?: boolean;
|
|
2903
|
+
};
|
|
2904
|
+
type DbGanttRow = {
|
|
2905
|
+
id: string;
|
|
2906
|
+
label: string;
|
|
2907
|
+
groupId?: string;
|
|
2908
|
+
};
|
|
2909
|
+
type DbGanttGroup = {
|
|
2910
|
+
id: string;
|
|
2911
|
+
title: string;
|
|
2912
|
+
color?: string;
|
|
2913
|
+
};
|
|
2914
|
+
declare class DbGantt extends HTMLElement {
|
|
2915
|
+
private collapsedGroups;
|
|
2916
|
+
private dragState;
|
|
2917
|
+
private reorderState;
|
|
2918
|
+
private reorderDropIndex;
|
|
2919
|
+
private suppressRender;
|
|
2920
|
+
private didDrag;
|
|
2921
|
+
static get observedAttributes(): string[];
|
|
2922
|
+
get groups(): DbGanttGroup[];
|
|
2923
|
+
set groups(value: DbGanttGroup[] | string);
|
|
2924
|
+
get rows(): DbGanttRow[];
|
|
2925
|
+
set rows(value: DbGanttRow[] | string);
|
|
2926
|
+
get items(): DbGanttItem[];
|
|
2927
|
+
set items(value: DbGanttItem[] | string);
|
|
2928
|
+
connectedCallback(): void;
|
|
2929
|
+
disconnectedCallback(): void;
|
|
2930
|
+
attributeChangedCallback(): void;
|
|
2931
|
+
private parseJson;
|
|
2932
|
+
private getBool;
|
|
2933
|
+
private getNumber;
|
|
2934
|
+
private getOption;
|
|
2935
|
+
private getLocale;
|
|
2936
|
+
private getWeekdays;
|
|
2937
|
+
private getViewRange;
|
|
2938
|
+
private getTodayDate;
|
|
2939
|
+
private getDateColumns;
|
|
2940
|
+
private getVisibleRows;
|
|
2941
|
+
private getMonthSegments;
|
|
2942
|
+
private getInitials;
|
|
2943
|
+
private updateItem;
|
|
2944
|
+
private emitItemsChange;
|
|
2945
|
+
private applyBarGeometry;
|
|
2946
|
+
private handlePointerMove;
|
|
2947
|
+
private handlePointerUp;
|
|
2948
|
+
private startBarDrag;
|
|
2949
|
+
private canReorder;
|
|
2950
|
+
private createDragHandle;
|
|
2951
|
+
private getGroupIndex;
|
|
2952
|
+
private getRowScope;
|
|
2953
|
+
private getRowIndexInScope;
|
|
2954
|
+
private getReorderTargets;
|
|
2955
|
+
private startReorderDrag;
|
|
2956
|
+
private updateReorderDropTarget;
|
|
2957
|
+
private clearReorderIndicators;
|
|
2958
|
+
private finishReorderDrag;
|
|
2959
|
+
private emitStructureChange;
|
|
2960
|
+
private reorderGroups;
|
|
2961
|
+
private reorderRows;
|
|
2962
|
+
private createGroupBadge;
|
|
2963
|
+
private createGroupChevron;
|
|
2964
|
+
private createAssignee;
|
|
2965
|
+
private createStatusIcon;
|
|
2966
|
+
private deriveSummaryColor;
|
|
2967
|
+
private getGroupSummary;
|
|
2968
|
+
private applyBarTone;
|
|
2969
|
+
private createGroupSummaryBar;
|
|
2970
|
+
private createBar;
|
|
2971
|
+
private toggleGroup;
|
|
2972
|
+
private render;
|
|
2973
|
+
}
|
|
2974
|
+
declare global {
|
|
2975
|
+
interface HTMLElementTagNameMap {
|
|
2976
|
+
'db-gantt': DbGantt;
|
|
2977
|
+
}
|
|
2978
|
+
}
|
|
2979
|
+
|
|
2734
2980
|
declare class DbResizablePanels extends HTMLElement {
|
|
2735
2981
|
private container?;
|
|
2736
2982
|
private contentEl?;
|
|
@@ -3087,8 +3333,8 @@ interface FeatureAction {
|
|
|
3087
3333
|
declare class DbSectionFeature extends HTMLElement {
|
|
3088
3334
|
static get observedAttributes(): string[];
|
|
3089
3335
|
private built;
|
|
3090
|
-
private
|
|
3091
|
-
private
|
|
3336
|
+
private innerEl?;
|
|
3337
|
+
private contentEl?;
|
|
3092
3338
|
private badgeEl?;
|
|
3093
3339
|
private headlineEl?;
|
|
3094
3340
|
private subtitleEl?;
|
|
@@ -3133,9 +3379,7 @@ declare global {
|
|
|
3133
3379
|
declare class DbSectionContact extends HTMLElement {
|
|
3134
3380
|
static get observedAttributes(): string[];
|
|
3135
3381
|
private built;
|
|
3136
|
-
private
|
|
3137
|
-
private wrapEl?;
|
|
3138
|
-
private contactWrapEl?;
|
|
3382
|
+
private innerEl?;
|
|
3139
3383
|
private titleEl?;
|
|
3140
3384
|
private descriptionEl?;
|
|
3141
3385
|
private actionEl?;
|
|
@@ -3162,8 +3406,6 @@ interface DownloadStore {
|
|
|
3162
3406
|
declare class DbSectionAppDownload extends HTMLElement {
|
|
3163
3407
|
static get observedAttributes(): string[];
|
|
3164
3408
|
private built;
|
|
3165
|
-
private sectionEl?;
|
|
3166
|
-
private wrapEl?;
|
|
3167
3409
|
private innerEl?;
|
|
3168
3410
|
private titleEl?;
|
|
3169
3411
|
private descriptionEl?;
|
|
@@ -3182,6 +3424,157 @@ declare global {
|
|
|
3182
3424
|
}
|
|
3183
3425
|
}
|
|
3184
3426
|
|
|
3427
|
+
declare class DbSectionCta extends HTMLElement {
|
|
3428
|
+
static get observedAttributes(): string[];
|
|
3429
|
+
private built;
|
|
3430
|
+
private wrapEl?;
|
|
3431
|
+
private headerEl?;
|
|
3432
|
+
private badgeEl?;
|
|
3433
|
+
private headlineEl?;
|
|
3434
|
+
private subtitleEl?;
|
|
3435
|
+
private descriptionEl?;
|
|
3436
|
+
private actionsEl?;
|
|
3437
|
+
connectedCallback(): void;
|
|
3438
|
+
attributeChangedCallback(): void;
|
|
3439
|
+
private parseBadge;
|
|
3440
|
+
private parseButtons;
|
|
3441
|
+
private build;
|
|
3442
|
+
private updateUI;
|
|
3443
|
+
}
|
|
3444
|
+
declare global {
|
|
3445
|
+
interface HTMLElementTagNameMap {
|
|
3446
|
+
'db-section-cta': DbSectionCta;
|
|
3447
|
+
}
|
|
3448
|
+
}
|
|
3449
|
+
|
|
3450
|
+
declare class DbSectionTestimonials extends HTMLElement {
|
|
3451
|
+
static get observedAttributes(): string[];
|
|
3452
|
+
private built;
|
|
3453
|
+
private carouselIndex;
|
|
3454
|
+
private innerEl?;
|
|
3455
|
+
private headerEl?;
|
|
3456
|
+
private contentEl?;
|
|
3457
|
+
private carouselViewport?;
|
|
3458
|
+
private carouselTrack?;
|
|
3459
|
+
private carouselIndicator?;
|
|
3460
|
+
private resizeObserver?;
|
|
3461
|
+
connectedCallback(): void;
|
|
3462
|
+
disconnectedCallback(): void;
|
|
3463
|
+
attributeChangedCallback(): void;
|
|
3464
|
+
private parseItems;
|
|
3465
|
+
private parseBadge;
|
|
3466
|
+
private buildHeader;
|
|
3467
|
+
private build;
|
|
3468
|
+
private createTestimonialEl;
|
|
3469
|
+
private updateHeader;
|
|
3470
|
+
private clampCarouselIndex;
|
|
3471
|
+
private updateCarouselTransform;
|
|
3472
|
+
private goToCarouselSlide;
|
|
3473
|
+
private renderGrid;
|
|
3474
|
+
private renderCarousel;
|
|
3475
|
+
private updateUI;
|
|
3476
|
+
}
|
|
3477
|
+
declare global {
|
|
3478
|
+
interface HTMLElementTagNameMap {
|
|
3479
|
+
'db-section-testimonials': DbSectionTestimonials;
|
|
3480
|
+
}
|
|
3481
|
+
}
|
|
3482
|
+
|
|
3483
|
+
declare class DbSectionFeatureGrid extends HTMLElement {
|
|
3484
|
+
static get observedAttributes(): string[];
|
|
3485
|
+
private built;
|
|
3486
|
+
private innerEl?;
|
|
3487
|
+
private headerEl?;
|
|
3488
|
+
private gridEl?;
|
|
3489
|
+
connectedCallback(): void;
|
|
3490
|
+
attributeChangedCallback(): void;
|
|
3491
|
+
private parseItems;
|
|
3492
|
+
private parseBadge;
|
|
3493
|
+
private build;
|
|
3494
|
+
private updateUI;
|
|
3495
|
+
}
|
|
3496
|
+
declare global {
|
|
3497
|
+
interface HTMLElementTagNameMap {
|
|
3498
|
+
'db-section-feature-grid': DbSectionFeatureGrid;
|
|
3499
|
+
}
|
|
3500
|
+
}
|
|
3501
|
+
|
|
3502
|
+
declare class DbSectionLogoCloud extends HTMLElement {
|
|
3503
|
+
static get observedAttributes(): string[];
|
|
3504
|
+
private built;
|
|
3505
|
+
private innerEl?;
|
|
3506
|
+
private headerEl?;
|
|
3507
|
+
private contentEl?;
|
|
3508
|
+
connectedCallback(): void;
|
|
3509
|
+
attributeChangedCallback(): void;
|
|
3510
|
+
private parseLogos;
|
|
3511
|
+
private parseBadge;
|
|
3512
|
+
private build;
|
|
3513
|
+
private updateUI;
|
|
3514
|
+
}
|
|
3515
|
+
declare global {
|
|
3516
|
+
interface HTMLElementTagNameMap {
|
|
3517
|
+
'db-section-logo-cloud': DbSectionLogoCloud;
|
|
3518
|
+
}
|
|
3519
|
+
}
|
|
3520
|
+
|
|
3521
|
+
declare class DbSectionStats extends HTMLElement {
|
|
3522
|
+
static get observedAttributes(): string[];
|
|
3523
|
+
private built;
|
|
3524
|
+
private innerEl?;
|
|
3525
|
+
private headerEl?;
|
|
3526
|
+
private gridEl?;
|
|
3527
|
+
connectedCallback(): void;
|
|
3528
|
+
attributeChangedCallback(): void;
|
|
3529
|
+
private parseItems;
|
|
3530
|
+
private parseBadge;
|
|
3531
|
+
private build;
|
|
3532
|
+
private updateUI;
|
|
3533
|
+
}
|
|
3534
|
+
declare global {
|
|
3535
|
+
interface HTMLElementTagNameMap {
|
|
3536
|
+
'db-section-stats': DbSectionStats;
|
|
3537
|
+
}
|
|
3538
|
+
}
|
|
3539
|
+
|
|
3540
|
+
declare class DbSectionFaq extends HTMLElement {
|
|
3541
|
+
static get observedAttributes(): string[];
|
|
3542
|
+
private built;
|
|
3543
|
+
private innerEl?;
|
|
3544
|
+
private headerEl?;
|
|
3545
|
+
private accordionEl?;
|
|
3546
|
+
connectedCallback(): void;
|
|
3547
|
+
attributeChangedCallback(): void;
|
|
3548
|
+
private parseItems;
|
|
3549
|
+
private parseBadge;
|
|
3550
|
+
private build;
|
|
3551
|
+
private updateUI;
|
|
3552
|
+
}
|
|
3553
|
+
declare global {
|
|
3554
|
+
interface HTMLElementTagNameMap {
|
|
3555
|
+
'db-section-faq': DbSectionFaq;
|
|
3556
|
+
}
|
|
3557
|
+
}
|
|
3558
|
+
|
|
3559
|
+
declare class DbSectionPricing extends HTMLElement {
|
|
3560
|
+
static get observedAttributes(): string[];
|
|
3561
|
+
private built;
|
|
3562
|
+
private innerEl?;
|
|
3563
|
+
private headerEl?;
|
|
3564
|
+
private gridEl?;
|
|
3565
|
+
connectedCallback(): void;
|
|
3566
|
+
attributeChangedCallback(): void;
|
|
3567
|
+
private parsePlans;
|
|
3568
|
+
private parseBadge;
|
|
3569
|
+
private build;
|
|
3570
|
+
private updateUI;
|
|
3571
|
+
}
|
|
3572
|
+
declare global {
|
|
3573
|
+
interface HTMLElementTagNameMap {
|
|
3574
|
+
'db-section-pricing': DbSectionPricing;
|
|
3575
|
+
}
|
|
3576
|
+
}
|
|
3577
|
+
|
|
3185
3578
|
declare class DbMarquee extends HTMLElement {
|
|
3186
3579
|
static get observedAttributes(): string[];
|
|
3187
3580
|
private built;
|
|
@@ -5300,12 +5693,34 @@ type SidebarUserProfile = {
|
|
|
5300
5693
|
email?: string;
|
|
5301
5694
|
avatar?: string;
|
|
5302
5695
|
};
|
|
5696
|
+
type SidebarProject = {
|
|
5697
|
+
id: string;
|
|
5698
|
+
label: string;
|
|
5699
|
+
icon?: string;
|
|
5700
|
+
color?: string;
|
|
5701
|
+
href?: string;
|
|
5702
|
+
};
|
|
5703
|
+
type SidebarPromoBanner = {
|
|
5704
|
+
title: string;
|
|
5705
|
+
description?: string;
|
|
5706
|
+
ctaLabel?: string;
|
|
5707
|
+
ctaHref?: string;
|
|
5708
|
+
icon?: string;
|
|
5709
|
+
};
|
|
5303
5710
|
type SidebarProps = WebComponentProps & {
|
|
5304
5711
|
items?: SidebarItem[] | string;
|
|
5305
5712
|
sections?: SidebarSection[] | string;
|
|
5306
5713
|
userMenuItems?: SidebarItem[] | string;
|
|
5307
5714
|
userProfile?: SidebarUserProfile | string;
|
|
5308
5715
|
defaultExpandedIds?: string[] | string;
|
|
5716
|
+
projects?: SidebarProject[] | string;
|
|
5717
|
+
selectedProjectId?: string;
|
|
5718
|
+
projectManageLabel?: string;
|
|
5719
|
+
projectManageHref?: string;
|
|
5720
|
+
projectSectionLabel?: string;
|
|
5721
|
+
bottomItems?: SidebarItem[] | string;
|
|
5722
|
+
bottomSections?: SidebarSection[] | string;
|
|
5723
|
+
promoBanner?: SidebarPromoBanner | string;
|
|
5309
5724
|
size?: 's' | 'm' | 'l';
|
|
5310
5725
|
variant?: 'default' | 'dark' | 'light';
|
|
5311
5726
|
position?: 'left' | 'right';
|
|
@@ -5698,6 +6113,14 @@ type TabsProps = WebComponentProps & {
|
|
|
5698
6113
|
id: string;
|
|
5699
6114
|
}>;
|
|
5700
6115
|
};
|
|
6116
|
+
type BreadcrumbMenuItemConfig = {
|
|
6117
|
+
id?: string;
|
|
6118
|
+
label: string;
|
|
6119
|
+
href?: string;
|
|
6120
|
+
active?: boolean;
|
|
6121
|
+
disabled?: boolean;
|
|
6122
|
+
icon?: string;
|
|
6123
|
+
};
|
|
5701
6124
|
type BreadcrumbItemConfig = {
|
|
5702
6125
|
id?: string;
|
|
5703
6126
|
label: string;
|
|
@@ -5705,24 +6128,34 @@ type BreadcrumbItemConfig = {
|
|
|
5705
6128
|
active?: boolean;
|
|
5706
6129
|
disabled?: boolean;
|
|
5707
6130
|
icon?: string;
|
|
6131
|
+
menu?: BreadcrumbMenuItemConfig[];
|
|
5708
6132
|
};
|
|
5709
6133
|
type BreadcrumbsProps = WebComponentProps & {
|
|
5710
6134
|
items?: BreadcrumbItemConfig[] | string;
|
|
5711
6135
|
size?: 's' | 'm' | 'l';
|
|
5712
|
-
|
|
5713
|
-
|
|
5714
|
-
|
|
5715
|
-
variant?: 'default' | 'contained' | 'underlined' | 'minimal' | 'outlined';
|
|
6136
|
+
variant?: 'default' | 'contained' | 'underlined';
|
|
6137
|
+
/** @deprecated variant 사용 */
|
|
6138
|
+
breadcrumbStyle?: 'default' | 'contained' | 'underlined';
|
|
5716
6139
|
maxItems?: number;
|
|
6140
|
+
menuDropdown?: boolean;
|
|
6141
|
+
maxLabelLength?: number;
|
|
5717
6142
|
onItemClick?: DbEventHandler<{
|
|
5718
6143
|
item: BreadcrumbItemConfig;
|
|
5719
6144
|
}>;
|
|
6145
|
+
onMenuItemClick?: DbEventHandler<{
|
|
6146
|
+
menuItem: BreadcrumbMenuItemConfig;
|
|
6147
|
+
parentItem: BreadcrumbItemConfig;
|
|
6148
|
+
}>;
|
|
5720
6149
|
onClick?: DbEventHandler<{
|
|
5721
6150
|
item: BreadcrumbItemConfig;
|
|
5722
6151
|
}>;
|
|
5723
6152
|
onDbClick?: DbEventHandler<{
|
|
5724
6153
|
item: BreadcrumbItemConfig;
|
|
5725
6154
|
}>;
|
|
6155
|
+
onDbMenuClick?: DbEventHandler<{
|
|
6156
|
+
menuItem: BreadcrumbMenuItemConfig;
|
|
6157
|
+
parentItem: BreadcrumbItemConfig;
|
|
6158
|
+
}>;
|
|
5726
6159
|
};
|
|
5727
6160
|
type PaginationProps = WebComponentProps & {
|
|
5728
6161
|
currentPage?: number;
|
|
@@ -6247,6 +6680,194 @@ type ReorderProps = WebComponentProps & {
|
|
|
6247
6680
|
items: ReorderItem[];
|
|
6248
6681
|
}>;
|
|
6249
6682
|
};
|
|
6683
|
+
type KanbanTag = {
|
|
6684
|
+
label: string;
|
|
6685
|
+
variant?: 'default' | 'primary' | 'success' | 'warning' | 'danger' | 'info' | 'neutral';
|
|
6686
|
+
};
|
|
6687
|
+
type KanbanAssignee = {
|
|
6688
|
+
name: string;
|
|
6689
|
+
initials?: string;
|
|
6690
|
+
avatar?: string;
|
|
6691
|
+
};
|
|
6692
|
+
type KanbanCard = {
|
|
6693
|
+
id: string;
|
|
6694
|
+
title: string;
|
|
6695
|
+
description?: string;
|
|
6696
|
+
tags?: KanbanTag[];
|
|
6697
|
+
assignee?: KanbanAssignee;
|
|
6698
|
+
priority?: 'low' | 'medium' | 'high' | 'urgent';
|
|
6699
|
+
dueDate?: string;
|
|
6700
|
+
disabled?: boolean;
|
|
6701
|
+
};
|
|
6702
|
+
type KanbanColumn = {
|
|
6703
|
+
id: string;
|
|
6704
|
+
title: string;
|
|
6705
|
+
cards: KanbanCard[];
|
|
6706
|
+
limit?: number;
|
|
6707
|
+
color?: string;
|
|
6708
|
+
};
|
|
6709
|
+
type KanbanProps = WebComponentProps & {
|
|
6710
|
+
columns?: KanbanColumn[] | string;
|
|
6711
|
+
size?: 's' | 'm' | 'l';
|
|
6712
|
+
draggable?: boolean;
|
|
6713
|
+
showColumnCount?: boolean;
|
|
6714
|
+
showAddCard?: boolean;
|
|
6715
|
+
allowCrossColumn?: boolean;
|
|
6716
|
+
fullWidth?: boolean;
|
|
6717
|
+
disabled?: boolean;
|
|
6718
|
+
emptyColumnText?: string;
|
|
6719
|
+
onChange?: DbEventHandler<{
|
|
6720
|
+
columns: KanbanColumn[];
|
|
6721
|
+
}>;
|
|
6722
|
+
onCardMove?: DbEventHandler<{
|
|
6723
|
+
cardId: string;
|
|
6724
|
+
fromColumnId: string;
|
|
6725
|
+
toColumnId: string;
|
|
6726
|
+
fromIndex: number;
|
|
6727
|
+
toIndex: number;
|
|
6728
|
+
columns: KanbanColumn[];
|
|
6729
|
+
}>;
|
|
6730
|
+
onCardClick?: DbEventHandler<{
|
|
6731
|
+
card: KanbanCard;
|
|
6732
|
+
columnId: string;
|
|
6733
|
+
}>;
|
|
6734
|
+
onAddCard?: DbEventHandler<{
|
|
6735
|
+
columnId: string;
|
|
6736
|
+
}>;
|
|
6737
|
+
onDbChange?: DbEventHandler<{
|
|
6738
|
+
columns: KanbanColumn[];
|
|
6739
|
+
}>;
|
|
6740
|
+
onDbCardMove?: DbEventHandler<{
|
|
6741
|
+
cardId: string;
|
|
6742
|
+
fromColumnId: string;
|
|
6743
|
+
toColumnId: string;
|
|
6744
|
+
fromIndex: number;
|
|
6745
|
+
toIndex: number;
|
|
6746
|
+
columns: KanbanColumn[];
|
|
6747
|
+
}>;
|
|
6748
|
+
onDbCardClick?: DbEventHandler<{
|
|
6749
|
+
card: KanbanCard;
|
|
6750
|
+
columnId: string;
|
|
6751
|
+
}>;
|
|
6752
|
+
onDbAddCard?: DbEventHandler<{
|
|
6753
|
+
columnId: string;
|
|
6754
|
+
}>;
|
|
6755
|
+
};
|
|
6756
|
+
type GanttAssignee = {
|
|
6757
|
+
name: string;
|
|
6758
|
+
initials?: string;
|
|
6759
|
+
avatar?: string;
|
|
6760
|
+
};
|
|
6761
|
+
type GanttItem = {
|
|
6762
|
+
id: string;
|
|
6763
|
+
rowId: string;
|
|
6764
|
+
title: string;
|
|
6765
|
+
startDate: string;
|
|
6766
|
+
endDate: string;
|
|
6767
|
+
color?: string;
|
|
6768
|
+
assignee?: GanttAssignee;
|
|
6769
|
+
progress?: number;
|
|
6770
|
+
status?: 'on-track' | 'at-risk' | 'delayed' | 'completed';
|
|
6771
|
+
disabled?: boolean;
|
|
6772
|
+
};
|
|
6773
|
+
type GanttRow = {
|
|
6774
|
+
id: string;
|
|
6775
|
+
label: string;
|
|
6776
|
+
groupId?: string;
|
|
6777
|
+
};
|
|
6778
|
+
type GanttGroup = {
|
|
6779
|
+
id: string;
|
|
6780
|
+
title: string;
|
|
6781
|
+
color?: string;
|
|
6782
|
+
};
|
|
6783
|
+
type GanttProps = WebComponentProps & {
|
|
6784
|
+
groups?: GanttGroup[] | string;
|
|
6785
|
+
rows?: GanttRow[] | string;
|
|
6786
|
+
items?: GanttItem[] | string;
|
|
6787
|
+
startDate?: string;
|
|
6788
|
+
endDate?: string;
|
|
6789
|
+
today?: string;
|
|
6790
|
+
scale?: 'day' | 'week';
|
|
6791
|
+
cellWidth?: number;
|
|
6792
|
+
showWeekends?: boolean;
|
|
6793
|
+
showToday?: boolean;
|
|
6794
|
+
sidebarLabel?: string;
|
|
6795
|
+
fullWidth?: boolean;
|
|
6796
|
+
disabled?: boolean;
|
|
6797
|
+
draggable?: boolean;
|
|
6798
|
+
reorderable?: boolean;
|
|
6799
|
+
locale?: string;
|
|
6800
|
+
onItemClick?: DbEventHandler<{
|
|
6801
|
+
item: GanttItem;
|
|
6802
|
+
}>;
|
|
6803
|
+
onItemChange?: DbEventHandler<{
|
|
6804
|
+
item?: GanttItem;
|
|
6805
|
+
items: GanttItem[];
|
|
6806
|
+
action: string;
|
|
6807
|
+
}>;
|
|
6808
|
+
onChange?: DbEventHandler<{
|
|
6809
|
+
groups?: GanttGroup[];
|
|
6810
|
+
rows?: GanttRow[];
|
|
6811
|
+
items: GanttItem[];
|
|
6812
|
+
}>;
|
|
6813
|
+
onRowClick?: DbEventHandler<{
|
|
6814
|
+
row: GanttRow;
|
|
6815
|
+
}>;
|
|
6816
|
+
onRowReorder?: DbEventHandler<{
|
|
6817
|
+
rowId: string;
|
|
6818
|
+
groupId?: string;
|
|
6819
|
+
fromIndex: number;
|
|
6820
|
+
toIndex: number;
|
|
6821
|
+
groups: GanttGroup[];
|
|
6822
|
+
rows: GanttRow[];
|
|
6823
|
+
}>;
|
|
6824
|
+
onGroupReorder?: DbEventHandler<{
|
|
6825
|
+
groupId: string;
|
|
6826
|
+
fromIndex: number;
|
|
6827
|
+
toIndex: number;
|
|
6828
|
+
groups: GanttGroup[];
|
|
6829
|
+
rows: GanttRow[];
|
|
6830
|
+
}>;
|
|
6831
|
+
onGroupToggle?: DbEventHandler<{
|
|
6832
|
+
groupId: string;
|
|
6833
|
+
collapsed: boolean;
|
|
6834
|
+
}>;
|
|
6835
|
+
onDbItemClick?: DbEventHandler<{
|
|
6836
|
+
item: GanttItem;
|
|
6837
|
+
}>;
|
|
6838
|
+
onDbItemChange?: DbEventHandler<{
|
|
6839
|
+
item?: GanttItem;
|
|
6840
|
+
items: GanttItem[];
|
|
6841
|
+
action: string;
|
|
6842
|
+
}>;
|
|
6843
|
+
onDbChange?: DbEventHandler<{
|
|
6844
|
+
groups?: GanttGroup[];
|
|
6845
|
+
rows?: GanttRow[];
|
|
6846
|
+
items: GanttItem[];
|
|
6847
|
+
}>;
|
|
6848
|
+
onDbRowClick?: DbEventHandler<{
|
|
6849
|
+
row: GanttRow;
|
|
6850
|
+
}>;
|
|
6851
|
+
onDbRowReorder?: DbEventHandler<{
|
|
6852
|
+
rowId: string;
|
|
6853
|
+
groupId?: string;
|
|
6854
|
+
fromIndex: number;
|
|
6855
|
+
toIndex: number;
|
|
6856
|
+
groups: GanttGroup[];
|
|
6857
|
+
rows: GanttRow[];
|
|
6858
|
+
}>;
|
|
6859
|
+
onDbGroupReorder?: DbEventHandler<{
|
|
6860
|
+
groupId: string;
|
|
6861
|
+
fromIndex: number;
|
|
6862
|
+
toIndex: number;
|
|
6863
|
+
groups: GanttGroup[];
|
|
6864
|
+
rows: GanttRow[];
|
|
6865
|
+
}>;
|
|
6866
|
+
onDbGroupToggle?: DbEventHandler<{
|
|
6867
|
+
groupId: string;
|
|
6868
|
+
collapsed: boolean;
|
|
6869
|
+
}>;
|
|
6870
|
+
};
|
|
6250
6871
|
type CarouselItem = {
|
|
6251
6872
|
id: string;
|
|
6252
6873
|
title?: string;
|
|
@@ -6713,6 +7334,177 @@ type SectionAppDownloadProps = WebComponentProps & {
|
|
|
6713
7334
|
fullHeight?: boolean;
|
|
6714
7335
|
overflowVisible?: boolean;
|
|
6715
7336
|
};
|
|
7337
|
+
type SectionBlockBadge = {
|
|
7338
|
+
text: string;
|
|
7339
|
+
variant?: string;
|
|
7340
|
+
style?: string;
|
|
7341
|
+
size?: string;
|
|
7342
|
+
};
|
|
7343
|
+
type SectionCtaButton = {
|
|
7344
|
+
text: string;
|
|
7345
|
+
variant?: string;
|
|
7346
|
+
size?: string;
|
|
7347
|
+
href?: string;
|
|
7348
|
+
};
|
|
7349
|
+
type SectionCtaProps = WebComponentProps & {
|
|
7350
|
+
title?: string;
|
|
7351
|
+
headline?: string;
|
|
7352
|
+
subtitle?: string;
|
|
7353
|
+
description?: string;
|
|
7354
|
+
badge?: SectionBlockBadge | string;
|
|
7355
|
+
buttons?: SectionCtaButton[] | string;
|
|
7356
|
+
variant?: 'default' | 'banner' | 'card';
|
|
7357
|
+
theme?: 'light' | 'dark' | 'gradient' | 'tinted';
|
|
7358
|
+
align?: 'left' | 'center';
|
|
7359
|
+
contentPadding?: 's' | 'm' | 'l';
|
|
7360
|
+
size?: 's' | 'm' | 'l' | 'xl';
|
|
7361
|
+
fullWidth?: boolean;
|
|
7362
|
+
fullHeight?: boolean;
|
|
7363
|
+
overflowVisible?: boolean;
|
|
7364
|
+
onAction?: DbEventHandler<{
|
|
7365
|
+
action: SectionCtaButton;
|
|
7366
|
+
}>;
|
|
7367
|
+
onDbAction?: DbEventHandler<{
|
|
7368
|
+
action: SectionCtaButton;
|
|
7369
|
+
}>;
|
|
7370
|
+
};
|
|
7371
|
+
type SectionTestimonialItem = {
|
|
7372
|
+
quote: string;
|
|
7373
|
+
author: string;
|
|
7374
|
+
role?: string;
|
|
7375
|
+
company?: string;
|
|
7376
|
+
avatar?: string;
|
|
7377
|
+
rating?: number;
|
|
7378
|
+
};
|
|
7379
|
+
type SectionTestimonialsProps = WebComponentProps & {
|
|
7380
|
+
headline?: string;
|
|
7381
|
+
subtitle?: string;
|
|
7382
|
+
description?: string;
|
|
7383
|
+
badge?: SectionBlockBadge | string;
|
|
7384
|
+
items?: SectionTestimonialItem[] | string;
|
|
7385
|
+
variant?: 'grid' | 'carousel';
|
|
7386
|
+
columns?: 2 | 3 | string;
|
|
7387
|
+
align?: 'left' | 'center';
|
|
7388
|
+
contentPadding?: 's' | 'm' | 'l';
|
|
7389
|
+
size?: 's' | 'm' | 'l' | 'xl';
|
|
7390
|
+
fullWidth?: boolean;
|
|
7391
|
+
fullHeight?: boolean;
|
|
7392
|
+
overflowVisible?: boolean;
|
|
7393
|
+
};
|
|
7394
|
+
type SectionFeatureGridItem = {
|
|
7395
|
+
title: string;
|
|
7396
|
+
description: string;
|
|
7397
|
+
iconName?: string;
|
|
7398
|
+
};
|
|
7399
|
+
type SectionFeatureGridProps = WebComponentProps & {
|
|
7400
|
+
headline?: string;
|
|
7401
|
+
subtitle?: string;
|
|
7402
|
+
description?: string;
|
|
7403
|
+
badge?: SectionBlockBadge | string;
|
|
7404
|
+
items?: SectionFeatureGridItem[] | string;
|
|
7405
|
+
columns?: 2 | 3 | 4 | string;
|
|
7406
|
+
tinted?: boolean;
|
|
7407
|
+
align?: 'left' | 'center';
|
|
7408
|
+
contentPadding?: 's' | 'm' | 'l';
|
|
7409
|
+
size?: 's' | 'm' | 'l' | 'xl';
|
|
7410
|
+
fullWidth?: boolean;
|
|
7411
|
+
fullHeight?: boolean;
|
|
7412
|
+
overflowVisible?: boolean;
|
|
7413
|
+
};
|
|
7414
|
+
type SectionLogoCloudItem = {
|
|
7415
|
+
src?: string;
|
|
7416
|
+
alt: string;
|
|
7417
|
+
href?: string;
|
|
7418
|
+
label?: string;
|
|
7419
|
+
};
|
|
7420
|
+
type SectionLogoCloudProps = WebComponentProps & {
|
|
7421
|
+
headline?: string;
|
|
7422
|
+
subtitle?: string;
|
|
7423
|
+
description?: string;
|
|
7424
|
+
badge?: SectionBlockBadge | string;
|
|
7425
|
+
logos?: SectionLogoCloudItem[] | string;
|
|
7426
|
+
variant?: 'grid' | 'marquee';
|
|
7427
|
+
align?: 'left' | 'center';
|
|
7428
|
+
contentPadding?: 's' | 'm' | 'l';
|
|
7429
|
+
size?: 's' | 'm' | 'l' | 'xl';
|
|
7430
|
+
fullWidth?: boolean;
|
|
7431
|
+
fullHeight?: boolean;
|
|
7432
|
+
overflowVisible?: boolean;
|
|
7433
|
+
};
|
|
7434
|
+
type SectionStatItem = {
|
|
7435
|
+
value: string | number;
|
|
7436
|
+
label: string;
|
|
7437
|
+
description?: string;
|
|
7438
|
+
};
|
|
7439
|
+
type SectionStatsProps = WebComponentProps & {
|
|
7440
|
+
headline?: string;
|
|
7441
|
+
subtitle?: string;
|
|
7442
|
+
description?: string;
|
|
7443
|
+
badge?: SectionBlockBadge | string;
|
|
7444
|
+
items?: SectionStatItem[] | string;
|
|
7445
|
+
columns?: 2 | 3 | 4 | string;
|
|
7446
|
+
tinted?: boolean;
|
|
7447
|
+
align?: 'left' | 'center';
|
|
7448
|
+
contentPadding?: 's' | 'm' | 'l';
|
|
7449
|
+
size?: 's' | 'm' | 'l' | 'xl';
|
|
7450
|
+
fullWidth?: boolean;
|
|
7451
|
+
fullHeight?: boolean;
|
|
7452
|
+
overflowVisible?: boolean;
|
|
7453
|
+
};
|
|
7454
|
+
type SectionFaqItem = {
|
|
7455
|
+
id: string;
|
|
7456
|
+
question: string;
|
|
7457
|
+
answer: string;
|
|
7458
|
+
};
|
|
7459
|
+
type SectionFaqProps = WebComponentProps & {
|
|
7460
|
+
headline?: string;
|
|
7461
|
+
subtitle?: string;
|
|
7462
|
+
description?: string;
|
|
7463
|
+
badge?: SectionBlockBadge | string;
|
|
7464
|
+
items?: SectionFaqItem[] | string;
|
|
7465
|
+
allowMultiple?: boolean;
|
|
7466
|
+
align?: 'left' | 'center';
|
|
7467
|
+
contentPadding?: 's' | 'm' | 'l';
|
|
7468
|
+
size?: 's' | 'm' | 'l' | 'xl';
|
|
7469
|
+
fullWidth?: boolean;
|
|
7470
|
+
fullHeight?: boolean;
|
|
7471
|
+
overflowVisible?: boolean;
|
|
7472
|
+
};
|
|
7473
|
+
type SectionPricingCta = {
|
|
7474
|
+
label: string;
|
|
7475
|
+
href?: string;
|
|
7476
|
+
variant?: string;
|
|
7477
|
+
};
|
|
7478
|
+
type SectionPricingPlan = {
|
|
7479
|
+
name: string;
|
|
7480
|
+
price: string;
|
|
7481
|
+
period?: string;
|
|
7482
|
+
description?: string;
|
|
7483
|
+
features: string[];
|
|
7484
|
+
highlighted?: boolean;
|
|
7485
|
+
badge?: string;
|
|
7486
|
+
cta: SectionPricingCta;
|
|
7487
|
+
};
|
|
7488
|
+
type SectionPricingProps = WebComponentProps & {
|
|
7489
|
+
headline?: string;
|
|
7490
|
+
subtitle?: string;
|
|
7491
|
+
description?: string;
|
|
7492
|
+
badge?: SectionBlockBadge | string;
|
|
7493
|
+
plans?: SectionPricingPlan[] | string;
|
|
7494
|
+
columns?: 2 | 3 | string;
|
|
7495
|
+
align?: 'left' | 'center';
|
|
7496
|
+
contentPadding?: 's' | 'm' | 'l';
|
|
7497
|
+
size?: 's' | 'm' | 'l' | 'xl';
|
|
7498
|
+
fullWidth?: boolean;
|
|
7499
|
+
fullHeight?: boolean;
|
|
7500
|
+
overflowVisible?: boolean;
|
|
7501
|
+
onAction?: DbEventHandler<{
|
|
7502
|
+
plan: SectionPricingPlan;
|
|
7503
|
+
}>;
|
|
7504
|
+
onDbAction?: DbEventHandler<{
|
|
7505
|
+
plan: SectionPricingPlan;
|
|
7506
|
+
}>;
|
|
7507
|
+
};
|
|
6716
7508
|
type MarqueeImageItem = {
|
|
6717
7509
|
src: string;
|
|
6718
7510
|
alt?: string;
|
|
@@ -6997,6 +7789,8 @@ declare const Masonry: react.ForwardRefExoticComponent<Omit<MasonryProps, "ref">
|
|
|
6997
7789
|
declare const Carousel: react.ForwardRefExoticComponent<Omit<CarouselProps, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
6998
7790
|
declare const ColorPicker: react.ForwardRefExoticComponent<Omit<ColorPickerProps, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
6999
7791
|
declare const Reorder: react.ForwardRefExoticComponent<Omit<ReorderProps, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
7792
|
+
declare const Kanban: react.ForwardRefExoticComponent<Omit<KanbanProps, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
7793
|
+
declare const Gantt: react.ForwardRefExoticComponent<Omit<GanttProps, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
7000
7794
|
declare const ResizablePanels: react.ForwardRefExoticComponent<Omit<ResizablePanelsProps, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
7001
7795
|
declare const VideoPlayer: react.ForwardRefExoticComponent<Omit<VideoPlayerProps, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
7002
7796
|
declare const YouTubePlayer: react.ForwardRefExoticComponent<Omit<YouTubePlayerProps, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
@@ -7009,6 +7803,13 @@ declare const SectionFeature: react.ForwardRefExoticComponent<Omit<SectionFeatur
|
|
|
7009
7803
|
declare const AppBadge: react.ForwardRefExoticComponent<Omit<AppBadgeProps, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
7010
7804
|
declare const SectionContact: react.ForwardRefExoticComponent<Omit<SectionContactProps, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
7011
7805
|
declare const SectionAppDownload: react.ForwardRefExoticComponent<Omit<SectionAppDownloadProps, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
7806
|
+
declare const SectionCta: react.ForwardRefExoticComponent<Omit<SectionCtaProps, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
7807
|
+
declare const SectionTestimonials: react.ForwardRefExoticComponent<Omit<SectionTestimonialsProps, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
7808
|
+
declare const SectionFeatureGrid: react.ForwardRefExoticComponent<Omit<SectionFeatureGridProps, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
7809
|
+
declare const SectionLogoCloud: react.ForwardRefExoticComponent<Omit<SectionLogoCloudProps, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
7810
|
+
declare const SectionStats: react.ForwardRefExoticComponent<Omit<SectionStatsProps, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
7811
|
+
declare const SectionFaq: react.ForwardRefExoticComponent<Omit<SectionFaqProps, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
7812
|
+
declare const SectionPricing: react.ForwardRefExoticComponent<Omit<SectionPricingProps, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
7012
7813
|
declare const Marquee: react.ForwardRefExoticComponent<Omit<MarqueeProps, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
7013
7814
|
declare const Gradient: react.ForwardRefExoticComponent<Omit<GradientProps, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
7014
7815
|
declare const RandomGradient: react.ForwardRefExoticComponent<Omit<RandomGradientProps, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
@@ -7060,5 +7861,5 @@ declare const DatePicker: react.ForwardRefExoticComponent<Omit<DatePickerProps,
|
|
|
7060
7861
|
declare const TimePicker: react.ForwardRefExoticComponent<Omit<TimePickerProps, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
7061
7862
|
declare const Calendar: react.ForwardRefExoticComponent<Omit<CalendarProps, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
7062
7863
|
|
|
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 };
|
|
7864
|
+
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 };
|
|
7865
|
+
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, SidebarProject, SidebarPromoBanner, 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 };
|