@telcomdev/ui 0.1.37 → 0.1.39
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/fesm2022/telcomdev-ui.mjs +197 -182
- package/fesm2022/telcomdev-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/telcomdev-ui.d.ts +5 -1
package/package.json
CHANGED
package/types/telcomdev-ui.d.ts
CHANGED
|
@@ -1610,6 +1610,7 @@ type TdLayoutMobileSidebarStyle = 'panel' | 'card';
|
|
|
1610
1610
|
declare class TdLayout implements AfterContentInit, AfterViewInit, OnDestroy {
|
|
1611
1611
|
private readonly headerSlot?;
|
|
1612
1612
|
private readonly sidebarSlot?;
|
|
1613
|
+
private readonly sidebarComponent?;
|
|
1613
1614
|
private readonly footerSlot?;
|
|
1614
1615
|
private readonly headerHost?;
|
|
1615
1616
|
private readonly sidebarHost?;
|
|
@@ -1617,8 +1618,10 @@ declare class TdLayout implements AfterContentInit, AfterViewInit, OnDestroy {
|
|
|
1617
1618
|
private readonly sidebarOpenState;
|
|
1618
1619
|
protected readonly mobile: _angular_core.WritableSignal<boolean>;
|
|
1619
1620
|
private resizeObserver?;
|
|
1621
|
+
private sidebarSelectionSubscription?;
|
|
1620
1622
|
fillViewport: boolean;
|
|
1621
1623
|
closeSidebarOnBackdrop: boolean;
|
|
1624
|
+
closeSidebarOnNavigation: boolean;
|
|
1622
1625
|
mobileBreakpoint: number;
|
|
1623
1626
|
sidebarPlacement: TdLayoutSidebarPlacement;
|
|
1624
1627
|
headerSpan: TdLayoutSectionSpan;
|
|
@@ -1645,9 +1648,10 @@ declare class TdLayout implements AfterContentInit, AfterViewInit, OnDestroy {
|
|
|
1645
1648
|
private updateHeaderOffset;
|
|
1646
1649
|
private setSidebarOpen;
|
|
1647
1650
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TdLayout, never>;
|
|
1648
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TdLayout, "td-layout, td-shell", never, { "fillViewport": { "alias": "fillViewport"; "required": false; }; "closeSidebarOnBackdrop": { "alias": "closeSidebarOnBackdrop"; "required": false; }; "mobileBreakpoint": { "alias": "mobileBreakpoint"; "required": false; }; "sidebarPlacement": { "alias": "sidebarPlacement"; "required": false; }; "headerSpan": { "alias": "headerSpan"; "required": false; }; "footerSpan": { "alias": "footerSpan"; "required": false; }; "mobileSidebarStyle": { "alias": "mobileSidebarStyle"; "required": false; }; "sidebarOpen": { "alias": "sidebarOpen"; "required": false; }; }, { "sidebarOpenChange": "sidebarOpenChange"; }, ["headerSlot", "sidebarSlot", "footerSlot"], ["[tdLayoutHeader]", "[tdLayoutSidebar]", "[tdLayoutContent]", "*", "[tdLayoutFooter]"], true, never>;
|
|
1651
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TdLayout, "td-layout, td-shell", never, { "fillViewport": { "alias": "fillViewport"; "required": false; }; "closeSidebarOnBackdrop": { "alias": "closeSidebarOnBackdrop"; "required": false; }; "closeSidebarOnNavigation": { "alias": "closeSidebarOnNavigation"; "required": false; }; "mobileBreakpoint": { "alias": "mobileBreakpoint"; "required": false; }; "sidebarPlacement": { "alias": "sidebarPlacement"; "required": false; }; "headerSpan": { "alias": "headerSpan"; "required": false; }; "footerSpan": { "alias": "footerSpan"; "required": false; }; "mobileSidebarStyle": { "alias": "mobileSidebarStyle"; "required": false; }; "sidebarOpen": { "alias": "sidebarOpen"; "required": false; }; }, { "sidebarOpenChange": "sidebarOpenChange"; }, ["headerSlot", "sidebarSlot", "sidebarComponent", "footerSlot"], ["[tdLayoutHeader]", "[tdLayoutSidebar]", "[tdLayoutContent]", "*", "[tdLayoutFooter]"], true, never>;
|
|
1649
1652
|
static ngAcceptInputType_fillViewport: unknown;
|
|
1650
1653
|
static ngAcceptInputType_closeSidebarOnBackdrop: unknown;
|
|
1654
|
+
static ngAcceptInputType_closeSidebarOnNavigation: unknown;
|
|
1651
1655
|
}
|
|
1652
1656
|
|
|
1653
1657
|
type TdRadioDirection = 'vertical' | 'horizontal';
|