@ti-tecnologico-de-monterrey-oficial/ds-ng 1.6.20-d → 1.6.20-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/assets/i18n/es.json +2 -2
- package/assets/styles/mainGED.min.css +1 -1
- package/assets/styles/mainGED.min.css.map +1 -1
- package/assets/styles/mainTEC.min.css +1 -1
- package/assets/styles/mainTEC.min.css.map +1 -1
- package/assets/styles/mainTECMI.min.css +1 -1
- package/assets/styles/mainTECMI.min.css.map +1 -1
- package/assets/styles/micro.min.css +1 -1
- package/assets/styles/micro.min.css.map +1 -1
- package/fesm2022/ti-tecnologico-de-monterrey-oficial-ds-ng.mjs +131 -81
- package/fesm2022/ti-tecnologico-de-monterrey-oficial-ds-ng.mjs.map +1 -1
- package/index.d.ts +26 -14
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -201,7 +201,7 @@ interface IBmbAlertCenterFooterEvent {
|
|
|
201
201
|
event: IBmbAlertCenterFooterEventName;
|
|
202
202
|
}
|
|
203
203
|
|
|
204
|
-
type TBmbMessageType = 'text' | 'mixed' | 'image' | 'link' | 'template';
|
|
204
|
+
type TBmbMessageType = 'text' | 'mixed' | 'image' | 'link' | 'options' | 'template';
|
|
205
205
|
type IBmbBubblePosition = 'top' | 'bottom';
|
|
206
206
|
interface IBmbChatMessage {
|
|
207
207
|
userProfile?: string;
|
|
@@ -210,10 +210,17 @@ interface IBmbChatMessage {
|
|
|
210
210
|
content: MessageContent;
|
|
211
211
|
time: Date;
|
|
212
212
|
}
|
|
213
|
+
interface IMessageContentOptions {
|
|
214
|
+
title: string;
|
|
215
|
+
target?: IBmbTargetLink;
|
|
216
|
+
link?: string;
|
|
217
|
+
onButton?: () => void;
|
|
218
|
+
}
|
|
213
219
|
interface MessageContent {
|
|
214
220
|
text?: string;
|
|
215
221
|
imageUrl?: string;
|
|
216
222
|
link?: string;
|
|
223
|
+
options?: IMessageContentOptions[];
|
|
217
224
|
template?: TemplateRef<any>;
|
|
218
225
|
}
|
|
219
226
|
interface IBmbChatGptIcons {
|
|
@@ -1108,6 +1115,7 @@ declare class BmbCardButtonComponent {
|
|
|
1108
1115
|
handleSmallClick(event: MouseEvent): void;
|
|
1109
1116
|
handleTitleClick(event: MouseEvent | KeyboardEvent): void;
|
|
1110
1117
|
handleAddContent(event: MouseEvent | KeyboardEvent): void;
|
|
1118
|
+
isABotTemplate(icon: string): boolean;
|
|
1111
1119
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BmbCardButtonComponent, never>;
|
|
1112
1120
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BmbCardButtonComponent, "bmb-card-button", never, { "isFullInteractive": { "alias": "isFullInteractive"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "body": { "alias": "body"; "required": false; "isSignal": true; }; "badge": { "alias": "badge"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "leftContentIcon": { "alias": "leftContentIcon"; "required": false; "isSignal": true; }; "leftContentImage": { "alias": "leftContentImage"; "required": false; "isSignal": true; }; "leftContent": { "alias": "leftContent"; "required": false; "isSignal": true; }; "hasMenu": { "alias": "hasMenu"; "required": false; "isSignal": true; }; "menuItems": { "alias": "menuItems"; "required": false; "isSignal": true; }; "isTemplate": { "alias": "isTemplate"; "required": false; "isSignal": true; }; "isDisabled": { "alias": "isDisabled"; "required": false; "isSignal": true; }; "textLink": { "alias": "textLink"; "required": false; "isSignal": true; }; "isSmall": { "alias": "isSmall"; "required": false; "isSignal": true; }; "botIcon": { "alias": "botIcon"; "required": false; "isSignal": true; }; "botImage": { "alias": "botImage"; "required": false; "isSignal": true; }; "smallIcon": { "alias": "smallIcon"; "required": false; "isSignal": true; }; "smallTitle": { "alias": "smallTitle"; "required": false; "isSignal": true; }; "smallDescription": { "alias": "smallDescription"; "required": false; "isSignal": true; }; }, { "onAddContentClick": "onAddContentClick"; "onTitleClick": "onTitleClick"; "onSmallClick": "onSmallClick"; }, ["customContent"], ["*"], true, never>;
|
|
1113
1121
|
}
|
|
@@ -1438,16 +1446,17 @@ type FabType = (typeof FAB_TYPE)[keyof typeof FAB_TYPE];
|
|
|
1438
1446
|
|
|
1439
1447
|
declare class BmbFabComponent {
|
|
1440
1448
|
icon: _angular_core.InputSignal<string>;
|
|
1441
|
-
|
|
1442
|
-
size: _angular_core.InputSignal<FabSize | undefined>;
|
|
1443
|
-
type: _angular_core.InputSignal<FabType | undefined>;
|
|
1449
|
+
size: _angular_core.InputSignal<FabSize>;
|
|
1444
1450
|
mitec: _angular_core.InputSignal<boolean>;
|
|
1451
|
+
text: _angular_core.InputSignal<string | null>;
|
|
1445
1452
|
fabClick: _angular_core.OutputEmitterRef<MouseEvent>;
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
|
|
1453
|
+
isActive: boolean;
|
|
1454
|
+
type: _angular_core.InputSignal<FabType | undefined>;
|
|
1455
|
+
handleFabClick(event: MouseEvent): void;
|
|
1456
|
+
get className(): string;
|
|
1457
|
+
get iconName(): string;
|
|
1449
1458
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BmbFabComponent, never>;
|
|
1450
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BmbFabComponent, "bmb-fab", never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "
|
|
1459
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BmbFabComponent, "bmb-fab", never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "mitec": { "alias": "mitec"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; }, { "fabClick": "fabClick"; }, never, never, true, never>;
|
|
1451
1460
|
}
|
|
1452
1461
|
|
|
1453
1462
|
declare class BmbThemeComponent implements OnInit {
|
|
@@ -1848,6 +1857,7 @@ declare class BmbTopBarComponent implements OnInit {
|
|
|
1848
1857
|
mitec: _angular_core.InputSignal<boolean>;
|
|
1849
1858
|
alertNotification: _angular_core.InputSignal<IBmbDataAlert[]>;
|
|
1850
1859
|
showRoleButton: _angular_core.InputSignal<boolean>;
|
|
1860
|
+
showSearchButton: _angular_core.InputSignal<boolean>;
|
|
1851
1861
|
showHelpButton: _angular_core.InputSignal<boolean>;
|
|
1852
1862
|
allowSidebarForMobile: _angular_core.InputSignal<boolean>;
|
|
1853
1863
|
image: _angular_core.ModelSignal<string>;
|
|
@@ -1857,6 +1867,7 @@ declare class BmbTopBarComponent implements OnInit {
|
|
|
1857
1867
|
alertButtonClick: _angular_core.OutputEmitterRef<MouseEvent>;
|
|
1858
1868
|
roleButtonClick: _angular_core.OutputEmitterRef<MouseEvent>;
|
|
1859
1869
|
backToHomeClick: _angular_core.OutputEmitterRef<void>;
|
|
1870
|
+
searchButtonClick: _angular_core.OutputEmitterRef<MouseEvent>;
|
|
1860
1871
|
showAnimation: boolean;
|
|
1861
1872
|
imageDefault: string;
|
|
1862
1873
|
mobileImageDefault: string;
|
|
@@ -1868,9 +1879,10 @@ declare class BmbTopBarComponent implements OnInit {
|
|
|
1868
1879
|
handleHelpButtonClick(event: MouseEvent): void;
|
|
1869
1880
|
handleUserClick(event: MouseEvent): void;
|
|
1870
1881
|
handleRoleChange(event: MouseEvent): void;
|
|
1882
|
+
handleSearchChange(event: MouseEvent): void;
|
|
1871
1883
|
handleBackToHome(): void;
|
|
1872
1884
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BmbTopBarComponent, never>;
|
|
1873
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BmbTopBarComponent, "bmb-top-bar", never, { "userInformation": { "alias": "userInformation"; "required": false; "isSignal": true; }; "appName": { "alias": "appName"; "required": false; "isSignal": true; }; "appPowered": { "alias": "appPowered"; "required": false; "isSignal": true; }; "appSubTitle": { "alias": "appSubTitle"; "required": false; "isSignal": true; }; "lang": { "alias": "lang"; "required": false; "isSignal": true; }; "mitec": { "alias": "mitec"; "required": false; "isSignal": true; }; "alertNotification": { "alias": "alertNotification"; "required": false; "isSignal": true; }; "showRoleButton": { "alias": "showRoleButton"; "required": false; "isSignal": true; }; "showHelpButton": { "alias": "showHelpButton"; "required": false; "isSignal": true; }; "allowSidebarForMobile": { "alias": "allowSidebarForMobile"; "required": false; "isSignal": true; }; "image": { "alias": "image"; "required": false; "isSignal": true; }; "mobileImage": { "alias": "mobileImage"; "required": false; "isSignal": true; }; }, { "image": "imageChange"; "mobileImage": "mobileImageChange"; "helpButtonClick": "helpButtonClick"; "userProfileClick": "userProfileClick"; "alertButtonClick": "alertButtonClick"; "roleButtonClick": "roleButtonClick"; "backToHomeClick": "backToHomeClick"; }, never, never, true, never>;
|
|
1885
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BmbTopBarComponent, "bmb-top-bar", never, { "userInformation": { "alias": "userInformation"; "required": false; "isSignal": true; }; "appName": { "alias": "appName"; "required": false; "isSignal": true; }; "appPowered": { "alias": "appPowered"; "required": false; "isSignal": true; }; "appSubTitle": { "alias": "appSubTitle"; "required": false; "isSignal": true; }; "lang": { "alias": "lang"; "required": false; "isSignal": true; }; "mitec": { "alias": "mitec"; "required": false; "isSignal": true; }; "alertNotification": { "alias": "alertNotification"; "required": false; "isSignal": true; }; "showRoleButton": { "alias": "showRoleButton"; "required": false; "isSignal": true; }; "showSearchButton": { "alias": "showSearchButton"; "required": false; "isSignal": true; }; "showHelpButton": { "alias": "showHelpButton"; "required": false; "isSignal": true; }; "allowSidebarForMobile": { "alias": "allowSidebarForMobile"; "required": false; "isSignal": true; }; "image": { "alias": "image"; "required": false; "isSignal": true; }; "mobileImage": { "alias": "mobileImage"; "required": false; "isSignal": true; }; }, { "image": "imageChange"; "mobileImage": "mobileImageChange"; "helpButtonClick": "helpButtonClick"; "userProfileClick": "userProfileClick"; "alertButtonClick": "alertButtonClick"; "roleButtonClick": "roleButtonClick"; "backToHomeClick": "backToHomeClick"; "searchButtonClick": "searchButtonClick"; }, never, never, true, never>;
|
|
1874
1886
|
}
|
|
1875
1887
|
|
|
1876
1888
|
declare class BmbTopBarItemComponent {
|
|
@@ -2281,7 +2293,7 @@ declare class BmbMediaCardComponent {
|
|
|
2281
2293
|
isExternalLink(link: string): boolean;
|
|
2282
2294
|
getClasses(): string[];
|
|
2283
2295
|
getContentClasses(): string[];
|
|
2284
|
-
getBackgroundColor(): string
|
|
2296
|
+
getBackgroundColor(): Record<string, string>;
|
|
2285
2297
|
getUserAttribute(attribute: string | undefined): string;
|
|
2286
2298
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BmbMediaCardComponent, never>;
|
|
2287
2299
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BmbMediaCardComponent, "bmb-media-card", never, { "link": { "alias": "link"; "required": false; "isSignal": true; }; "target": { "alias": "target"; "required": false; "isSignal": true; }; "src": { "alias": "src"; "required": false; "isSignal": true; }; "mobileSrc": { "alias": "mobileSrc"; "required": false; "isSignal": true; }; "alt": { "alias": "alt"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "ratio": { "alias": "ratio"; "required": false; "isSignal": true; }; "borderRadius": { "alias": "borderRadius"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "enableZoom": { "alias": "enableZoom"; "required": false; "isSignal": true; }; "isBlurredBackdrop": { "alias": "isBlurredBackdrop"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "subtitle": { "alias": "subtitle"; "required": false; "isSignal": true; }; "content": { "alias": "content"; "required": false; "isSignal": true; }; "date": { "alias": "date"; "required": false; "isSignal": true; }; "userName": { "alias": "userName"; "required": false; "isSignal": true; }; "userImage": { "alias": "userImage"; "required": false; "isSignal": true; }; "fullmediaCard": { "alias": "fullmediaCard"; "required": false; "isSignal": true; }; "bgColor": { "alias": "bgColor"; "required": false; "isSignal": true; }; "boxShadow": { "alias": "boxShadow"; "required": false; "isSignal": true; }; }, { "mediaCardClicked": "mediaCardClicked"; }, never, ["*"], true, never>;
|
|
@@ -2612,6 +2624,7 @@ declare class BmbNotificationCardComponent {
|
|
|
2612
2624
|
maxHeight: _angular_core.InputSignal<string>;
|
|
2613
2625
|
emptyStateData: _angular_core.InputSignal<IBmbAlertEmptyState | undefined>;
|
|
2614
2626
|
dateFormat: _angular_core.InputSignal<string>;
|
|
2627
|
+
showAdvertisements: _angular_core.InputSignal<boolean>;
|
|
2615
2628
|
alertEvent: _angular_core.OutputEmitterRef<IBmbDataAlert>;
|
|
2616
2629
|
showAlertDetail: _angular_core.OutputEmitterRef<IBmbDataAlert>;
|
|
2617
2630
|
onExpandClick: _angular_core.OutputEmitterRef<void>;
|
|
@@ -2629,7 +2642,7 @@ declare class BmbNotificationCardComponent {
|
|
|
2629
2642
|
handleAlertEvent(alert: unknown): void;
|
|
2630
2643
|
handleAlertSelected(alert: IBmbDataAlertsParsed): void;
|
|
2631
2644
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BmbNotificationCardComponent, never>;
|
|
2632
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BmbNotificationCardComponent, "bmb-notification-card", never, { "data": { "alias": "data"; "required": false; "isSignal": true; }; "advertisements": { "alias": "advertisements"; "required": false; "isSignal": true; }; "hideExpandBtn": { "alias": "hideExpandBtn"; "required": false; "isSignal": true; }; "maxHeight": { "alias": "maxHeight"; "required": false; "isSignal": true; }; "emptyStateData": { "alias": "emptyStateData"; "required": false; "isSignal": true; }; "dateFormat": { "alias": "dateFormat"; "required": false; "isSignal": true; }; "selectedTab": { "alias": "selectedTab"; "required": false; "isSignal": true; }; }, { "alertEvent": "alertEvent"; "showAlertDetail": "showAlertDetail"; "onExpandClick": "onExpandClick"; "selectedTab": "selectedTabChange"; }, never, never, true, never>;
|
|
2645
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BmbNotificationCardComponent, "bmb-notification-card", never, { "data": { "alias": "data"; "required": false; "isSignal": true; }; "advertisements": { "alias": "advertisements"; "required": false; "isSignal": true; }; "hideExpandBtn": { "alias": "hideExpandBtn"; "required": false; "isSignal": true; }; "maxHeight": { "alias": "maxHeight"; "required": false; "isSignal": true; }; "emptyStateData": { "alias": "emptyStateData"; "required": false; "isSignal": true; }; "dateFormat": { "alias": "dateFormat"; "required": false; "isSignal": true; }; "showAdvertisements": { "alias": "showAdvertisements"; "required": false; "isSignal": true; }; "selectedTab": { "alias": "selectedTab"; "required": false; "isSignal": true; }; }, { "alertEvent": "alertEvent"; "showAlertDetail": "showAlertDetail"; "onExpandClick": "onExpandClick"; "selectedTab": "selectedTabChange"; }, never, never, true, never>;
|
|
2633
2646
|
}
|
|
2634
2647
|
|
|
2635
2648
|
declare class BmbHomeCardChatComponent {
|
|
@@ -3511,7 +3524,6 @@ declare class BmbProfileComponent implements OnInit {
|
|
|
3511
3524
|
declare class BmbBookmarkComponent {
|
|
3512
3525
|
isActive: _angular_core.ModelSignal<boolean>;
|
|
3513
3526
|
handleClick(event: any): void;
|
|
3514
|
-
getClassList(): string[];
|
|
3515
3527
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BmbBookmarkComponent, never>;
|
|
3516
3528
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BmbBookmarkComponent, "bmb-bookmark", never, { "isActive": { "alias": "isActive"; "required": false; "isSignal": true; }; }, { "isActive": "isActiveChange"; }, never, never, true, never>;
|
|
3517
3529
|
}
|
|
@@ -3786,7 +3798,7 @@ declare class BmbActionMenuComponent {
|
|
|
3786
3798
|
iconSize: _angular_core.InputSignal<number>;
|
|
3787
3799
|
bgIconAppearance: _angular_core.InputSignal<IBmbColor | undefined>;
|
|
3788
3800
|
showHeader: _angular_core.InputSignal<boolean>;
|
|
3789
|
-
projectedContent:
|
|
3801
|
+
projectedContent: QueryList<any>;
|
|
3790
3802
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BmbActionMenuComponent, never>;
|
|
3791
3803
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BmbActionMenuComponent, "bmb-action-menu", never, { "title": { "alias": "title"; "required": true; "isSignal": true; }; "subtitle": { "alias": "subtitle"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "iconSize": { "alias": "iconSize"; "required": false; "isSignal": true; }; "bgIconAppearance": { "alias": "bgIconAppearance"; "required": false; "isSignal": true; }; "showHeader": { "alias": "showHeader"; "required": false; "isSignal": true; }; }, {}, ["projectedContent"], never, true, never>;
|
|
3792
3804
|
}
|
|
@@ -4108,4 +4120,4 @@ declare class BmbTableLiteComponent implements OnInit, OnChanges {
|
|
|
4108
4120
|
}
|
|
4109
4121
|
|
|
4110
4122
|
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, BmbIconService, 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, BmbSelectorDirective, BmbServerTableComponent, BmbSidebarComponent, BmbSimpleHeaderComponent, BmbSkeletonComponent, BmbSoundsCardComponent, BmbStatCounterComponent, BmbStepProgressBarComponent, BmbStudentActivityCardComponent, BmbSwitchComponent, BmbTableLiteComponent, BmbTablesComponent, BmbTabsComponent, BmbTagComponent, BmbTextEditorComponent, BmbTextLinkComponent, BmbThemeComponent, BmbThreeColsComponent, BmbTimestreamCardComponent, BmbTimestreamComponent, BmbTitleContentComponent, BmbToastComponent, BmbTooltipComponent, BmbTopBarComponent, BmbTopBarItemComponent, BmbTotpComponent, BmbTranslationsService, BmbUserImageComponent, BmbUserProfileComponent, BmbUserProfileService, BmbUserSummaryComponent, BmbUserSummaryContentComponent, BmbValueCounterComponent, BmbVerticalLayoutDirective, BmbVerticalLayoutItemDirective, BmbWebTemplatesComponent, DsNgComponent, DsNgService, TabsService, ThemeService, ToastService, TranslatePipe, defaultActionList, defaultBotList };
|
|
4111
|
-
export type { BmbDictionaries, 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, IBmbContentLayoutSummary, 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, IBmbStatusIconColor, IBmbStudentProfileData, IBmbTab, IBmbTargetLink, IBmbTemplateName, IBmbTextLinkStyle, IBmbTimelineCustomEvent, IBmbTimestreamFilters, IBmbUserData, IBmbUserImageSize, IBmbUserInfo, IBotType, IButtonAppearance, IButtonSize, ICardButton, IChatBarActions, IColumSizeFull, IColumSizeMobile, IDropdownItem, IJustifyOptions, IMargin, IMinimalNotification, INotification, INotificationAction, ISelectedDate, IStudentActivityAppearance, ITimelineDayEvent, ITimelineEvent, ITimelineEventParsed, ITimelineEventType, IUserInformation, MessageContent, ModalDataConfig, NotificationPositionX, NotificationPositionY, NotificationType, SidebarElement, SizeNames, TBmbMessageType, TableColum$1 as TableColum, TableConfig$1 as TableConfig, Target };
|
|
4123
|
+
export type { BmbDictionaries, 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, IBmbContentLayoutSummary, 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, IBmbStatusIconColor, IBmbStudentProfileData, IBmbTab, IBmbTargetLink, IBmbTemplateName, IBmbTextLinkStyle, IBmbTimelineCustomEvent, IBmbTimestreamFilters, IBmbUserData, IBmbUserImageSize, IBmbUserInfo, IBotType, IButtonAppearance, IButtonSize, ICardButton, IChatBarActions, IColumSizeFull, IColumSizeMobile, IDropdownItem, IJustifyOptions, IMargin, IMessageContentOptions, IMinimalNotification, INotification, INotificationAction, 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.6.020-
|
|
3
|
+
"version": "1.6.020-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",
|