@ti-tecnologico-de-monterrey-oficial/ds-ng 1.5.1220-b → 1.5.1220-d
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/index.d.ts
CHANGED
|
@@ -258,7 +258,7 @@ type IBmbGrades = {
|
|
|
258
258
|
periods: IBmbPeriod[];
|
|
259
259
|
};
|
|
260
260
|
|
|
261
|
-
interface TableColum {
|
|
261
|
+
interface TableColum$1 {
|
|
262
262
|
label: string;
|
|
263
263
|
labelEn?: string;
|
|
264
264
|
def: string;
|
|
@@ -271,13 +271,13 @@ interface TableColum {
|
|
|
271
271
|
dateFormat?: string;
|
|
272
272
|
isFilterable?: boolean;
|
|
273
273
|
}
|
|
274
|
-
interface TableConfig {
|
|
274
|
+
interface TableConfig$1 {
|
|
275
275
|
isSelectable?: boolean;
|
|
276
276
|
isPaginable?: boolean;
|
|
277
277
|
isExpandible?: boolean;
|
|
278
278
|
showActions?: boolean;
|
|
279
279
|
}
|
|
280
|
-
type IBmbFiltersPosition = 'top' | 'right' | 'bottom' | 'left';
|
|
280
|
+
type IBmbFiltersPosition$1 = 'top' | 'right' | 'bottom' | 'left';
|
|
281
281
|
|
|
282
282
|
type SizeNames = 'xs' | 's' | 'm' | 'l' | 'xl' | 'none' | 'auto';
|
|
283
283
|
type IButtonAppearance = 'primary' | 'secondary-filled' | 'secondary-outlined' | 'destructive' | 'transparent';
|
|
@@ -1080,6 +1080,8 @@ declare class BmbInnerHeaderComponent {
|
|
|
1080
1080
|
subTitle: _angular_core.InputSignal<string>;
|
|
1081
1081
|
trailingIconPrimary: _angular_core.InputSignal<string>;
|
|
1082
1082
|
trailingIconSecondary: _angular_core.InputSignal<string>;
|
|
1083
|
+
disableTrailingIconPrimary: _angular_core.InputSignal<boolean>;
|
|
1084
|
+
disableTrailingIconSecondary: _angular_core.InputSignal<boolean>;
|
|
1083
1085
|
showClose: _angular_core.InputSignal<boolean>;
|
|
1084
1086
|
showReturn: _angular_core.InputSignal<boolean>;
|
|
1085
1087
|
showSearch: _angular_core.InputSignal<boolean>;
|
|
@@ -1099,7 +1101,7 @@ declare class BmbInnerHeaderComponent {
|
|
|
1099
1101
|
onSubmit(): void;
|
|
1100
1102
|
getFormControl(search: string): FormControl;
|
|
1101
1103
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BmbInnerHeaderComponent, never>;
|
|
1102
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BmbInnerHeaderComponent, "bmb-inner-header", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "placeholderSearch": { "alias": "placeholderSearch"; "required": false; "isSignal": true; }; "subTitle": { "alias": "subTitle"; "required": false; "isSignal": true; }; "trailingIconPrimary": { "alias": "trailingIconPrimary"; "required": false; "isSignal": true; }; "trailingIconSecondary": { "alias": "trailingIconSecondary"; "required": false; "isSignal": true; }; "showClose": { "alias": "showClose"; "required": false; "isSignal": true; }; "showReturn": { "alias": "showReturn"; "required": false; "isSignal": true; }; "showSearch": { "alias": "showSearch"; "required": false; "isSignal": true; }; }, { "onHandleTrailingPrimary": "onHandleTrailingPrimary"; "onHandleTrailingSecondary": "onHandleTrailingSecondary"; "onHandleBack": "onHandleBack"; "onHandleClose": "onHandleClose"; "searchData": "searchData"; }, never, ["*"], true, never>;
|
|
1104
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BmbInnerHeaderComponent, "bmb-inner-header", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "placeholderSearch": { "alias": "placeholderSearch"; "required": false; "isSignal": true; }; "subTitle": { "alias": "subTitle"; "required": false; "isSignal": true; }; "trailingIconPrimary": { "alias": "trailingIconPrimary"; "required": false; "isSignal": true; }; "trailingIconSecondary": { "alias": "trailingIconSecondary"; "required": false; "isSignal": true; }; "disableTrailingIconPrimary": { "alias": "disableTrailingIconPrimary"; "required": false; "isSignal": true; }; "disableTrailingIconSecondary": { "alias": "disableTrailingIconSecondary"; "required": false; "isSignal": true; }; "showClose": { "alias": "showClose"; "required": false; "isSignal": true; }; "showReturn": { "alias": "showReturn"; "required": false; "isSignal": true; }; "showSearch": { "alias": "showSearch"; "required": false; "isSignal": true; }; }, { "onHandleTrailingPrimary": "onHandleTrailingPrimary"; "onHandleTrailingSecondary": "onHandleTrailingSecondary"; "onHandleBack": "onHandleBack"; "onHandleClose": "onHandleClose"; "searchData": "searchData"; }, never, ["*"], true, never>;
|
|
1103
1105
|
}
|
|
1104
1106
|
|
|
1105
1107
|
declare class BmbPullWedgeComponent implements AfterViewInit, OnChanges {
|
|
@@ -1142,6 +1144,7 @@ declare class BmbTagComponent implements AfterViewInit {
|
|
|
1142
1144
|
activityTag: _angular_core.InputSignal<boolean>;
|
|
1143
1145
|
isDisabled: _angular_core.InputSignal<boolean>;
|
|
1144
1146
|
isActive: _angular_core.InputSignal<boolean>;
|
|
1147
|
+
enableClick: _angular_core.InputSignal<boolean>;
|
|
1145
1148
|
closedTag: _angular_core.OutputEmitterRef<string>;
|
|
1146
1149
|
clickedTag: _angular_core.OutputEmitterRef<string>;
|
|
1147
1150
|
groupedTags: never[];
|
|
@@ -1151,7 +1154,7 @@ declare class BmbTagComponent implements AfterViewInit {
|
|
|
1151
1154
|
closeTag(text: string): void;
|
|
1152
1155
|
clickTag(text: string): void;
|
|
1153
1156
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BmbTagComponent, never>;
|
|
1154
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BmbTagComponent, "bmb-tag", never, { "appearance": { "alias": "appearance"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; "grouped": { "alias": "grouped"; "required": false; "isSignal": true; }; "dismissible": { "alias": "dismissible"; "required": false; "isSignal": true; }; "rounded": { "alias": "rounded"; "required": false; "isSignal": true; }; "activityTag": { "alias": "activityTag"; "required": false; "isSignal": true; }; "isDisabled": { "alias": "isDisabled"; "required": false; "isSignal": true; }; "isActive": { "alias": "isActive"; "required": false; "isSignal": true; }; }, { "closedTag": "closedTag"; "clickedTag": "clickedTag"; }, never, never, true, never>;
|
|
1157
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BmbTagComponent, "bmb-tag", never, { "appearance": { "alias": "appearance"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; "grouped": { "alias": "grouped"; "required": false; "isSignal": true; }; "dismissible": { "alias": "dismissible"; "required": false; "isSignal": true; }; "rounded": { "alias": "rounded"; "required": false; "isSignal": true; }; "activityTag": { "alias": "activityTag"; "required": false; "isSignal": true; }; "isDisabled": { "alias": "isDisabled"; "required": false; "isSignal": true; }; "isActive": { "alias": "isActive"; "required": false; "isSignal": true; }; "enableClick": { "alias": "enableClick"; "required": false; "isSignal": true; }; }, { "closedTag": "closedTag"; "clickedTag": "clickedTag"; }, never, never, true, never>;
|
|
1155
1158
|
}
|
|
1156
1159
|
|
|
1157
1160
|
type IBmbAlignTooltip = 'above' | 'below' | 'left' | 'right';
|
|
@@ -1594,6 +1597,11 @@ interface IUserInformation {
|
|
|
1594
1597
|
role: string;
|
|
1595
1598
|
}
|
|
1596
1599
|
|
|
1600
|
+
interface IBmbIsButton {
|
|
1601
|
+
link?: string;
|
|
1602
|
+
isMobile: boolean;
|
|
1603
|
+
hasChildren: boolean;
|
|
1604
|
+
}
|
|
1597
1605
|
declare class BmbSidebarComponent implements OnInit {
|
|
1598
1606
|
elements: _angular_core.InputSignal<SidebarElement[][]>;
|
|
1599
1607
|
title: _angular_core.InputSignal<string>;
|
|
@@ -1608,7 +1616,8 @@ declare class BmbSidebarComponent implements OnInit {
|
|
|
1608
1616
|
onFocusIn(): void;
|
|
1609
1617
|
onFocusOut(): void;
|
|
1610
1618
|
ngOnInit(): void;
|
|
1611
|
-
|
|
1619
|
+
checkForButton({ isMobile, hasChildren }: IBmbIsButton): boolean;
|
|
1620
|
+
getLink({ link, isMobile, hasChildren }: IBmbIsButton): string;
|
|
1612
1621
|
closeSidebar(): void;
|
|
1613
1622
|
clearSelectElement(): void;
|
|
1614
1623
|
toggleChildren(element: SidebarElement): void;
|
|
@@ -1663,6 +1672,7 @@ declare class BmbCalendarComponent implements OnInit, AfterViewInit {
|
|
|
1663
1672
|
dateFormat: _angular_core.InputSignal<string>;
|
|
1664
1673
|
events: _angular_core.Signal<IBmbCalendarEvent[]>;
|
|
1665
1674
|
showFilterButton: _angular_core.InputSignal<boolean>;
|
|
1675
|
+
disableMobileFilter: _angular_core.InputSignal<boolean>;
|
|
1666
1676
|
visibleDate: _angular_core.ModelSignal<DateTime<boolean>>;
|
|
1667
1677
|
currentDate: _angular_core.InputSignal<string>;
|
|
1668
1678
|
onDateChange: _angular_core.OutputEmitterRef<any>;
|
|
@@ -1704,7 +1714,7 @@ declare class BmbCalendarComponent implements OnInit, AfterViewInit {
|
|
|
1704
1714
|
getCalendarName(name: string): string;
|
|
1705
1715
|
getBulletClass(name: string): string[];
|
|
1706
1716
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BmbCalendarComponent, never>;
|
|
1707
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BmbCalendarComponent, "bmb-calendar", never, { "view": { "alias": "view"; "required": false; "isSignal": true; }; "filters": { "alias": "filters"; "required": false; "isSignal": true; }; "calendarTimezone": { "alias": "calendarTimezone"; "required": false; "isSignal": true; }; "clientTimezone": { "alias": "clientTimezone"; "required": false; "isSignal": true; }; "lang": { "alias": "lang"; "required": false; "isSignal": true; }; "height": { "alias": "height"; "required": false; "isSignal": true; }; "startBusinessHour": { "alias": "startBusinessHour"; "required": false; "isSignal": true; }; "calendarTitle": { "alias": "calendarTitle"; "required": false; "isSignal": true; }; "dateFormat": { "alias": "dateFormat"; "required": false; "isSignal": true; }; "showFilterButton": { "alias": "showFilterButton"; "required": false; "isSignal": true; }; "visibleDate": { "alias": "visibleDate"; "required": false; "isSignal": true; }; "currentDate": { "alias": "currentDate"; "required": false; "isSignal": true; }; }, { "view": "viewChange"; "filters": "filtersChange"; "visibleDate": "visibleDateChange"; "onDateChange": "onDateChange"; "onClose": "onClose"; }, never, never, true, never>;
|
|
1717
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BmbCalendarComponent, "bmb-calendar", never, { "view": { "alias": "view"; "required": false; "isSignal": true; }; "filters": { "alias": "filters"; "required": false; "isSignal": true; }; "calendarTimezone": { "alias": "calendarTimezone"; "required": false; "isSignal": true; }; "clientTimezone": { "alias": "clientTimezone"; "required": false; "isSignal": true; }; "lang": { "alias": "lang"; "required": false; "isSignal": true; }; "height": { "alias": "height"; "required": false; "isSignal": true; }; "startBusinessHour": { "alias": "startBusinessHour"; "required": false; "isSignal": true; }; "calendarTitle": { "alias": "calendarTitle"; "required": false; "isSignal": true; }; "dateFormat": { "alias": "dateFormat"; "required": false; "isSignal": true; }; "showFilterButton": { "alias": "showFilterButton"; "required": false; "isSignal": true; }; "disableMobileFilter": { "alias": "disableMobileFilter"; "required": false; "isSignal": true; }; "visibleDate": { "alias": "visibleDate"; "required": false; "isSignal": true; }; "currentDate": { "alias": "currentDate"; "required": false; "isSignal": true; }; }, { "view": "viewChange"; "filters": "filtersChange"; "visibleDate": "visibleDateChange"; "onDateChange": "onDateChange"; "onClose": "onClose"; }, never, never, true, never>;
|
|
1708
1718
|
}
|
|
1709
1719
|
|
|
1710
1720
|
declare class BmbTopBarComponent implements OnInit {
|
|
@@ -1857,10 +1867,10 @@ declare class BmbTablesComponent implements AfterViewInit, OnInit, OnChanges {
|
|
|
1857
1867
|
originalData: any[];
|
|
1858
1868
|
filterForm: FormGroup<{}>;
|
|
1859
1869
|
tableDisplayColumns: string[];
|
|
1860
|
-
tableColumns: TableColum[];
|
|
1870
|
+
tableColumns: TableColum$1[];
|
|
1861
1871
|
expandedElement: any;
|
|
1862
1872
|
selection: SelectionModel<any>;
|
|
1863
|
-
tableConfig: TableConfig | undefined;
|
|
1873
|
+
tableConfig: TableConfig$1 | undefined;
|
|
1864
1874
|
pressed: boolean;
|
|
1865
1875
|
currentResizeIndex?: number;
|
|
1866
1876
|
startX?: number;
|
|
@@ -1874,9 +1884,9 @@ declare class BmbTablesComponent implements AfterViewInit, OnInit, OnChanges {
|
|
|
1874
1884
|
pageSize: _angular_core.InputSignal<number | undefined>;
|
|
1875
1885
|
totalItems: _angular_core.InputSignal<number>;
|
|
1876
1886
|
data: _angular_core.InputSignal<any[]>;
|
|
1877
|
-
columns: _angular_core.InputSignal<TableColum[]>;
|
|
1887
|
+
columns: _angular_core.InputSignal<TableColum$1[]>;
|
|
1878
1888
|
actionTemplate: _angular_core.InputSignal<TemplateRef<any> | null>;
|
|
1879
|
-
config: _angular_core.InputSignal<TableConfig | undefined>;
|
|
1889
|
+
config: _angular_core.InputSignal<TableConfig$1 | undefined>;
|
|
1880
1890
|
detailTemplate: _angular_core.InputSignal<TemplateRef<any> | null>;
|
|
1881
1891
|
truncate: _angular_core.InputSignal<boolean>;
|
|
1882
1892
|
wrap: _angular_core.InputSignal<boolean>;
|
|
@@ -1886,7 +1896,7 @@ declare class BmbTablesComponent implements AfterViewInit, OnInit, OnChanges {
|
|
|
1886
1896
|
serverSide: _angular_core.InputSignal<boolean>;
|
|
1887
1897
|
currentPage: _angular_core.ModelSignal<number>;
|
|
1888
1898
|
filtersVisible: _angular_core.ModelSignal<boolean>;
|
|
1889
|
-
filtersPosition: _angular_core.InputSignal<IBmbFiltersPosition>;
|
|
1899
|
+
filtersPosition: _angular_core.InputSignal<IBmbFiltersPosition$1>;
|
|
1890
1900
|
select: EventEmitter<any>;
|
|
1891
1901
|
clickedRow: EventEmitter<any>;
|
|
1892
1902
|
searchChange: EventEmitter<string>;
|
|
@@ -1901,12 +1911,12 @@ declare class BmbTablesComponent implements AfterViewInit, OnInit, OnChanges {
|
|
|
1901
1911
|
headerCellRef: ElementRef;
|
|
1902
1912
|
cellRef: ElementRef;
|
|
1903
1913
|
onResize(event: any): void;
|
|
1904
|
-
parsedFiltersColumns: _angular_core.Signal<TableColum[]>;
|
|
1914
|
+
parsedFiltersColumns: _angular_core.Signal<TableColum$1[]>;
|
|
1905
1915
|
constructor(renderer: Renderer2, sanitizer: DomSanitizer, cdr: ChangeDetectorRef);
|
|
1906
1916
|
ngOnChanges(changes: SimpleChanges): void;
|
|
1907
1917
|
ngOnInit(): void;
|
|
1908
1918
|
parseData(data: any[]): void;
|
|
1909
|
-
parseColumns(columns: TableColum[]): void;
|
|
1919
|
+
parseColumns(columns: TableColum$1[]): void;
|
|
1910
1920
|
sanitizeHTML(label: string): SafeHtml;
|
|
1911
1921
|
ngAfterViewInit(): void;
|
|
1912
1922
|
private applyColumnsAndConfig;
|
|
@@ -1916,7 +1926,7 @@ declare class BmbTablesComponent implements AfterViewInit, OnInit, OnChanges {
|
|
|
1916
1926
|
getCellData(index: number): any;
|
|
1917
1927
|
onResizeColumn(event: any, index: number): void;
|
|
1918
1928
|
onSelect(): void;
|
|
1919
|
-
setConfig(config: TableConfig): void;
|
|
1929
|
+
setConfig(config: TableConfig$1): void;
|
|
1920
1930
|
isAllSelected(): boolean;
|
|
1921
1931
|
toggleAllRows(): void;
|
|
1922
1932
|
checkboxLabel(row?: any): string;
|
|
@@ -3831,5 +3841,120 @@ declare class BmbNativeModalComponent {
|
|
|
3831
3841
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BmbNativeModalComponent, "bmb-native-modal", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "subtitle": { "alias": "subtitle"; "required": false; "isSignal": true; }; "content": { "alias": "content"; "required": false; "isSignal": true; }; "actions": { "alias": "actions"; "required": false; "isSignal": true; }; "modalId": { "alias": "modalId"; "required": true; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "iconStyle": { "alias": "iconStyle"; "required": false; "isSignal": true; }; "disableBackdropClose": { "alias": "disableBackdropClose"; "required": false; "isSignal": true; }; "hasBackdrop": { "alias": "hasBackdrop"; "required": false; "isSignal": true; }; "inputContext": { "alias": "inputContext"; "required": false; "isSignal": true; }; "outputContext": { "alias": "outputContext"; "required": false; "isSignal": true; }; }, { "actionsClicked": "actionsClicked"; "closeModalClicked": "closeModalClicked"; }, never, never, true, never>;
|
|
3832
3842
|
}
|
|
3833
3843
|
|
|
3834
|
-
|
|
3835
|
-
|
|
3844
|
+
interface TableColum {
|
|
3845
|
+
label: string;
|
|
3846
|
+
labelEn?: string;
|
|
3847
|
+
def: string;
|
|
3848
|
+
dataKey: string;
|
|
3849
|
+
htmlLabel?: TemplateRef<any>;
|
|
3850
|
+
templateActions?: TemplateRef<any>;
|
|
3851
|
+
width?: number;
|
|
3852
|
+
type?: 'string' | 'number' | 'date';
|
|
3853
|
+
icon?: string;
|
|
3854
|
+
dateFormat?: string;
|
|
3855
|
+
isFilterable?: boolean;
|
|
3856
|
+
}
|
|
3857
|
+
interface TableConfig {
|
|
3858
|
+
isSelectable?: boolean;
|
|
3859
|
+
isPaginable?: boolean;
|
|
3860
|
+
isExpandible?: boolean;
|
|
3861
|
+
showActions?: boolean;
|
|
3862
|
+
}
|
|
3863
|
+
type IBmbFiltersPosition = 'top' | 'right' | 'bottom' | 'left';
|
|
3864
|
+
type IBmbTableLang = 'en' | 'es';
|
|
3865
|
+
|
|
3866
|
+
declare class BmbTableLiteComponent implements OnInit, OnChanges {
|
|
3867
|
+
private cdr;
|
|
3868
|
+
private _rawColumns;
|
|
3869
|
+
private _rawConfig;
|
|
3870
|
+
originalData: any[];
|
|
3871
|
+
filteredData: any[];
|
|
3872
|
+
pageSlice: any[];
|
|
3873
|
+
expandedElement: any;
|
|
3874
|
+
selection: SelectionModel<any>;
|
|
3875
|
+
tableConfig: TableConfig | undefined;
|
|
3876
|
+
filterForm: FormGroup<{}>;
|
|
3877
|
+
searchControl: FormControl<string | null>;
|
|
3878
|
+
tableColumns: TableColum[];
|
|
3879
|
+
showSearch: _angular_core.InputSignal<boolean>;
|
|
3880
|
+
pageSize: _angular_core.InputSignal<number | undefined>;
|
|
3881
|
+
totalItems: _angular_core.InputSignal<number>;
|
|
3882
|
+
data: _angular_core.InputSignal<any[]>;
|
|
3883
|
+
columns: _angular_core.InputSignal<TableColum[]>;
|
|
3884
|
+
config: _angular_core.InputSignal<TableConfig | undefined>;
|
|
3885
|
+
truncate: _angular_core.InputSignal<boolean>;
|
|
3886
|
+
lang: _angular_core.InputSignal<IBmbTableLang>;
|
|
3887
|
+
serverSide: _angular_core.InputSignal<boolean>;
|
|
3888
|
+
filtersPosition: _angular_core.InputSignal<IBmbFiltersPosition>;
|
|
3889
|
+
initialTableSelection: _angular_core.InputSignal<number[]>;
|
|
3890
|
+
actionTemplate: _angular_core.InputSignal<TemplateRef<any> | null>;
|
|
3891
|
+
detailTemplate: _angular_core.InputSignal<TemplateRef<any> | null>;
|
|
3892
|
+
clearSelection: _angular_core.ModelSignal<boolean>;
|
|
3893
|
+
currentPage: _angular_core.ModelSignal<number>;
|
|
3894
|
+
filtersVisible: _angular_core.ModelSignal<boolean>;
|
|
3895
|
+
select: EventEmitter<any>;
|
|
3896
|
+
clickedRow: EventEmitter<any>;
|
|
3897
|
+
searchChange: EventEmitter<string>;
|
|
3898
|
+
filtersChange: EventEmitter<Record<string, any>>;
|
|
3899
|
+
searchModeChange: EventEmitter<"client" | "server">;
|
|
3900
|
+
pageChange: EventEmitter<{
|
|
3901
|
+
pageIndex: number;
|
|
3902
|
+
pageSize: number;
|
|
3903
|
+
}>;
|
|
3904
|
+
parsedFiltersColumns: _angular_core.Signal<TableColum[]>;
|
|
3905
|
+
constructor(cdr: ChangeDetectorRef);
|
|
3906
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
3907
|
+
ngOnInit(): void;
|
|
3908
|
+
parseData(data: any[]): void;
|
|
3909
|
+
parseColumns(columns: TableColum[]): void;
|
|
3910
|
+
setConfig(cfg: TableConfig): void;
|
|
3911
|
+
private applyColumnsAndConfig;
|
|
3912
|
+
setupDynamicFilters(): void;
|
|
3913
|
+
applyFilters(): void;
|
|
3914
|
+
get resolvedPageSize(): number;
|
|
3915
|
+
private applyClientPagination;
|
|
3916
|
+
onPageEvent(pageIndex: number): void;
|
|
3917
|
+
isFirstPage(): boolean;
|
|
3918
|
+
isLastPage(): boolean;
|
|
3919
|
+
isSinglePage(): boolean;
|
|
3920
|
+
lastPage(): number;
|
|
3921
|
+
goToFirstPage(): void;
|
|
3922
|
+
goToPreviousPage(): void;
|
|
3923
|
+
goToNextPage(): void;
|
|
3924
|
+
goToLastPage(): void;
|
|
3925
|
+
getPaginationText(): string;
|
|
3926
|
+
onSelectRow(row: any): void;
|
|
3927
|
+
onSelect(): void;
|
|
3928
|
+
isAllSelected(): boolean;
|
|
3929
|
+
toggleAllRows(): void;
|
|
3930
|
+
checkboxLabel(row?: any): string;
|
|
3931
|
+
isEven(rowIndex: number): boolean;
|
|
3932
|
+
isOdd(rowIndex: number): boolean;
|
|
3933
|
+
isTemplateRef(value: any): boolean;
|
|
3934
|
+
getCellClasses(row: any, columnKey: string, index: number): any;
|
|
3935
|
+
getHeaderCellClasses(i: number): any;
|
|
3936
|
+
getTableClasses(): string[];
|
|
3937
|
+
getFormControl(name: string): FormControl;
|
|
3938
|
+
toggleFilters(): void;
|
|
3939
|
+
get colCount(): number;
|
|
3940
|
+
get colCheckbox(): "0px" | "62px";
|
|
3941
|
+
get colExpand(): "0px" | "40px";
|
|
3942
|
+
get colActions(): "0px" | "80px";
|
|
3943
|
+
get hasCheckbox(): 1 | 0;
|
|
3944
|
+
get hasExpand(): 1 | 0;
|
|
3945
|
+
get hasActions(): 1 | 0;
|
|
3946
|
+
get cssVars(): {
|
|
3947
|
+
'--col-count': number;
|
|
3948
|
+
'--col-checkbox': string;
|
|
3949
|
+
'--col-expand': string;
|
|
3950
|
+
'--col-actions': string;
|
|
3951
|
+
'--grid-template': string;
|
|
3952
|
+
};
|
|
3953
|
+
trackByColumn(column: any): string | number;
|
|
3954
|
+
trackByRow(row: any): string | number;
|
|
3955
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BmbTableLiteComponent, never>;
|
|
3956
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BmbTableLiteComponent, "bmb-table-lite", never, { "showSearch": { "alias": "showSearch"; "required": false; "isSignal": true; }; "pageSize": { "alias": "pageSize"; "required": false; "isSignal": true; }; "totalItems": { "alias": "totalItems"; "required": false; "isSignal": true; }; "data": { "alias": "data"; "required": false; "isSignal": true; }; "columns": { "alias": "columns"; "required": false; "isSignal": true; }; "config": { "alias": "config"; "required": false; "isSignal": true; }; "truncate": { "alias": "truncate"; "required": false; "isSignal": true; }; "lang": { "alias": "lang"; "required": false; "isSignal": true; }; "serverSide": { "alias": "serverSide"; "required": false; "isSignal": true; }; "filtersPosition": { "alias": "filtersPosition"; "required": false; "isSignal": true; }; "initialTableSelection": { "alias": "initialTableSelection"; "required": false; "isSignal": true; }; "actionTemplate": { "alias": "actionTemplate"; "required": false; "isSignal": true; }; "detailTemplate": { "alias": "detailTemplate"; "required": false; "isSignal": true; }; "clearSelection": { "alias": "clearSelection"; "required": false; "isSignal": true; }; "currentPage": { "alias": "currentPage"; "required": false; "isSignal": true; }; "filtersVisible": { "alias": "filtersVisible"; "required": false; "isSignal": true; }; }, { "clearSelection": "clearSelectionChange"; "currentPage": "currentPageChange"; "filtersVisible": "filtersVisibleChange"; "select": "select"; "clickedRow": "clickedRow"; "searchChange": "searchChange"; "filtersChange": "filtersChange"; "searchModeChange": "searchModeChange"; "pageChange": "pageChange"; }, never, never, true, never>;
|
|
3957
|
+
}
|
|
3958
|
+
|
|
3959
|
+
export { BmbAcademicProgressComponent, BmbAccordionComponent, BmbAccordionControlDirective, BmbAccountStatementComponent, BmbActionIconComponent, BmbActionMenuComponent, BmbAdvertisementCardComponent, BmbAlertCenterComponent, BmbAlertCenterService, BmbBadgeComponent, BmbBalanceOverviewComponent, BmbBookmarkComponent, BmbBottomNavigationBarComponent, BmbBreadcrumbComponent, BmbButtonDirective, BmbButtonGroupDirective, BmbButtonIconComponent, BmbCalendarComponent, BmbCalendarService, BmbCardButtonComponent, BmbCardComponent, BmbCardContentComponent, BmbCardFooterComponent, BmbCardHeaderComponent, BmbCarouselComponent, BmbChatBarComponent, BmbChatBubblesComponent, BmbCheckboxComponent, BmbChevronTitleSelectorComponent, BmbContainerButtonComponent, BmbContainerComponent, BmbDateRangeComponent, BmbDatepickerComponent, BmbDigitalIdComponent, BmbDividerComponent, BmbDotPaginatorComponent, BmbDrawerOverlayComponent, BmbDropdownComponent, BmbDropdownMenuComponent, BmbDropzoneComponent, BmbEvaluationRubricComponent, BmbExternalLinkComponent, BmbFabComponent, BmbFilterCardComponent, BmbFocusElementComponent, BmbFormValidatorComponent, BmbFrequentAppsSelectorComponent, BmbGradeValueComponent, BmbGradesComponent, BmbHeaderMobileComponent, BmbHitoCardComponent, BmbHitoListComponent, BmbHomeCardChatComponent, BmbHomeCardComponent, BmbHomeSectionComponent, BmbIconComponent, BmbIconItemComponent, BmbIconStatusComponent, BmbIframeComponent, BmbImageComponent, BmbInnerHeaderComponent, BmbInputComponent, BmbInputPhoneNumberComponent, BmbInputTagsComponent, BmbInteractiveIconComponent, BmbInvoiceComponent, BmbItemComponent, BmbLayoutDirective, BmbLayoutGridDirective, BmbLayoutGridItemDirective, BmbLayoutItemDirective, BmbLegendComponent, BmbListGroupComponent, BmbListGroupItemComponent, BmbListItemsComponent, BmbLoaderComponent, BmbLoginComponent, BmbLoginOnboardingComponent, BmbLoginOnboardingService, BmbLogoComponent, BmbMediaCardComponent, BmbMitecLogoAnimationComponent, BmbMobileTemplatesComponent, BmbModalComponent, BmbMultiDotPaginatorComponent, BmbMultiDotPaginatorItemComponent, BmbNativeModalComponent, BmbNativeModalService, BmbNavigationBarComponent, BmbNoticeCardComponent, BmbNotificationCardComponent, BmbNotificationService, BmbOverlayComponent, BmbPaginatorComponent, BmbPortalComponent, BmbProfileComponent, BmbProgressBarComponent, BmbProgressCircleComponent, BmbProjectionContentService, BmbPullWedgeComponent, BmbPushNotificationComponent, BmbRadialComponent, BmbSearchInputComponent, BmbServerTableComponent, BmbSidebarComponent, BmbSimpleHeaderComponent, BmbSkeletonComponent, BmbSoundsCardComponent, BmbStatCounterComponent, BmbStepProgressBarComponent, BmbStudentActivityCardComponent, BmbSwitchComponent, BmbTabStudentActivityComponent, BmbTableLiteComponent, BmbTablesComponent, BmbTabsComponent, BmbTagComponent, BmbTextEditorComponent, BmbTextLinkComponent, BmbThemeComponent, BmbThreeColsComponent, BmbTimestreamCardComponent, BmbTimestreamComponent, BmbTitleContentComponent, BmbToastComponent, BmbTooltipComponent, BmbTopBarComponent, BmbTopBarItemComponent, BmbTotpComponent, BmbUserImageComponent, BmbUserProfileComponent, BmbUserProfileService, BmbUserSummaryComponent, BmbValueCounterComponent, BmbVerticalLayoutDirective, BmbVerticalLayoutItemDirective, BmbWebTemplatesComponent, BmbWheelMenuComponent, CircleProgressOptions, DsNgComponent, DsNgService, TabsService, defaultActionList, defaultBotList };
|
|
3960
|
+
export type { BmbIframeReferrerPolicy, BmbProgressCirclePathStatus, BmbSkeletonType, BmbTableLang, BmbToastAppearance, IAlignItemsOptions, IBbmBgAppearance, IBbmButtonGroupType, IBbmSidePosition, IBmbActionButton, IBmbActionHeader, IBmbActivityTags, IBmbAdditionalAction, IBmbAdvertisementCard, IBmbAdvertisementContent, IBmbAdvertisementData, IBmbAdvertisementImage, IBmbAlertCenterCategories, IBmbAlertCenterFooterEvent, IBmbAlertCenterFooterEventName, IBmbAlertCenterProtoEventFooter, IBmbAlertCenterTabConfig, IBmbAlertEmptyState, IBmbAlertTag, IBmbAlignTooltip, IBmbApp, IBmbAppearanceType, IBmbAuthenticateInfo, IBmbBadgeInfo, IBmbBgColor, IBmbBoxShadowStyle, IBmbBubblePosition, IBmbButtonAction, IBmbCalendarEvent, IBmbCalendarEventClick, IBmbCardNoticeDescription, IBmbCardType, IBmbChatGptIcons, IBmbChatMessage, IBmbClamp, IBmbClassDetail, IBmbCollaboratorProfileData, IBmbCommentEvalRubric, IBmbConcept, IBmbControlType, IBmbDataAlert, IBmbDataAlertDetails, IBmbDataAlertsEventType, IBmbDataAlertsOutput, IBmbDataAlertsParsed, IBmbDataTopBar, IBmbDropdownItem, IBmbElementDetail, IBmbError, IBmbEvalRubricButtons, IBmbEvaluationRubric, IBmbEventType, IBmbFiltersPosition$1 as IBmbFiltersPosition, IBmbFontWeightContent, IBmbFooterEvent, IBmbGenericAction, IBmbGradeType, IBmbGrades, IBmbHierarchyProfileData, IBmbHome, IBmbHorizontalPosition, IBmbIconPosition, IBmbImageInfo, IBmbInputAppearance, IBmbInputError, IBmbInputTooltipPosition, IBmbInputType, IBmbInteractiveIconAppearance, IBmbInteractiveIconType, IBmbInvoice, IBmbJustifyTooltip, IBmbLegendVariations, IBmbLinkConfiguration, IBmbLinkInfo, IBmbListItemsElement, IBmbLoginOnBoardingCustomization, IBmbLoginOnboarding, IBmbMediaCardLoading, IBmbMediaCardType, IBmbMenuEvent, IBmbMobileTemplateButton, IBmbMobileTemplateName, IBmbModalAlertStyle, IBmbModalSize, IBmbModalType, IBmbNameValuePair, IBmbNativeModal, IBmbNativeModalSize, IBmbNavigationBarIcon, IBmbNavigationBarIcons, IBmbNoticeCardContent, IBmbNoticeCardDescription, IBmbPartial, IBmbPeriod, IBmbProfileData, IBmbProgressBarTypes, IBmbProgressBarVariations, IBmbProjectedContentMode, IBmbProjectionContent, IBmbServerTableColumn, IBmbStatusAppearance, IBmbStudentProfileData, IBmbTab, IBmbTargetLink, IBmbTemplateName, IBmbTextLinkStyle, IBmbTimelineCustomEvent, IBmbTimestreamFilters, IBmbUserData, IBmbUserImageSize, IBmbUserInfo, IBotType, IButtonAppearance, IButtonSize, ICardButton, IChatBarActions, IColumSizeFull, IColumSizeMobile, IDropdownItem, IJustifyOptions, IMargin, IMinimalNotification, INotification, INotificationAction, IPositionButtonMenu, ISelectedDate, IStudentActivityAppearance, ITimelineDayEvent, ITimelineEvent, ITimelineEventParsed, ITimelineEventType, IUserInformation, MessageContent, ModalDataConfig, NotificationPositionX, NotificationPositionY, NotificationType, SidebarElement, SizeNames, TBmbMessageType, TableColum$1 as TableColum, TableConfig$1 as TableConfig, Target };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ti-tecnologico-de-monterrey-oficial/ds-ng",
|
|
3
|
-
"version": "1.5.1220-
|
|
3
|
+
"version": "1.5.1220-d",
|
|
4
4
|
"description": "Design System oficial del Tecnológico de Monterrey - Descubre cómo nuestro Design System no solo da forma a la estética, sino que también impulsa la consistencia en cada rincón de nuestro diseño, proporcionando una base sólida para construir experiencias memorables y coherentes. Únete a nosotros en este viaje donde la creatividad, coherencia y elegancia se encuentran para dar vida a un mundo visualmente armonioso y funcionalmente fluido.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"angular",
|