@ti-tecnologico-de-monterrey-oficial/ds-ng 1.5.1320-a → 1.5.1320-b-beta.1
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
|
@@ -913,9 +913,8 @@ declare class BmbAccordionComponent implements OnInit, OnChanges {
|
|
|
913
913
|
getClassesHeader(): string[];
|
|
914
914
|
getClassesContent(): string;
|
|
915
915
|
getStyles(): any;
|
|
916
|
-
toggle(event
|
|
916
|
+
toggle(event?: MouseEvent): void;
|
|
917
917
|
getIconToggle(): string;
|
|
918
|
-
handleToggleKeyboard(event: KeyboardEvent): void;
|
|
919
918
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BmbAccordionComponent, never>;
|
|
920
919
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BmbAccordionComponent, "bmb-accordion", never, { "appearanceContrast": { "alias": "appearanceContrast"; "required": false; "isSignal": true; }; "borderRadius": { "alias": "borderRadius"; "required": false; "isSignal": true; }; "margin": { "alias": "margin"; "required": false; "isSignal": true; }; "paddingHeader": { "alias": "paddingHeader"; "required": false; "isSignal": true; }; "paddingContent": { "alias": "paddingContent"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "accordionId": { "alias": "accordionId"; "required": false; "isSignal": true; }; "hideToggle": { "alias": "hideToggle"; "required": false; "isSignal": true; }; "active": { "alias": "active"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "expanded": { "alias": "expanded"; "required": false; "isSignal": true; }; "lockToggle": { "alias": "lockToggle"; "required": false; "isSignal": true; }; }, { "closed": "closed"; "opened": "opened"; "onClick": "onClick"; }, ["bmbAccordionContent", "bmbAccordionHeader"], never, true, never>;
|
|
921
920
|
}
|
|
@@ -1094,11 +1093,12 @@ declare class BmbCardButtonComponent {
|
|
|
1094
1093
|
declare class BmbDropdownMenuComponent {
|
|
1095
1094
|
private projectionService;
|
|
1096
1095
|
items: _angular_core.InputSignal<IDropdownItem[]>;
|
|
1096
|
+
clickedItem: _angular_core.OutputEmitterRef<IDropdownItem>;
|
|
1097
1097
|
contentRef: ElementRef<any>;
|
|
1098
1098
|
constructor(projectionService: BmbProjectionContentService);
|
|
1099
1099
|
openDropdown(): void;
|
|
1100
1100
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BmbDropdownMenuComponent, never>;
|
|
1101
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BmbDropdownMenuComponent, "bmb-dropdown-menu", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1101
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BmbDropdownMenuComponent, "bmb-dropdown-menu", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; }, { "clickedItem": "clickedItem"; }, never, never, true, never>;
|
|
1102
1102
|
}
|
|
1103
1103
|
|
|
1104
1104
|
declare class BmbFilterCardComponent {
|
|
@@ -1749,9 +1749,9 @@ declare class BmbCheckboxComponent implements OnInit {
|
|
|
1749
1749
|
}
|
|
1750
1750
|
|
|
1751
1751
|
declare class BmbCalendarComponent implements OnInit, AfterViewInit {
|
|
1752
|
-
private eventsSignal;
|
|
1753
|
-
private modalService;
|
|
1754
|
-
private translationsService;
|
|
1752
|
+
private readonly eventsSignal;
|
|
1753
|
+
private readonly modalService;
|
|
1754
|
+
private readonly translationsService;
|
|
1755
1755
|
view: _angular_core.ModelSignal<IBmbCalendarView>;
|
|
1756
1756
|
filters: _angular_core.ModelSignal<{
|
|
1757
1757
|
[key: string]: boolean;
|
|
@@ -1783,7 +1783,7 @@ declare class BmbCalendarComponent implements OnInit, AfterViewInit {
|
|
|
1783
1783
|
}>;
|
|
1784
1784
|
detailContent?: TemplateRef<any>;
|
|
1785
1785
|
modalTemplate: TemplateRef<any>;
|
|
1786
|
-
|
|
1786
|
+
resize(): void;
|
|
1787
1787
|
constructor(eventsSignal: BmbCalendarService, modalService: BmbNativeModalService, translationsService: BmbTranslationsService);
|
|
1788
1788
|
currentTime: _angular_core.WritableSignal<DateTime<boolean>>;
|
|
1789
1789
|
private timerId;
|
|
@@ -3606,13 +3606,15 @@ declare class BmbImageComponent {
|
|
|
3606
3606
|
}
|
|
3607
3607
|
|
|
3608
3608
|
type IBmbStatusAppearance = 'success' | 'event' | 'warning' | 'error';
|
|
3609
|
+
type IBmbStatusIconColor = 'primary' | 'secondary';
|
|
3609
3610
|
declare class BmbIconStatusComponent {
|
|
3610
3611
|
icon: _angular_core.InputSignal<string>;
|
|
3611
3612
|
statusAppearance: _angular_core.InputSignal<IBmbStatusAppearance | undefined>;
|
|
3613
|
+
iconColor: _angular_core.InputSignal<IBmbStatusIconColor>;
|
|
3612
3614
|
getIconSize(): number;
|
|
3613
3615
|
getClassName(baseClassName: string, className: string): string;
|
|
3614
3616
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BmbIconStatusComponent, never>;
|
|
3615
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BmbIconStatusComponent, "bmb-icon-status", never, { "icon": { "alias": "icon"; "required": true; "isSignal": true; }; "statusAppearance": { "alias": "statusAppearance"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
3617
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BmbIconStatusComponent, "bmb-icon-status", never, { "icon": { "alias": "icon"; "required": true; "isSignal": true; }; "statusAppearance": { "alias": "statusAppearance"; "required": false; "isSignal": true; }; "iconColor": { "alias": "iconColor"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
3616
3618
|
}
|
|
3617
3619
|
|
|
3618
3620
|
declare class BmbChatBubblesComponent {
|
|
@@ -4070,4 +4072,4 @@ declare class BmbTableLiteComponent implements OnInit, OnChanges {
|
|
|
4070
4072
|
}
|
|
4071
4073
|
|
|
4072
4074
|
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, BmbSelectorDirective, 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, BmbTranslationsService, BmbUserImageComponent, BmbUserProfileComponent, BmbUserProfileService, BmbUserSummaryComponent, BmbUserSummaryContentComponent, BmbValueCounterComponent, BmbVerticalLayoutDirective, BmbVerticalLayoutItemDirective, BmbWebTemplatesComponent, BmbWheelMenuComponent, DsNgComponent, DsNgService, TabsService, ThemeService, ToastService, TranslatePipe, defaultActionList, defaultBotList };
|
|
4073
|
-
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, 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 };
|
|
4075
|
+
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, 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.1320-
|
|
3
|
+
"version": "1.5.1320-b-beta.1",
|
|
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",
|