@telcomdev/ui 0.1.27 → 0.1.28
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
package/types/telcomdev-ui.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _angular_core from '@angular/core';
|
|
2
|
-
import { AfterContentChecked, EventEmitter, ModelSignal, OutputEmitterRef, OnChanges, OnDestroy, SimpleChanges, InjectionToken, Type, AfterViewInit,
|
|
2
|
+
import { AfterContentChecked, EventEmitter, ModelSignal, OutputEmitterRef, OnChanges, OnDestroy, SimpleChanges, InjectionToken, Type, AfterViewInit, AfterContentInit, TemplateRef } from '@angular/core';
|
|
3
3
|
import { ControlValueAccessor } from '@angular/forms';
|
|
4
4
|
import { FormCheckboxControl, WithOptionalFieldTree, DisabledReason, ValidationError, FormValueControl } from '@angular/forms/signals';
|
|
5
5
|
import { CdkConnectedOverlay, ScrollStrategy, ConnectedPosition } from '@angular/cdk/overlay';
|
|
@@ -1348,6 +1348,57 @@ declare class TdTextarea implements AfterViewInit, ControlValueAccessor, FormVal
|
|
|
1348
1348
|
static ngAcceptInputType_autoResize: unknown;
|
|
1349
1349
|
}
|
|
1350
1350
|
|
|
1351
|
+
declare class TdLayoutHeaderSlot {
|
|
1352
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TdLayoutHeaderSlot, never>;
|
|
1353
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<TdLayoutHeaderSlot, "[tdLayoutHeader]", never, {}, {}, never, never, true, never>;
|
|
1354
|
+
}
|
|
1355
|
+
declare class TdLayoutSidebarSlot {
|
|
1356
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TdLayoutSidebarSlot, never>;
|
|
1357
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<TdLayoutSidebarSlot, "[tdLayoutSidebar]", never, {}, {}, never, never, true, never>;
|
|
1358
|
+
}
|
|
1359
|
+
declare class TdLayoutContentSlot {
|
|
1360
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TdLayoutContentSlot, never>;
|
|
1361
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<TdLayoutContentSlot, "[tdLayoutContent]", never, {}, {}, never, never, true, never>;
|
|
1362
|
+
}
|
|
1363
|
+
declare class TdLayoutFooterSlot {
|
|
1364
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TdLayoutFooterSlot, never>;
|
|
1365
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<TdLayoutFooterSlot, "[tdLayoutFooter]", never, {}, {}, never, never, true, never>;
|
|
1366
|
+
}
|
|
1367
|
+
type TdLayoutSidebarPlacement = 'auto' | 'inline' | 'overlay';
|
|
1368
|
+
type TdLayoutSectionSpan = 'content' | 'full';
|
|
1369
|
+
declare class TdLayout implements AfterContentInit {
|
|
1370
|
+
private readonly headerSlot?;
|
|
1371
|
+
private readonly sidebarSlot?;
|
|
1372
|
+
private readonly footerSlot?;
|
|
1373
|
+
private readonly sidebarOpenState;
|
|
1374
|
+
protected readonly mobile: _angular_core.WritableSignal<boolean>;
|
|
1375
|
+
fillViewport: boolean;
|
|
1376
|
+
closeSidebarOnBackdrop: boolean;
|
|
1377
|
+
mobileBreakpoint: number;
|
|
1378
|
+
sidebarPlacement: TdLayoutSidebarPlacement;
|
|
1379
|
+
headerSpan: TdLayoutSectionSpan;
|
|
1380
|
+
footerSpan: TdLayoutSectionSpan;
|
|
1381
|
+
set sidebarOpen(value: boolean);
|
|
1382
|
+
get sidebarOpen(): boolean;
|
|
1383
|
+
readonly sidebarOpenChange: EventEmitter<boolean>;
|
|
1384
|
+
get hasHeader(): boolean;
|
|
1385
|
+
get hasSidebar(): boolean;
|
|
1386
|
+
get hasFooter(): boolean;
|
|
1387
|
+
ngAfterContentInit(): void;
|
|
1388
|
+
protected syncViewport(): void;
|
|
1389
|
+
protected sidebarAsOverlay(): boolean;
|
|
1390
|
+
protected headerFullWidth(): boolean;
|
|
1391
|
+
protected footerFullWidth(): boolean;
|
|
1392
|
+
openSidebar(): void;
|
|
1393
|
+
closeSidebar(): void;
|
|
1394
|
+
toggleSidebar(): void;
|
|
1395
|
+
private setSidebarOpen;
|
|
1396
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TdLayout, never>;
|
|
1397
|
+
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; }; "sidebarOpen": { "alias": "sidebarOpen"; "required": false; }; }, { "sidebarOpenChange": "sidebarOpenChange"; }, ["headerSlot", "sidebarSlot", "footerSlot"], ["[tdLayoutHeader]", "[tdLayoutSidebar]", "[tdLayoutHeader]", "[tdLayoutContent]", "*", "[tdLayoutFooter]", "[tdLayoutFooter]"], true, never>;
|
|
1398
|
+
static ngAcceptInputType_fillViewport: unknown;
|
|
1399
|
+
static ngAcceptInputType_closeSidebarOnBackdrop: unknown;
|
|
1400
|
+
}
|
|
1401
|
+
|
|
1351
1402
|
type TdRadioDirection = 'vertical' | 'horizontal';
|
|
1352
1403
|
type TdRadioVariant = 'default' | 'card';
|
|
1353
1404
|
interface TdRadioOption<T = unknown> {
|
|
@@ -1788,5 +1839,5 @@ declare class TdTooltip implements OnDestroy {
|
|
|
1788
1839
|
static ngAcceptInputType_tdTooltipDisabled: unknown;
|
|
1789
1840
|
}
|
|
1790
1841
|
|
|
1791
|
-
export { TD_DIALOG_CONFIG, TD_DIALOG_DATA, TD_ICONOS, TD_ICONOS_NOMBRES, TD_THEME_DARK_COLORS, TD_THEME_LIGHT_COLORS, TdAlert, TdAlerta, TdAutocompleteSelect, TdBadge, TdButton, TdCheckbox, TdDataTable, TdDatePicker, TdDialog, TdDialogActions, TdDialogClose, TdDialogPrimary, TdDialogRef, TdFileUpload, TdFileViewer, TdFileViewerService, TdFooter, TdHeader, TdIcon, TdIconoRegistry, TdInput, TdMenu, TdRadioGroup, TdSelect, TdSidebar, TdTab, TdTabs, TdTextarea, TdThemeService, TdTooltip, TelcomdevUi, createTdFormControlBridge };
|
|
1792
|
-
export type { MenuSidebar, TdAlertOptions, TdAlertType, TdAlertaOpciones, TdAlertaTipo, TdBadgePosition, TdBadgeSize, TdBadgeTone, TdBadgeVariant, TdButtonSize, TdButtonTone, TdButtonType, TdButtonVariant, TdDataTableAccion, TdDataTableAccionEvento, TdDataTableAccionesPresentacion, TdDataTableAlineacion, TdDataTableBoton, TdDataTableColumna, TdDataTableImagenConfig, TdDataTableImagenEvento, TdDataTableImagenForma, TdDataTableTipoColumna, TdDataTableTono, TdDatePickerMode, TdDatePickerValue, TdDateRange, TdDialogConfig, TdDialogPanelData, TdDialogRefLike, TdDialogTamano, TdErrorDisplay, TdFileAttachment, TdFileSource, TdFileUploadItem, TdFileUploadPreviewKind, TdFileUploadRejectReason, TdFileUploadRejected, TdFileUploadValue, TdFileUploadVariant, TdFileViewerArchivo, TdFileViewerKind, TdFileViewerOpenOptions, TdFormControlBridge, TdHeaderAccionPerfil, TdHeaderNotificacion, TdHeaderPerfilAccion, TdHeaderPerfilAccionTono, TdIconoDefinicion, TdIconoNombre, TdIconoPersonalizado, TdInputEmptyValue, TdInputMask, TdInputSanitize, TdInputSanitizeFn, TdInputSanitizePreset, TdInputValue, TdMenuBadge, TdMenuItem, TdMenuPosicion, TdMenuSeleccion, TdMenuTono, TdRadioDirection, TdRadioOption, TdRadioVariant, TdSelectAppearance, TdSelectOption, TdSelectOverflowText, TdSelectScrollBehavior, TdSidebarModoCerrado, TdSidebarSeleccion, TdSnackbarOpciones, TdSnackbarPosicion, TdSnackbarTipo, TdTabsAlignment, TdTabsVariant, TdTextareaEmptyValue, TdTextareaValue, TdThemeMode, TdThemePaletteColor, TdToastOptions, TdToastPosition, TdToastType, TdTooltipPosition, TdTooltipTone };
|
|
1842
|
+
export { TD_DIALOG_CONFIG, TD_DIALOG_DATA, TD_ICONOS, TD_ICONOS_NOMBRES, TD_THEME_DARK_COLORS, TD_THEME_LIGHT_COLORS, TdAlert, TdAlerta, TdAutocompleteSelect, TdBadge, TdButton, TdCheckbox, TdDataTable, TdDatePicker, TdDialog, TdDialogActions, TdDialogClose, TdDialogPrimary, TdDialogRef, TdFileUpload, TdFileViewer, TdFileViewerService, TdFooter, TdHeader, TdIcon, TdIconoRegistry, TdInput, TdLayout, TdLayoutContentSlot, TdLayoutFooterSlot, TdLayoutHeaderSlot, TdLayoutSidebarSlot, TdMenu, TdRadioGroup, TdSelect, TdSidebar, TdTab, TdTabs, TdTextarea, TdThemeService, TdTooltip, TelcomdevUi, createTdFormControlBridge };
|
|
1843
|
+
export type { MenuSidebar, TdAlertOptions, TdAlertType, TdAlertaOpciones, TdAlertaTipo, TdBadgePosition, TdBadgeSize, TdBadgeTone, TdBadgeVariant, TdButtonSize, TdButtonTone, TdButtonType, TdButtonVariant, TdDataTableAccion, TdDataTableAccionEvento, TdDataTableAccionesPresentacion, TdDataTableAlineacion, TdDataTableBoton, TdDataTableColumna, TdDataTableImagenConfig, TdDataTableImagenEvento, TdDataTableImagenForma, TdDataTableTipoColumna, TdDataTableTono, TdDatePickerMode, TdDatePickerValue, TdDateRange, TdDialogConfig, TdDialogPanelData, TdDialogRefLike, TdDialogTamano, TdErrorDisplay, TdFileAttachment, TdFileSource, TdFileUploadItem, TdFileUploadPreviewKind, TdFileUploadRejectReason, TdFileUploadRejected, TdFileUploadValue, TdFileUploadVariant, TdFileViewerArchivo, TdFileViewerKind, TdFileViewerOpenOptions, TdFormControlBridge, TdHeaderAccionPerfil, TdHeaderNotificacion, TdHeaderPerfilAccion, TdHeaderPerfilAccionTono, TdIconoDefinicion, TdIconoNombre, TdIconoPersonalizado, TdInputEmptyValue, TdInputMask, TdInputSanitize, TdInputSanitizeFn, TdInputSanitizePreset, TdInputValue, TdLayoutSectionSpan, TdLayoutSidebarPlacement, TdMenuBadge, TdMenuItem, TdMenuPosicion, TdMenuSeleccion, TdMenuTono, TdRadioDirection, TdRadioOption, TdRadioVariant, TdSelectAppearance, TdSelectOption, TdSelectOverflowText, TdSelectScrollBehavior, TdSidebarModoCerrado, TdSidebarSeleccion, TdSnackbarOpciones, TdSnackbarPosicion, TdSnackbarTipo, TdTabsAlignment, TdTabsVariant, TdTextareaEmptyValue, TdTextareaValue, TdThemeMode, TdThemePaletteColor, TdToastOptions, TdToastPosition, TdToastType, TdTooltipPosition, TdTooltipTone };
|