@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/index.d.ts
CHANGED
|
@@ -528,6 +528,8 @@ declare global {
|
|
|
528
528
|
interface AccordionItemConfig {
|
|
529
529
|
id?: string;
|
|
530
530
|
title: string;
|
|
531
|
+
/** 슬롯(content-N)이 없을 때 본문으로 렌더되는 텍스트 */
|
|
532
|
+
content?: string;
|
|
531
533
|
disabled?: boolean;
|
|
532
534
|
itemType?: 'icon' | 'number' | 'question' | 'none';
|
|
533
535
|
icon?: string;
|
|
@@ -769,6 +771,14 @@ declare global {
|
|
|
769
771
|
}
|
|
770
772
|
}
|
|
771
773
|
|
|
774
|
+
interface BreadcrumbMenuItem {
|
|
775
|
+
id?: string;
|
|
776
|
+
label: string;
|
|
777
|
+
href?: string;
|
|
778
|
+
active?: boolean;
|
|
779
|
+
disabled?: boolean;
|
|
780
|
+
icon?: string;
|
|
781
|
+
}
|
|
772
782
|
interface BreadcrumbItem {
|
|
773
783
|
id?: string;
|
|
774
784
|
label: string;
|
|
@@ -776,14 +786,35 @@ interface BreadcrumbItem {
|
|
|
776
786
|
active?: boolean;
|
|
777
787
|
disabled?: boolean;
|
|
778
788
|
icon?: string;
|
|
789
|
+
menu?: BreadcrumbMenuItem[];
|
|
779
790
|
}
|
|
780
791
|
declare class DbBreadcrumbs extends HTMLElement {
|
|
781
792
|
static get observedAttributes(): string[];
|
|
793
|
+
private openMenuId;
|
|
794
|
+
private onDocumentMouseDown;
|
|
795
|
+
private onDocumentKeyDown;
|
|
782
796
|
get items(): BreadcrumbItem[] | string;
|
|
783
797
|
set items(value: BreadcrumbItem[] | string);
|
|
784
798
|
connectedCallback(): void;
|
|
799
|
+
disconnectedCallback(): void;
|
|
785
800
|
attributeChangedCallback(): void;
|
|
801
|
+
private get menuDropdown();
|
|
802
|
+
private get maxLabelLength();
|
|
803
|
+
private get resolvedVariant();
|
|
804
|
+
private itemId;
|
|
805
|
+
private menuItemId;
|
|
786
806
|
private visibleItems;
|
|
807
|
+
private shouldUseDropdown;
|
|
808
|
+
private closeMenu;
|
|
809
|
+
private openMenu;
|
|
810
|
+
private toggleMenu;
|
|
811
|
+
private addGlobalListeners;
|
|
812
|
+
private removeGlobalListeners;
|
|
813
|
+
private updateDropdownStates;
|
|
814
|
+
private createLabel;
|
|
815
|
+
private createMenuItem;
|
|
816
|
+
private createDropdownItem;
|
|
817
|
+
private createStandardItem;
|
|
787
818
|
private render;
|
|
788
819
|
}
|
|
789
820
|
declare global {
|
|
@@ -1192,9 +1223,10 @@ declare class DbMenuItem extends HTMLElement {
|
|
|
1192
1223
|
get expanded(): boolean;
|
|
1193
1224
|
set expanded(value: boolean);
|
|
1194
1225
|
connectedCallback(): void;
|
|
1195
|
-
attributeChangedCallback(): void;
|
|
1196
1226
|
private iconSize;
|
|
1197
1227
|
private render;
|
|
1228
|
+
attributeChangedCallback(name: string): void;
|
|
1229
|
+
private syncExpandedState;
|
|
1198
1230
|
}
|
|
1199
1231
|
declare global {
|
|
1200
1232
|
interface HTMLElementTagNameMap {
|
|
@@ -1678,9 +1710,26 @@ interface DbSidebarUserProfile {
|
|
|
1678
1710
|
email?: string;
|
|
1679
1711
|
avatar?: string;
|
|
1680
1712
|
}
|
|
1713
|
+
interface DbSidebarProject {
|
|
1714
|
+
id: string;
|
|
1715
|
+
label: string;
|
|
1716
|
+
icon?: string;
|
|
1717
|
+
color?: string;
|
|
1718
|
+
href?: string;
|
|
1719
|
+
}
|
|
1720
|
+
interface DbSidebarPromoBanner {
|
|
1721
|
+
title: string;
|
|
1722
|
+
description?: string;
|
|
1723
|
+
ctaLabel?: string;
|
|
1724
|
+
ctaHref?: string;
|
|
1725
|
+
icon?: string;
|
|
1726
|
+
}
|
|
1681
1727
|
declare class DbSidebar extends HTMLElement {
|
|
1682
1728
|
private expandedItems;
|
|
1683
1729
|
private userMenuOpen;
|
|
1730
|
+
private projectMenuOpen;
|
|
1731
|
+
private flyoutItemId;
|
|
1732
|
+
private flyoutCloseTimer;
|
|
1684
1733
|
private outsideHandler;
|
|
1685
1734
|
static get observedAttributes(): string[];
|
|
1686
1735
|
connectedCallback(): void;
|
|
@@ -1695,17 +1744,52 @@ declare class DbSidebar extends HTMLElement {
|
|
|
1695
1744
|
set userMenuItems(value: DbSidebarItem[] | string);
|
|
1696
1745
|
get userProfile(): DbSidebarUserProfile | null;
|
|
1697
1746
|
set userProfile(value: DbSidebarUserProfile | string | null);
|
|
1747
|
+
get projects(): DbSidebarProject[];
|
|
1748
|
+
set projects(value: DbSidebarProject[] | string);
|
|
1749
|
+
get selectedProjectId(): string;
|
|
1750
|
+
set selectedProjectId(value: string);
|
|
1751
|
+
get projectManageLabel(): string;
|
|
1752
|
+
set projectManageLabel(value: string);
|
|
1753
|
+
get projectManageHref(): string;
|
|
1754
|
+
set projectManageHref(value: string);
|
|
1755
|
+
get projectSectionLabel(): string;
|
|
1756
|
+
set projectSectionLabel(value: string);
|
|
1757
|
+
get bottomItems(): DbSidebarItem[];
|
|
1758
|
+
set bottomItems(value: DbSidebarItem[] | string);
|
|
1759
|
+
get bottomSections(): DbSidebarSection[];
|
|
1760
|
+
set bottomSections(value: DbSidebarSection[] | string);
|
|
1761
|
+
get promoBanner(): DbSidebarPromoBanner | null;
|
|
1762
|
+
set promoBanner(value: DbSidebarPromoBanner | string | null);
|
|
1698
1763
|
private parseSections;
|
|
1699
1764
|
private parseUserMenuItems;
|
|
1700
1765
|
private parseUserProfile;
|
|
1766
|
+
private parseProjects;
|
|
1767
|
+
private parseBottomItems;
|
|
1768
|
+
private parseBottomSections;
|
|
1769
|
+
private parsePromoBanner;
|
|
1770
|
+
private getSelectedProject;
|
|
1701
1771
|
private bindOutsideClick;
|
|
1772
|
+
private closeOverlayMenus;
|
|
1773
|
+
private syncExclusiveAccordion;
|
|
1702
1774
|
private unbindOutsideClick;
|
|
1775
|
+
private cancelFlyoutClose;
|
|
1776
|
+
private showFlyout;
|
|
1777
|
+
private scheduleFlyoutClose;
|
|
1703
1778
|
private syncHostClasses;
|
|
1704
1779
|
private dispatchItemClick;
|
|
1705
1780
|
private dispatchUserMenuItemClick;
|
|
1706
|
-
private
|
|
1781
|
+
private dispatchProjectChange;
|
|
1782
|
+
private dispatchProjectManage;
|
|
1783
|
+
private dispatchPromoCtaClick;
|
|
1784
|
+
private createProjectAvatar;
|
|
1785
|
+
private createProjectSelector;
|
|
1786
|
+
private createFlyout;
|
|
1707
1787
|
private createSidebarMenuItem;
|
|
1788
|
+
private renderSectionList;
|
|
1708
1789
|
private renderNav;
|
|
1790
|
+
private renderBottomNav;
|
|
1791
|
+
private createUserDropdown;
|
|
1792
|
+
private createPromoBanner;
|
|
1709
1793
|
private render;
|
|
1710
1794
|
}
|
|
1711
1795
|
declare global {
|
|
@@ -2849,6 +2933,168 @@ declare global {
|
|
|
2849
2933
|
}
|
|
2850
2934
|
}
|
|
2851
2935
|
|
|
2936
|
+
type DbKanbanPriority = 'low' | 'medium' | 'high' | 'urgent';
|
|
2937
|
+
type DbKanbanTag = {
|
|
2938
|
+
label: string;
|
|
2939
|
+
variant?: 'default' | 'primary' | 'success' | 'warning' | 'danger' | 'info' | 'neutral';
|
|
2940
|
+
};
|
|
2941
|
+
type DbKanbanAssignee = {
|
|
2942
|
+
name: string;
|
|
2943
|
+
initials?: string;
|
|
2944
|
+
avatar?: string;
|
|
2945
|
+
};
|
|
2946
|
+
type DbKanbanCard = {
|
|
2947
|
+
id: string;
|
|
2948
|
+
title: string;
|
|
2949
|
+
description?: string;
|
|
2950
|
+
tags?: DbKanbanTag[];
|
|
2951
|
+
assignee?: DbKanbanAssignee;
|
|
2952
|
+
priority?: DbKanbanPriority;
|
|
2953
|
+
dueDate?: string;
|
|
2954
|
+
disabled?: boolean;
|
|
2955
|
+
};
|
|
2956
|
+
type DbKanbanColumn = {
|
|
2957
|
+
id: string;
|
|
2958
|
+
title: string;
|
|
2959
|
+
cards: DbKanbanCard[];
|
|
2960
|
+
limit?: number;
|
|
2961
|
+
color?: string;
|
|
2962
|
+
};
|
|
2963
|
+
declare class DbKanban extends HTMLElement {
|
|
2964
|
+
private dragState;
|
|
2965
|
+
private dropTarget;
|
|
2966
|
+
static get observedAttributes(): string[];
|
|
2967
|
+
get columns(): DbKanbanColumn[];
|
|
2968
|
+
set columns(value: DbKanbanColumn[] | string);
|
|
2969
|
+
connectedCallback(): void;
|
|
2970
|
+
disconnectedCallback(): void;
|
|
2971
|
+
attributeChangedCallback(): void;
|
|
2972
|
+
private getBool;
|
|
2973
|
+
private getOption;
|
|
2974
|
+
private emitChange;
|
|
2975
|
+
private emitCardMove;
|
|
2976
|
+
private findCardLocation;
|
|
2977
|
+
private getAdjustedDropIndex;
|
|
2978
|
+
private isValidDropTarget;
|
|
2979
|
+
private moveCard;
|
|
2980
|
+
private setDropTarget;
|
|
2981
|
+
private resetDragState;
|
|
2982
|
+
private updateDragClasses;
|
|
2983
|
+
private getDropIndexFromPointer;
|
|
2984
|
+
private getDropIndexFromColumnPointer;
|
|
2985
|
+
private commitDrop;
|
|
2986
|
+
private handleBoardDragOver;
|
|
2987
|
+
private handleBoardDrop;
|
|
2988
|
+
private formatDueDate;
|
|
2989
|
+
private getInitials;
|
|
2990
|
+
private createTag;
|
|
2991
|
+
private createPriorityBadge;
|
|
2992
|
+
private createAssignee;
|
|
2993
|
+
private bindCardDrag;
|
|
2994
|
+
private createCard;
|
|
2995
|
+
private createColumn;
|
|
2996
|
+
private render;
|
|
2997
|
+
}
|
|
2998
|
+
declare global {
|
|
2999
|
+
interface HTMLElementTagNameMap {
|
|
3000
|
+
'db-kanban': DbKanban;
|
|
3001
|
+
}
|
|
3002
|
+
}
|
|
3003
|
+
|
|
3004
|
+
type DbGanttAssignee = {
|
|
3005
|
+
name: string;
|
|
3006
|
+
initials?: string;
|
|
3007
|
+
avatar?: string;
|
|
3008
|
+
};
|
|
3009
|
+
type DbGanttItemStatus = 'on-track' | 'at-risk' | 'delayed' | 'completed';
|
|
3010
|
+
type DbGanttItem = {
|
|
3011
|
+
id: string;
|
|
3012
|
+
rowId: string;
|
|
3013
|
+
title: string;
|
|
3014
|
+
startDate: string;
|
|
3015
|
+
endDate: string;
|
|
3016
|
+
color?: string;
|
|
3017
|
+
assignee?: DbGanttAssignee;
|
|
3018
|
+
progress?: number;
|
|
3019
|
+
status?: DbGanttItemStatus;
|
|
3020
|
+
disabled?: boolean;
|
|
3021
|
+
};
|
|
3022
|
+
type DbGanttRow = {
|
|
3023
|
+
id: string;
|
|
3024
|
+
label: string;
|
|
3025
|
+
groupId?: string;
|
|
3026
|
+
};
|
|
3027
|
+
type DbGanttGroup = {
|
|
3028
|
+
id: string;
|
|
3029
|
+
title: string;
|
|
3030
|
+
color?: string;
|
|
3031
|
+
};
|
|
3032
|
+
declare class DbGantt extends HTMLElement {
|
|
3033
|
+
private collapsedGroups;
|
|
3034
|
+
private dragState;
|
|
3035
|
+
private reorderState;
|
|
3036
|
+
private reorderDropIndex;
|
|
3037
|
+
private suppressRender;
|
|
3038
|
+
private didDrag;
|
|
3039
|
+
static get observedAttributes(): string[];
|
|
3040
|
+
get groups(): DbGanttGroup[];
|
|
3041
|
+
set groups(value: DbGanttGroup[] | string);
|
|
3042
|
+
get rows(): DbGanttRow[];
|
|
3043
|
+
set rows(value: DbGanttRow[] | string);
|
|
3044
|
+
get items(): DbGanttItem[];
|
|
3045
|
+
set items(value: DbGanttItem[] | string);
|
|
3046
|
+
connectedCallback(): void;
|
|
3047
|
+
disconnectedCallback(): void;
|
|
3048
|
+
attributeChangedCallback(): void;
|
|
3049
|
+
private parseJson;
|
|
3050
|
+
private getBool;
|
|
3051
|
+
private getNumber;
|
|
3052
|
+
private getOption;
|
|
3053
|
+
private getLocale;
|
|
3054
|
+
private getWeekdays;
|
|
3055
|
+
private getViewRange;
|
|
3056
|
+
private getTodayDate;
|
|
3057
|
+
private getDateColumns;
|
|
3058
|
+
private getVisibleRows;
|
|
3059
|
+
private getMonthSegments;
|
|
3060
|
+
private getInitials;
|
|
3061
|
+
private updateItem;
|
|
3062
|
+
private emitItemsChange;
|
|
3063
|
+
private applyBarGeometry;
|
|
3064
|
+
private handlePointerMove;
|
|
3065
|
+
private handlePointerUp;
|
|
3066
|
+
private startBarDrag;
|
|
3067
|
+
private canReorder;
|
|
3068
|
+
private createDragHandle;
|
|
3069
|
+
private getGroupIndex;
|
|
3070
|
+
private getRowScope;
|
|
3071
|
+
private getRowIndexInScope;
|
|
3072
|
+
private getReorderTargets;
|
|
3073
|
+
private startReorderDrag;
|
|
3074
|
+
private updateReorderDropTarget;
|
|
3075
|
+
private clearReorderIndicators;
|
|
3076
|
+
private finishReorderDrag;
|
|
3077
|
+
private emitStructureChange;
|
|
3078
|
+
private reorderGroups;
|
|
3079
|
+
private reorderRows;
|
|
3080
|
+
private createGroupBadge;
|
|
3081
|
+
private createGroupChevron;
|
|
3082
|
+
private createAssignee;
|
|
3083
|
+
private createStatusIcon;
|
|
3084
|
+
private deriveSummaryColor;
|
|
3085
|
+
private getGroupSummary;
|
|
3086
|
+
private applyBarTone;
|
|
3087
|
+
private createGroupSummaryBar;
|
|
3088
|
+
private createBar;
|
|
3089
|
+
private toggleGroup;
|
|
3090
|
+
private render;
|
|
3091
|
+
}
|
|
3092
|
+
declare global {
|
|
3093
|
+
interface HTMLElementTagNameMap {
|
|
3094
|
+
'db-gantt': DbGantt;
|
|
3095
|
+
}
|
|
3096
|
+
}
|
|
3097
|
+
|
|
2852
3098
|
declare class DbResizablePanels extends HTMLElement {
|
|
2853
3099
|
private container?;
|
|
2854
3100
|
private contentEl?;
|
|
@@ -3205,8 +3451,8 @@ interface FeatureAction {
|
|
|
3205
3451
|
declare class DbSectionFeature extends HTMLElement {
|
|
3206
3452
|
static get observedAttributes(): string[];
|
|
3207
3453
|
private built;
|
|
3208
|
-
private
|
|
3209
|
-
private
|
|
3454
|
+
private innerEl?;
|
|
3455
|
+
private contentEl?;
|
|
3210
3456
|
private badgeEl?;
|
|
3211
3457
|
private headlineEl?;
|
|
3212
3458
|
private subtitleEl?;
|
|
@@ -3251,9 +3497,7 @@ declare global {
|
|
|
3251
3497
|
declare class DbSectionContact extends HTMLElement {
|
|
3252
3498
|
static get observedAttributes(): string[];
|
|
3253
3499
|
private built;
|
|
3254
|
-
private
|
|
3255
|
-
private wrapEl?;
|
|
3256
|
-
private contactWrapEl?;
|
|
3500
|
+
private innerEl?;
|
|
3257
3501
|
private titleEl?;
|
|
3258
3502
|
private descriptionEl?;
|
|
3259
3503
|
private actionEl?;
|
|
@@ -3280,8 +3524,6 @@ interface DownloadStore {
|
|
|
3280
3524
|
declare class DbSectionAppDownload extends HTMLElement {
|
|
3281
3525
|
static get observedAttributes(): string[];
|
|
3282
3526
|
private built;
|
|
3283
|
-
private sectionEl?;
|
|
3284
|
-
private wrapEl?;
|
|
3285
3527
|
private innerEl?;
|
|
3286
3528
|
private titleEl?;
|
|
3287
3529
|
private descriptionEl?;
|
|
@@ -3300,6 +3542,157 @@ declare global {
|
|
|
3300
3542
|
}
|
|
3301
3543
|
}
|
|
3302
3544
|
|
|
3545
|
+
declare class DbSectionCta extends HTMLElement {
|
|
3546
|
+
static get observedAttributes(): string[];
|
|
3547
|
+
private built;
|
|
3548
|
+
private wrapEl?;
|
|
3549
|
+
private headerEl?;
|
|
3550
|
+
private badgeEl?;
|
|
3551
|
+
private headlineEl?;
|
|
3552
|
+
private subtitleEl?;
|
|
3553
|
+
private descriptionEl?;
|
|
3554
|
+
private actionsEl?;
|
|
3555
|
+
connectedCallback(): void;
|
|
3556
|
+
attributeChangedCallback(): void;
|
|
3557
|
+
private parseBadge;
|
|
3558
|
+
private parseButtons;
|
|
3559
|
+
private build;
|
|
3560
|
+
private updateUI;
|
|
3561
|
+
}
|
|
3562
|
+
declare global {
|
|
3563
|
+
interface HTMLElementTagNameMap {
|
|
3564
|
+
'db-section-cta': DbSectionCta;
|
|
3565
|
+
}
|
|
3566
|
+
}
|
|
3567
|
+
|
|
3568
|
+
declare class DbSectionTestimonials extends HTMLElement {
|
|
3569
|
+
static get observedAttributes(): string[];
|
|
3570
|
+
private built;
|
|
3571
|
+
private carouselIndex;
|
|
3572
|
+
private innerEl?;
|
|
3573
|
+
private headerEl?;
|
|
3574
|
+
private contentEl?;
|
|
3575
|
+
private carouselViewport?;
|
|
3576
|
+
private carouselTrack?;
|
|
3577
|
+
private carouselIndicator?;
|
|
3578
|
+
private resizeObserver?;
|
|
3579
|
+
connectedCallback(): void;
|
|
3580
|
+
disconnectedCallback(): void;
|
|
3581
|
+
attributeChangedCallback(): void;
|
|
3582
|
+
private parseItems;
|
|
3583
|
+
private parseBadge;
|
|
3584
|
+
private buildHeader;
|
|
3585
|
+
private build;
|
|
3586
|
+
private createTestimonialEl;
|
|
3587
|
+
private updateHeader;
|
|
3588
|
+
private clampCarouselIndex;
|
|
3589
|
+
private updateCarouselTransform;
|
|
3590
|
+
private goToCarouselSlide;
|
|
3591
|
+
private renderGrid;
|
|
3592
|
+
private renderCarousel;
|
|
3593
|
+
private updateUI;
|
|
3594
|
+
}
|
|
3595
|
+
declare global {
|
|
3596
|
+
interface HTMLElementTagNameMap {
|
|
3597
|
+
'db-section-testimonials': DbSectionTestimonials;
|
|
3598
|
+
}
|
|
3599
|
+
}
|
|
3600
|
+
|
|
3601
|
+
declare class DbSectionFeatureGrid extends HTMLElement {
|
|
3602
|
+
static get observedAttributes(): string[];
|
|
3603
|
+
private built;
|
|
3604
|
+
private innerEl?;
|
|
3605
|
+
private headerEl?;
|
|
3606
|
+
private gridEl?;
|
|
3607
|
+
connectedCallback(): void;
|
|
3608
|
+
attributeChangedCallback(): void;
|
|
3609
|
+
private parseItems;
|
|
3610
|
+
private parseBadge;
|
|
3611
|
+
private build;
|
|
3612
|
+
private updateUI;
|
|
3613
|
+
}
|
|
3614
|
+
declare global {
|
|
3615
|
+
interface HTMLElementTagNameMap {
|
|
3616
|
+
'db-section-feature-grid': DbSectionFeatureGrid;
|
|
3617
|
+
}
|
|
3618
|
+
}
|
|
3619
|
+
|
|
3620
|
+
declare class DbSectionLogoCloud extends HTMLElement {
|
|
3621
|
+
static get observedAttributes(): string[];
|
|
3622
|
+
private built;
|
|
3623
|
+
private innerEl?;
|
|
3624
|
+
private headerEl?;
|
|
3625
|
+
private contentEl?;
|
|
3626
|
+
connectedCallback(): void;
|
|
3627
|
+
attributeChangedCallback(): void;
|
|
3628
|
+
private parseLogos;
|
|
3629
|
+
private parseBadge;
|
|
3630
|
+
private build;
|
|
3631
|
+
private updateUI;
|
|
3632
|
+
}
|
|
3633
|
+
declare global {
|
|
3634
|
+
interface HTMLElementTagNameMap {
|
|
3635
|
+
'db-section-logo-cloud': DbSectionLogoCloud;
|
|
3636
|
+
}
|
|
3637
|
+
}
|
|
3638
|
+
|
|
3639
|
+
declare class DbSectionStats extends HTMLElement {
|
|
3640
|
+
static get observedAttributes(): string[];
|
|
3641
|
+
private built;
|
|
3642
|
+
private innerEl?;
|
|
3643
|
+
private headerEl?;
|
|
3644
|
+
private gridEl?;
|
|
3645
|
+
connectedCallback(): void;
|
|
3646
|
+
attributeChangedCallback(): void;
|
|
3647
|
+
private parseItems;
|
|
3648
|
+
private parseBadge;
|
|
3649
|
+
private build;
|
|
3650
|
+
private updateUI;
|
|
3651
|
+
}
|
|
3652
|
+
declare global {
|
|
3653
|
+
interface HTMLElementTagNameMap {
|
|
3654
|
+
'db-section-stats': DbSectionStats;
|
|
3655
|
+
}
|
|
3656
|
+
}
|
|
3657
|
+
|
|
3658
|
+
declare class DbSectionFaq extends HTMLElement {
|
|
3659
|
+
static get observedAttributes(): string[];
|
|
3660
|
+
private built;
|
|
3661
|
+
private innerEl?;
|
|
3662
|
+
private headerEl?;
|
|
3663
|
+
private accordionEl?;
|
|
3664
|
+
connectedCallback(): void;
|
|
3665
|
+
attributeChangedCallback(): void;
|
|
3666
|
+
private parseItems;
|
|
3667
|
+
private parseBadge;
|
|
3668
|
+
private build;
|
|
3669
|
+
private updateUI;
|
|
3670
|
+
}
|
|
3671
|
+
declare global {
|
|
3672
|
+
interface HTMLElementTagNameMap {
|
|
3673
|
+
'db-section-faq': DbSectionFaq;
|
|
3674
|
+
}
|
|
3675
|
+
}
|
|
3676
|
+
|
|
3677
|
+
declare class DbSectionPricing extends HTMLElement {
|
|
3678
|
+
static get observedAttributes(): string[];
|
|
3679
|
+
private built;
|
|
3680
|
+
private innerEl?;
|
|
3681
|
+
private headerEl?;
|
|
3682
|
+
private gridEl?;
|
|
3683
|
+
connectedCallback(): void;
|
|
3684
|
+
attributeChangedCallback(): void;
|
|
3685
|
+
private parsePlans;
|
|
3686
|
+
private parseBadge;
|
|
3687
|
+
private build;
|
|
3688
|
+
private updateUI;
|
|
3689
|
+
}
|
|
3690
|
+
declare global {
|
|
3691
|
+
interface HTMLElementTagNameMap {
|
|
3692
|
+
'db-section-pricing': DbSectionPricing;
|
|
3693
|
+
}
|
|
3694
|
+
}
|
|
3695
|
+
|
|
3303
3696
|
declare class DbMarquee extends HTMLElement {
|
|
3304
3697
|
static get observedAttributes(): string[];
|
|
3305
3698
|
private built;
|
|
@@ -3851,5 +4244,5 @@ interface DbConfirmOptions {
|
|
|
3851
4244
|
/** 확인 대화상자를 띄우고, 확인 시 true / 취소(ESC·배경 포함) 시 false 로 resolve 합니다. */
|
|
3852
4245
|
declare function confirm(options: DbConfirmOptions): Promise<boolean>;
|
|
3853
4246
|
|
|
3854
|
-
export { DbAccordion, DbAdBanner, DbAlert, DbAnimationBackground, DbAnimationText, DbAppBadge, DbAudioPlayer, DbAvatar, DbBackdrop, DbBadge, DbBanner, DbBottomNavigation, DbBottomSheet, DbBreadcrumbs, DbButton, DbCalendar, DbCard, DbCarousel, DbCheckbox, DbChip, DbCodeBlock, DbColorPicker, DbConfirm, DbContainer, DbContextMenu, DbCountdown, DbCursorFollower, DbDatePicker, DbDivider, DbDrawer, DbDropdown, DbDropzone, DbEmptyState, DbFileUploader, DbFloatingActionButton, DbFooter, DbForm, DbGradient, DbGrid, DbGridBackground, DbGridItem, DbImage, DbImageList, DbImagePlaceholder, DbIndicator, DbInput, DbLabel, DbLightbox, DbList, DbLogo, DbLottie, DbMarkdownEditor, DbMarquee, DbMasonry, DbMenuItem, DbModal, DbNavbar, DbOnboardingModal, DbPageHeader, DbPagination, DbPopover, DbProgress, DbProgressStep, DbProgressbar, DbRadio, DbRandomGradient, DbRangeSlider, DbRating, DbReorder, DbResizablePanels, DbScrollArea, DbSearchBar, DbSection, DbSectionAppDownload, DbSectionContact, DbSectionFeature, DbSectionHero, DbSegmentControl, DbSelect, DbShare, DbSidebar, DbSkeleton, DbSpinner, DbSplitView, DbStack, DbStat, DbStepper, DbTable, DbTabs, DbTestimonial, DbTextarea, DbTimePicker, DbTimeline, DbToast, DbToggle, DbToolbar, DbTooltip, DbTopBanner, DbTutorial, DbVideoPlayer, DbYouTubePlayer, confirm, confirm as dbConfirm, toast as dbToast, showToast, toast };
|
|
3855
|
-
export type { CalendarEventData, CalendarEventType, DbAlertAction, DbBannerAction, DbBottomNavigationItem, DbConfirmOptions, DbConfirmVariant, DbFooterCompanyInfo, DbFooterFamilySite, DbFooterLink, DbFooterLinkColumn, DbFooterSocialLink, DbFormFieldData, DbImageListItem, DbLightboxImage, DbNavbarItem, DbNavbarUserProfile, DbPageHeaderTabItem, DbSharePlatform, DbShareVariant, DbSidebarItem, DbSidebarSection, DbSidebarUserProfile, DbStatChange, DbTimelineItem, DbToastApi, DbToastHandle, DbToastOptions, DbToastPosition, DbToastStatus };
|
|
4247
|
+
export { DbAccordion, DbAdBanner, DbAlert, DbAnimationBackground, DbAnimationText, DbAppBadge, DbAudioPlayer, DbAvatar, DbBackdrop, DbBadge, DbBanner, DbBottomNavigation, DbBottomSheet, DbBreadcrumbs, DbButton, DbCalendar, DbCard, DbCarousel, DbCheckbox, DbChip, DbCodeBlock, DbColorPicker, DbConfirm, DbContainer, DbContextMenu, DbCountdown, DbCursorFollower, DbDatePicker, DbDivider, DbDrawer, DbDropdown, DbDropzone, DbEmptyState, DbFileUploader, DbFloatingActionButton, DbFooter, DbForm, DbGantt, DbGradient, DbGrid, DbGridBackground, DbGridItem, DbImage, DbImageList, DbImagePlaceholder, DbIndicator, DbInput, DbKanban, DbLabel, DbLightbox, DbList, DbLogo, DbLottie, DbMarkdownEditor, DbMarquee, DbMasonry, DbMenuItem, DbModal, DbNavbar, DbOnboardingModal, DbPageHeader, DbPagination, DbPopover, DbProgress, DbProgressStep, DbProgressbar, DbRadio, DbRandomGradient, DbRangeSlider, DbRating, DbReorder, DbResizablePanels, DbScrollArea, DbSearchBar, DbSection, DbSectionAppDownload, DbSectionContact, DbSectionCta, DbSectionFaq, DbSectionFeature, DbSectionFeatureGrid, DbSectionHero, DbSectionLogoCloud, DbSectionPricing, DbSectionStats, DbSectionTestimonials, DbSegmentControl, DbSelect, DbShare, DbSidebar, DbSkeleton, DbSpinner, DbSplitView, DbStack, DbStat, DbStepper, DbTable, DbTabs, DbTestimonial, DbTextarea, DbTimePicker, DbTimeline, DbToast, DbToggle, DbToolbar, DbTooltip, DbTopBanner, DbTutorial, DbVideoPlayer, DbYouTubePlayer, confirm, confirm as dbConfirm, toast as dbToast, showToast, toast };
|
|
4248
|
+
export type { CalendarEventData, CalendarEventType, DbAlertAction, DbBannerAction, DbBottomNavigationItem, DbConfirmOptions, DbConfirmVariant, DbFooterCompanyInfo, DbFooterFamilySite, DbFooterLink, DbFooterLinkColumn, DbFooterSocialLink, DbFormFieldData, DbGanttAssignee, DbGanttGroup, DbGanttItem, DbGanttItemStatus, DbGanttRow, DbImageListItem, DbKanbanAssignee, DbKanbanCard, DbKanbanColumn, DbKanbanPriority, DbKanbanTag, DbLightboxImage, DbNavbarItem, DbNavbarUserProfile, DbPageHeaderTabItem, DbSharePlatform, DbShareVariant, DbSidebarItem, DbSidebarProject, DbSidebarPromoBanner, DbSidebarSection, DbSidebarUserProfile, DbStatChange, DbTimelineItem, DbToastApi, DbToastHandle, DbToastOptions, DbToastPosition, DbToastStatus };
|