@telcomdev/ui 0.1.44 → 0.1.45

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@telcomdev/ui",
3
- "version": "0.1.44",
3
+ "version": "0.1.45",
4
4
  "description": "Librería UI reutilizable para los sistemas TelcomDev.",
5
5
  "keywords": [
6
6
  "angular",
@@ -2110,6 +2110,7 @@ declare class TdTabs implements AfterContentInit, OnDestroy {
2110
2110
  private tabsChange?;
2111
2111
  private requestedIndex;
2112
2112
  private tabQuery;
2113
+ private actionsSlot?;
2113
2114
  private tabList?;
2114
2115
  private tabButtons;
2115
2116
  set selectedIndex(value: number);
@@ -2130,6 +2131,7 @@ declare class TdTabs implements AfterContentInit, OnDestroy {
2130
2131
  protected tabs: readonly TdTab[];
2131
2132
  protected activeIndex: number;
2132
2133
  protected get activeTab(): TdTab | null;
2134
+ protected get hasActions(): boolean;
2133
2135
  ngAfterContentInit(): void;
2134
2136
  ngOnDestroy(): void;
2135
2137
  protected select(index: number, focus?: boolean): void;
@@ -2144,7 +2146,7 @@ declare class TdTabs implements AfterContentInit, OnDestroy {
2144
2146
  private focusButton;
2145
2147
  private ensureTabVisible;
2146
2148
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<TdTabs, never>;
2147
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<TdTabs, "td-tabs", never, { "selectedIndex": { "alias": "selectedIndex"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "alignment": { "alias": "alignment"; "required": false; }; "stretch": { "alias": "stretch"; "required": false; }; "dark": { "alias": "dark"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "panelFocusable": { "alias": "panelFocusable"; "required": false; }; "contentHeight": { "alias": "contentHeight"; "required": false; }; "scrollableContent": { "alias": "scrollableContent"; "required": false; }; "scrollMode": { "alias": "scrollMode"; "required": false; }; "actionsPlacement": { "alias": "actionsPlacement"; "required": false; }; }, { "selectedIndexChange": "selectedIndexChange"; "tabChange": "tabChange"; }, ["tabQuery"], ["[tdTabsActions]"], true, never>;
2149
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TdTabs, "td-tabs", never, { "selectedIndex": { "alias": "selectedIndex"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "alignment": { "alias": "alignment"; "required": false; }; "stretch": { "alias": "stretch"; "required": false; }; "dark": { "alias": "dark"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "panelFocusable": { "alias": "panelFocusable"; "required": false; }; "contentHeight": { "alias": "contentHeight"; "required": false; }; "scrollableContent": { "alias": "scrollableContent"; "required": false; }; "scrollMode": { "alias": "scrollMode"; "required": false; }; "actionsPlacement": { "alias": "actionsPlacement"; "required": false; }; }, { "selectedIndexChange": "selectedIndexChange"; "tabChange": "tabChange"; }, ["actionsSlot", "tabQuery"], ["[tdTabsActions]"], true, never>;
2148
2150
  }
2149
2151
 
2150
2152
  type TdThemeMode = 'light' | 'dark' | 'system';