@ti-tecnologico-de-monterrey-oficial/ds-ng 1.5.1020-c → 1.5.1020-e

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
@@ -1,5 +1,5 @@
1
1
  import * as _angular_core from '@angular/core';
2
- import { TemplateRef, OnInit, AfterViewInit, OnDestroy, ElementRef, NgZone, ViewContainerRef, ChangeDetectorRef, Renderer2, SimpleChanges, OnChanges, EventEmitter, AfterContentInit, DoCheck, QueryList, KeyValueDiffers } from '@angular/core';
2
+ import { TemplateRef, ApplicationRef, EnvironmentInjector, OnInit, AfterViewInit, OnDestroy, ElementRef, NgZone, ViewContainerRef, ChangeDetectorRef, Renderer2, SimpleChanges, OnChanges, EventEmitter, AfterContentInit, DoCheck, QueryList, KeyValueDiffers } from '@angular/core';
3
3
  import * as rxjs from 'rxjs';
4
4
  import { DateTime } from 'luxon';
5
5
  import { Router } from '@angular/router';
@@ -256,6 +256,27 @@ type IBmbGrades = {
256
256
  periods: IBmbPeriod[];
257
257
  };
258
258
 
259
+ interface TableColum {
260
+ label: string;
261
+ labelEn?: string;
262
+ def: string;
263
+ dataKey: string;
264
+ htmlLabel?: TemplateRef<any>;
265
+ templateActions?: TemplateRef<any>;
266
+ width?: number;
267
+ type?: 'string' | 'number' | 'date';
268
+ icon?: string;
269
+ dateFormat?: string;
270
+ isFilterable?: boolean;
271
+ }
272
+ interface TableConfig {
273
+ isSelectable?: boolean;
274
+ isPaginable?: boolean;
275
+ isExpandible?: boolean;
276
+ showActions?: boolean;
277
+ }
278
+ type IBmbFiltersPosition = 'top' | 'right' | 'bottom' | 'left';
279
+
259
280
  type SizeNames = 'xs' | 's' | 'm' | 'l' | 'xl' | 'none' | 'auto';
260
281
  type IButtonAppearance = 'primary' | 'secondary-filled' | 'secondary-outlined' | 'destructive' | 'transparent';
261
282
  type IButtonSize = 'small' | 'large' | 'micro';
@@ -436,14 +457,18 @@ type NotificationType = 'tec' | 'success' | 'info' | 'neutral' | 'event' | 'erro
436
457
  type NotificationPositionX = 'left' | 'right';
437
458
  type NotificationPositionY = 'top' | 'bottom';
438
459
  declare class BmbNotificationService {
460
+ private appRef;
461
+ private environmentInjector;
439
462
  positionX?: NotificationPositionX | undefined;
440
463
  positionY?: NotificationPositionY | undefined;
441
464
  readonly notificationList: _angular_core.WritableSignal<INotification[]>;
442
- constructor(positionX?: NotificationPositionX | undefined, positionY?: NotificationPositionY | undefined);
465
+ private portalComponentRef;
466
+ constructor(appRef: ApplicationRef, environmentInjector: EnvironmentInjector, positionX?: NotificationPositionX | undefined, positionY?: NotificationPositionY | undefined);
467
+ private getOrCreatePortal;
443
468
  addNotification(notification: INotification): void;
444
469
  deleteNotification(id: string): void;
445
470
  getNotificationList(): INotification[];
446
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<BmbNotificationService, [{ optional: true; }, { optional: true; }]>;
471
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<BmbNotificationService, [null, null, { optional: true; }, { optional: true; }]>;
447
472
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<BmbNotificationService>;
448
473
  }
449
474
 
@@ -604,6 +629,58 @@ declare class BmbAlertCenterService {
604
629
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<BmbAlertCenterService>;
605
630
  }
606
631
 
632
+ type IBmbModalSize = 'small' | 'medium' | 'large';
633
+ type IBmbModalType = 'informative' | 'action' | 'alert';
634
+ type IBmbNativeModalSize = IBmbModalSize | 'x-small' | 'x-large';
635
+ type IBmbModalAlertStyle = 'warning' | 'neutral' | 'primary' | 'event' | 'success' | 'error';
636
+ interface IBmbActionButton {
637
+ buttonName: string;
638
+ appearance?: IButtonAppearance;
639
+ label: string;
640
+ icon?: string;
641
+ action: () => void;
642
+ }
643
+ interface ModalDataConfig {
644
+ title?: string;
645
+ subtitle?: string;
646
+ content?: string | TemplateRef<any> | null;
647
+ type?: IBmbModalType;
648
+ alertStyle?: IBmbModalAlertStyle;
649
+ size?: IBmbModalSize;
650
+ primaryBtnLabel?: string;
651
+ secondaryBtnLabel?: string;
652
+ scrollable?: boolean;
653
+ hidePrimaryButton?: boolean;
654
+ hideSecondaryButton?: boolean;
655
+ extendButtons?: boolean;
656
+ primaryAction?: () => void;
657
+ secondaryAction?: () => void;
658
+ closeAction?: () => void;
659
+ }
660
+ interface IBmbNativeModal extends Omit<ModalDataConfig, 'primaryAction' | 'secondaryAction' | 'closeAction' | 'extendButtons' | 'alertStyle' | 'size' | 'type'> {
661
+ modalId?: string;
662
+ size?: IBmbNativeModalSize;
663
+ iconStyle?: IBmbModalAlertStyle;
664
+ actions?: IBmbActionButton[];
665
+ closeModalClicked?: (event: unknown) => void;
666
+ }
667
+
668
+ declare class BmbNativeModalService {
669
+ private appRef;
670
+ private environmentInjector;
671
+ readonly modalList: _angular_core.WritableSignal<IBmbNativeModal[]>;
672
+ private portalComponentRef;
673
+ constructor(appRef: ApplicationRef, environmentInjector: EnvironmentInjector);
674
+ private getOrCreatePortal;
675
+ openModal(newModal: IBmbNativeModal): string;
676
+ closeModal(id: string): void;
677
+ closeAllModals(): void;
678
+ getModalList(): IBmbNativeModal[];
679
+ checkIfModalExists(id: string): boolean;
680
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<BmbNativeModalService, never>;
681
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<BmbNativeModalService>;
682
+ }
683
+
607
684
  declare class DsNgComponent {
608
685
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DsNgComponent, never>;
609
686
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsNgComponent, "bmb-ds-ng", never, {}, {}, never, never, true, never>;
@@ -1675,24 +1752,6 @@ declare class BmbSearchInputComponent implements AfterViewInit, OnChanges {
1675
1752
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<BmbSearchInputComponent, "bmb-search-input", never, { "inputId": { "alias": "inputId"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "data": { "alias": "data"; "required": false; "isSignal": true; }; "isLoading": { "alias": "isLoading"; "required": false; "isSignal": true; }; "isServerSideFilter": { "alias": "isServerSideFilter"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "serverSideFilteredData": { "alias": "serverSideFilteredData"; "required": false; "isSignal": true; }; }, { "onValueChange": "onValueChange"; "onServerSideFilterEvent": "onServerSideFilterEvent"; "onClearField": "onClearField"; }, never, never, true, never>;
1676
1753
  }
1677
1754
 
1678
- interface TableColum {
1679
- label: string;
1680
- labelEn?: string;
1681
- def: string;
1682
- dataKey: string;
1683
- htmlLabel?: TemplateRef<any>;
1684
- templateActions?: TemplateRef<any>;
1685
- width?: number;
1686
- type?: 'string' | 'number' | 'date';
1687
- icon?: string;
1688
- }
1689
- interface TableConfig {
1690
- isSelectable?: boolean;
1691
- isPaginable?: boolean;
1692
- isExpandible?: boolean;
1693
- showActions?: boolean;
1694
- }
1695
-
1696
1755
  type BmbTableLang = 'en' | 'es';
1697
1756
  declare class BmbTablesComponent implements AfterViewInit, OnInit, OnChanges {
1698
1757
  private renderer;
@@ -1716,7 +1775,6 @@ declare class BmbTablesComponent implements AfterViewInit, OnInit, OnChanges {
1716
1775
  resizableMousemove?: () => void;
1717
1776
  resizableMouseup?: () => void;
1718
1777
  searchControl: FormControl<string | null>;
1719
- filtersVisible: boolean;
1720
1778
  showSearch: _angular_core.InputSignal<boolean>;
1721
1779
  showFilters: _angular_core.InputSignal<boolean>;
1722
1780
  pageSize: _angular_core.InputSignal<number | undefined>;
@@ -1733,6 +1791,8 @@ declare class BmbTablesComponent implements AfterViewInit, OnInit, OnChanges {
1733
1791
  clearSelection: _angular_core.ModelSignal<boolean>;
1734
1792
  serverSide: _angular_core.InputSignal<boolean>;
1735
1793
  currentPage: _angular_core.ModelSignal<number>;
1794
+ filtersVisible: _angular_core.ModelSignal<boolean>;
1795
+ filtersPosition: _angular_core.InputSignal<IBmbFiltersPosition>;
1736
1796
  select: EventEmitter<any>;
1737
1797
  clickedRow: EventEmitter<any>;
1738
1798
  searchChange: EventEmitter<string>;
@@ -1747,6 +1807,7 @@ declare class BmbTablesComponent implements AfterViewInit, OnInit, OnChanges {
1747
1807
  headerCellRef: ElementRef;
1748
1808
  cellRef: ElementRef;
1749
1809
  onResize(event: any): void;
1810
+ parsedFiltersColumns: _angular_core.Signal<TableColum[]>;
1750
1811
  constructor(renderer: Renderer2, sanitizer: DomSanitizer, cdr: ChangeDetectorRef);
1751
1812
  ngOnChanges(changes: SimpleChanges): void;
1752
1813
  ngOnInit(): void;
@@ -1783,8 +1844,9 @@ declare class BmbTablesComponent implements AfterViewInit, OnInit, OnChanges {
1783
1844
  goToPreviousPage(): void;
1784
1845
  goToNextPage(): void;
1785
1846
  goToLastPage(): void;
1847
+ getTableClasses(): string[];
1786
1848
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<BmbTablesComponent, never>;
1787
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<BmbTablesComponent, "bmb-table", never, { "showSearch": { "alias": "showSearch"; "required": false; "isSignal": true; }; "showFilters": { "alias": "showFilters"; "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; }; "actionTemplate": { "alias": "actionTemplate"; "required": false; "isSignal": true; }; "config": { "alias": "config"; "required": false; "isSignal": true; }; "detailTemplate": { "alias": "detailTemplate"; "required": false; "isSignal": true; }; "truncate": { "alias": "truncate"; "required": false; "isSignal": true; }; "wrap": { "alias": "wrap"; "required": false; "isSignal": true; }; "initialTableSelection": { "alias": "initialTableSelection"; "required": false; "isSignal": true; }; "lang": { "alias": "lang"; "required": false; "isSignal": true; }; "clearSelection": { "alias": "clearSelection"; "required": false; "isSignal": true; }; "serverSide": { "alias": "serverSide"; "required": false; "isSignal": true; }; "currentPage": { "alias": "currentPage"; "required": false; "isSignal": true; }; }, { "clearSelection": "clearSelectionChange"; "currentPage": "currentPageChange"; "select": "select"; "clickedRow": "clickedRow"; "searchChange": "searchChange"; "filtersChange": "filtersChange"; "searchModeChange": "searchModeChange"; "pageChange": "pageChange"; }, never, never, true, never>;
1849
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<BmbTablesComponent, "bmb-table", never, { "showSearch": { "alias": "showSearch"; "required": false; "isSignal": true; }; "showFilters": { "alias": "showFilters"; "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; }; "actionTemplate": { "alias": "actionTemplate"; "required": false; "isSignal": true; }; "config": { "alias": "config"; "required": false; "isSignal": true; }; "detailTemplate": { "alias": "detailTemplate"; "required": false; "isSignal": true; }; "truncate": { "alias": "truncate"; "required": false; "isSignal": true; }; "wrap": { "alias": "wrap"; "required": false; "isSignal": true; }; "initialTableSelection": { "alias": "initialTableSelection"; "required": false; "isSignal": true; }; "lang": { "alias": "lang"; "required": false; "isSignal": true; }; "clearSelection": { "alias": "clearSelection"; "required": false; "isSignal": true; }; "serverSide": { "alias": "serverSide"; "required": false; "isSignal": true; }; "currentPage": { "alias": "currentPage"; "required": false; "isSignal": true; }; "filtersVisible": { "alias": "filtersVisible"; "required": false; "isSignal": true; }; "filtersPosition": { "alias": "filtersPosition"; "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>;
1788
1850
  }
1789
1851
 
1790
1852
  type IBmbProgressBarVariations = 'info' | 'warning' | 'error';
@@ -1805,27 +1867,6 @@ declare class BmbProgressBarComponent {
1805
1867
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<BmbProgressBarComponent, "bmb-progress-bar", never, { "type": { "alias": "type"; "required": false; "isSignal": true; }; "totalCount": { "alias": "totalCount"; "required": false; "isSignal": true; }; "counter": { "alias": "counter"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "appearance": { "alias": "appearance"; "required": false; "isSignal": true; }; "textLink": { "alias": "textLink"; "required": false; "isSignal": true; }; "href": { "alias": "href"; "required": false; "isSignal": true; }; "target": { "alias": "target"; "required": false; "isSignal": true; }; "textFormat": { "alias": "textFormat"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
1806
1868
  }
1807
1869
 
1808
- type IBmbModalSize = 'small' | 'medium' | 'large';
1809
- type IBmbModalType = 'informative' | 'action' | 'alert';
1810
- type IBmbModalAlertStyle = 'warning' | 'neutral' | 'primary' | 'event' | 'success' | 'error';
1811
- interface ModalDataConfig {
1812
- title?: string;
1813
- subtitle?: string;
1814
- content?: string | TemplateRef<any> | null;
1815
- type?: IBmbModalType;
1816
- alertStyle?: IBmbModalAlertStyle;
1817
- size?: IBmbModalSize;
1818
- primaryBtnLabel?: string;
1819
- secondaryBtnLabel?: string;
1820
- scrollable?: boolean;
1821
- hidePrimaryButton?: boolean;
1822
- hideSecondaryButton?: boolean;
1823
- extendButtons?: boolean;
1824
- primaryAction?: () => void;
1825
- secondaryAction?: () => void;
1826
- closeAction?: () => void;
1827
- }
1828
-
1829
1870
  declare class BmbModalComponent {
1830
1871
  dialogRef: MatDialogRef<BmbModalComponent>;
1831
1872
  modalData: ModalDataConfig;
@@ -2979,10 +3020,14 @@ declare class BmbAlertCenterComponent {
2979
3020
 
2980
3021
  declare class BmbPortalComponent {
2981
3022
  private notificationSignal;
2982
- constructor(notificationSignal: BmbNotificationService);
3023
+ private modalService;
3024
+ constructor(notificationSignal: BmbNotificationService, modalService: BmbNativeModalService);
3025
+ modalSignal: _angular_core.Signal<IBmbNativeModal[]>;
2983
3026
  getNotifications(): INotification[];
2984
3027
  closeNotification(notification: INotification): void;
2985
3028
  getNotificationPosition(): NotificationPositionX | undefined;
3029
+ handleCloseModal(id: string): void;
3030
+ handleModalClick(item: IBmbNativeModal, event: unknown): void;
2986
3031
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<BmbPortalComponent, never>;
2987
3032
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<BmbPortalComponent, "bmb-portal", never, {}, {}, never, never, true, never>;
2988
3033
  }
@@ -3149,10 +3194,11 @@ declare class BmbListGroupItemComponent {
3149
3194
  declare class BmbSimpleHeaderComponent {
3150
3195
  title: _angular_core.InputSignal<string>;
3151
3196
  icon: _angular_core.InputSignal<string>;
3197
+ iconAlternativeColor: _angular_core.InputSignal<boolean>;
3152
3198
  onIconClick: _angular_core.OutputEmitterRef<any>;
3153
3199
  handleClick(event: any): void;
3154
3200
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<BmbSimpleHeaderComponent, never>;
3155
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<BmbSimpleHeaderComponent, "bmb-simple-header", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; }, { "onIconClick": "onIconClick"; }, never, never, true, never>;
3201
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<BmbSimpleHeaderComponent, "bmb-simple-header", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "iconAlternativeColor": { "alias": "iconAlternativeColor"; "required": false; "isSignal": true; }; }, { "onIconClick": "onIconClick"; }, never, never, true, never>;
3156
3202
  }
3157
3203
 
3158
3204
  declare class BmbDrawerOverlayComponent {
@@ -3614,5 +3660,35 @@ declare class BmbNoticeCardComponent {
3614
3660
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<BmbNoticeCardComponent, "bmb-notice-card", never, { "src": { "alias": "src"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "description": { "alias": "description"; "required": false; "isSignal": true; }; "buttonText": { "alias": "buttonText"; "required": false; "isSignal": true; }; "link": { "alias": "link"; "required": false; "isSignal": true; }; "closeBtnColor": { "alias": "closeBtnColor"; "required": false; "isSignal": true; }; }, { "onClose": "onClose"; "onClickBtn": "onClickBtn"; }, never, never, true, never>;
3615
3661
  }
3616
3662
 
3617
- 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, BmbNavigationBarComponent, BmbNoticeCardComponent, BmbNotificationCardComponent, BmbNotificationService, BmbOverlayComponent, BmbPaginatorComponent, BmbPortalComponent, BmbProfileComponent, BmbProgressBarComponent, BmbProgressCircleComponent, 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 };
3618
- export type { BmbIframeReferrerPolicy, BmbProgressCirclePathStatus, BmbSkeletonType, BmbTableLang, BmbToastAppearance, IAlignItemsOptions, IBbmBgAppearance, IBbmButtonGroupType, IBbmSidePosition, 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, 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, IBmbNavigationBarIcon, IBmbNavigationBarIcons, IBmbNoticeCardContent, IBmbNoticeCardDescription, IBmbPartial, IBmbPeriod, IBmbProfileData, IBmbProgressBarTypes, IBmbProgressBarVariations, 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, Target };
3663
+ declare class BmbNativeModalComponent {
3664
+ private modalService;
3665
+ title: _angular_core.InputSignal<string>;
3666
+ subtitle: _angular_core.InputSignal<string>;
3667
+ content: _angular_core.InputSignal<string | TemplateRef<any>>;
3668
+ actions: _angular_core.InputSignal<IBmbActionButton[]>;
3669
+ alertIcon: _angular_core.InputSignal<IBmbModalAlertStyle | undefined>;
3670
+ modalId: _angular_core.InputSignal<string>;
3671
+ size: _angular_core.InputSignal<IBmbNativeModalSize>;
3672
+ iconStyle: _angular_core.InputSignal<IBmbModalAlertStyle | undefined>;
3673
+ actionsClicked: _angular_core.OutputEmitterRef<{
3674
+ buttonName: string;
3675
+ event: MouseEvent;
3676
+ }>;
3677
+ closeModalClicked: _angular_core.OutputEmitterRef<{
3678
+ modalId: string;
3679
+ event: MouseEvent;
3680
+ }>;
3681
+ constructor(modalService: BmbNativeModalService);
3682
+ svgUrl: string;
3683
+ modalIcon: _angular_core.Signal<string>;
3684
+ getContainerClass(): string;
3685
+ isTemplateRef(): boolean;
3686
+ getContent(): any;
3687
+ handleButtonClick(buttonName: string, event: MouseEvent): void;
3688
+ handleCloseModal(event: MouseEvent): void;
3689
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<BmbNativeModalComponent, never>;
3690
+ 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; }; "alertIcon": { "alias": "alertIcon"; "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; }; }, { "actionsClicked": "actionsClicked"; "closeModalClicked": "closeModalClicked"; }, never, never, true, never>;
3691
+ }
3692
+
3693
+ 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, 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 };
3694
+ 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, 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 };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ti-tecnologico-de-monterrey-oficial/ds-ng",
3
- "version": "1.5.1020-c",
3
+ "version": "1.5.1020-e",
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",
@@ -35,4 +35,4 @@
35
35
  "sideEffects": false,
36
36
  "module": "fesm2022/ti-tecnologico-de-monterrey-oficial-ds-ng.mjs",
37
37
  "typings": "index.d.ts"
38
- }
38
+ }