@ti-tecnologico-de-monterrey-oficial/ds-ng 1.5.1220-c → 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';
@@ -1144,6 +1144,7 @@ declare class BmbTagComponent implements AfterViewInit {
1144
1144
  activityTag: _angular_core.InputSignal<boolean>;
1145
1145
  isDisabled: _angular_core.InputSignal<boolean>;
1146
1146
  isActive: _angular_core.InputSignal<boolean>;
1147
+ enableClick: _angular_core.InputSignal<boolean>;
1147
1148
  closedTag: _angular_core.OutputEmitterRef<string>;
1148
1149
  clickedTag: _angular_core.OutputEmitterRef<string>;
1149
1150
  groupedTags: never[];
@@ -1153,7 +1154,7 @@ declare class BmbTagComponent implements AfterViewInit {
1153
1154
  closeTag(text: string): void;
1154
1155
  clickTag(text: string): void;
1155
1156
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<BmbTagComponent, never>;
1156
- 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>;
1157
1158
  }
1158
1159
 
1159
1160
  type IBmbAlignTooltip = 'above' | 'below' | 'left' | 'right';
@@ -1616,7 +1617,7 @@ declare class BmbSidebarComponent implements OnInit {
1616
1617
  onFocusOut(): void;
1617
1618
  ngOnInit(): void;
1618
1619
  checkForButton({ isMobile, hasChildren }: IBmbIsButton): boolean;
1619
- getLink({ link, isMobile, hasChildren, }: IBmbIsButton): string;
1620
+ getLink({ link, isMobile, hasChildren }: IBmbIsButton): string;
1620
1621
  closeSidebar(): void;
1621
1622
  clearSelectElement(): void;
1622
1623
  toggleChildren(element: SidebarElement): void;
@@ -1866,10 +1867,10 @@ declare class BmbTablesComponent implements AfterViewInit, OnInit, OnChanges {
1866
1867
  originalData: any[];
1867
1868
  filterForm: FormGroup<{}>;
1868
1869
  tableDisplayColumns: string[];
1869
- tableColumns: TableColum[];
1870
+ tableColumns: TableColum$1[];
1870
1871
  expandedElement: any;
1871
1872
  selection: SelectionModel<any>;
1872
- tableConfig: TableConfig | undefined;
1873
+ tableConfig: TableConfig$1 | undefined;
1873
1874
  pressed: boolean;
1874
1875
  currentResizeIndex?: number;
1875
1876
  startX?: number;
@@ -1883,9 +1884,9 @@ declare class BmbTablesComponent implements AfterViewInit, OnInit, OnChanges {
1883
1884
  pageSize: _angular_core.InputSignal<number | undefined>;
1884
1885
  totalItems: _angular_core.InputSignal<number>;
1885
1886
  data: _angular_core.InputSignal<any[]>;
1886
- columns: _angular_core.InputSignal<TableColum[]>;
1887
+ columns: _angular_core.InputSignal<TableColum$1[]>;
1887
1888
  actionTemplate: _angular_core.InputSignal<TemplateRef<any> | null>;
1888
- config: _angular_core.InputSignal<TableConfig | undefined>;
1889
+ config: _angular_core.InputSignal<TableConfig$1 | undefined>;
1889
1890
  detailTemplate: _angular_core.InputSignal<TemplateRef<any> | null>;
1890
1891
  truncate: _angular_core.InputSignal<boolean>;
1891
1892
  wrap: _angular_core.InputSignal<boolean>;
@@ -1895,7 +1896,7 @@ declare class BmbTablesComponent implements AfterViewInit, OnInit, OnChanges {
1895
1896
  serverSide: _angular_core.InputSignal<boolean>;
1896
1897
  currentPage: _angular_core.ModelSignal<number>;
1897
1898
  filtersVisible: _angular_core.ModelSignal<boolean>;
1898
- filtersPosition: _angular_core.InputSignal<IBmbFiltersPosition>;
1899
+ filtersPosition: _angular_core.InputSignal<IBmbFiltersPosition$1>;
1899
1900
  select: EventEmitter<any>;
1900
1901
  clickedRow: EventEmitter<any>;
1901
1902
  searchChange: EventEmitter<string>;
@@ -1910,12 +1911,12 @@ declare class BmbTablesComponent implements AfterViewInit, OnInit, OnChanges {
1910
1911
  headerCellRef: ElementRef;
1911
1912
  cellRef: ElementRef;
1912
1913
  onResize(event: any): void;
1913
- parsedFiltersColumns: _angular_core.Signal<TableColum[]>;
1914
+ parsedFiltersColumns: _angular_core.Signal<TableColum$1[]>;
1914
1915
  constructor(renderer: Renderer2, sanitizer: DomSanitizer, cdr: ChangeDetectorRef);
1915
1916
  ngOnChanges(changes: SimpleChanges): void;
1916
1917
  ngOnInit(): void;
1917
1918
  parseData(data: any[]): void;
1918
- parseColumns(columns: TableColum[]): void;
1919
+ parseColumns(columns: TableColum$1[]): void;
1919
1920
  sanitizeHTML(label: string): SafeHtml;
1920
1921
  ngAfterViewInit(): void;
1921
1922
  private applyColumnsAndConfig;
@@ -1925,7 +1926,7 @@ declare class BmbTablesComponent implements AfterViewInit, OnInit, OnChanges {
1925
1926
  getCellData(index: number): any;
1926
1927
  onResizeColumn(event: any, index: number): void;
1927
1928
  onSelect(): void;
1928
- setConfig(config: TableConfig): void;
1929
+ setConfig(config: TableConfig$1): void;
1929
1930
  isAllSelected(): boolean;
1930
1931
  toggleAllRows(): void;
1931
1932
  checkboxLabel(row?: any): string;
@@ -3840,5 +3841,120 @@ declare class BmbNativeModalComponent {
3840
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>;
3841
3842
  }
3842
3843
 
3843
- 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, 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 };
3844
- 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, 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, TableConfig, Target };
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-c",
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",