@ti-tecnologico-de-monterrey-oficial/ds-ng 1.5.1119-b → 1.5.1119-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/assets/images/placeholders/credential.svg +69 -69
- package/assets/images/placeholders/user-icon-test.svg +9 -9
- package/assets/styles/main.min.css +1 -1
- package/assets/styles/main.min.css.map +1 -1
- package/fesm2022/ti-tecnologico-de-monterrey-oficial-ds-ng.mjs +1141 -989
- package/fesm2022/ti-tecnologico-de-monterrey-oficial-ds-ng.mjs.map +1 -1
- package/lib/components/bmb-account-statement/bmb-account-statement.component.d.ts +6 -4
- package/lib/components/bmb-card/bmb-card.component.d.ts +2 -1
- package/lib/components/bmb-chat-bar/bmb-chat-bar.component.d.ts +19 -18
- package/lib/components/bmb-container-button/bmb-container-button.component.d.ts +1 -1
- package/lib/components/bmb-drawer-overlay/bmb-drawer-overlay.component.d.ts +2 -0
- package/lib/components/bmb-filter-card/bmb-filter-card.component.d.ts +6 -5
- package/lib/components/bmb-grades/bmb-grades.component.d.ts +3 -3
- package/lib/components/bmb-hito-card/bmb-hito-card.component.d.ts +7 -0
- package/lib/components/bmb-home-card-chat/bmb-home-card-chat.component.d.ts +3 -3
- package/lib/components/bmb-input/bmb-input-content/bmb-input-content.component.d.ts +1 -2
- package/lib/components/bmb-item/bmb-item.component.d.ts +1 -1
- package/lib/components/bmb-login-onboarding/bmb-login-onboarding-stepper/bmb-login-onboarding-stepper-steps/bmb-login-onboarding-stepper-step-four.component.d.ts +6 -5
- package/lib/components/bmb-portal/bmb-portal.component.d.ts +1 -0
- package/lib/components/bmb-portal/bmb-projected-content/bmb-projected-content.component.d.ts +1 -10
- package/lib/components/bmb-sidebar/bmb-sidebar.component.d.ts +4 -4
- package/lib/components/bmb-step-progress-bar/bmb-step-progress-bar.component.d.ts +10 -0
- package/lib/components/bmb-timestream/bmb-timestream.component.d.ts +3 -3
- package/lib/components/bmb-top-bar/bmb-top-bar-user-section/bmb-top-bar-user-section.component.d.ts +2 -0
- package/lib/components/bmb-top-bar/bmb-top-bar.component.d.ts +4 -1
- package/lib/components/bmb-user-summary/bmb-user-summary-content/bmb-user-summary-content.component.d.ts +4 -2
- package/lib/services/notification.service.d.ts +1 -1
- package/lib/types/index.d.ts +2 -1
- package/lib/utils/utils.d.ts +1 -0
- package/package.json +1 -1
- package/assets/images/gif/mitecLogoIntroMobile.gif +0 -0
- package/assets/images/gif/mitecLogoIntroWeb.gif +0 -0
- package/assets/images/lang-flags/mx.svg +0 -392
- package/assets/images/lang-flags/us.svg +0 -13
- package/assets/svg/info_fill.svg +0 -1
- package/assets/svg/info_fill_primary.svg +0 -1
- package/lib/components/bmb-calendar/common/bmb-calendar-template-event-list/bmb-calendar-template-event-list.component.d.ts +0 -17
- package/lib/components/bmb-form-validation/bmb-form-validation.component.d.ts +0 -34
- package/lib/components/bmb-input/bmb-input-validation/bmb-input-validation.component.d.ts +0 -46
- package/lib/components/bmb-input/bmb-input-validation/bmb-input-validation.service.d.ts +0 -16
- package/lib/components/bmb-select/bmb-select-item/bmb-select-item.component.d.ts +0 -6
- package/lib/components/bmb-select/bmb-select.component.d.ts +0 -17
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { AfterViewInit, OnInit, TemplateRef } from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { BmbNativeModalService } from '../../services/native-modal.service';
|
|
3
3
|
import { FormControl, FormGroup } from '@angular/forms';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class BmbAccountStatementComponent implements AfterViewInit, OnInit {
|
|
6
|
-
private
|
|
6
|
+
private modalService;
|
|
7
7
|
title: import("@angular/core").InputSignal<string>;
|
|
8
8
|
progressCircleTitle: import("@angular/core").InputSignal<string[]>;
|
|
9
9
|
labelPrimary: import("@angular/core").InputSignal<string>;
|
|
@@ -32,11 +32,12 @@ export declare class BmbAccountStatementComponent implements AfterViewInit, OnIn
|
|
|
32
32
|
customAmount: number;
|
|
33
33
|
isEnableCustomAmount: boolean;
|
|
34
34
|
maxAmount: number;
|
|
35
|
+
modalID: import("@angular/core").WritableSignal<string | null>;
|
|
35
36
|
amountForm: FormGroup;
|
|
36
37
|
showErrors: {
|
|
37
38
|
[key: string]: boolean;
|
|
38
39
|
};
|
|
39
|
-
constructor(
|
|
40
|
+
constructor(modalService: BmbNativeModalService);
|
|
40
41
|
ngOnInit(): void;
|
|
41
42
|
ngAfterViewInit(): void;
|
|
42
43
|
handleClose(event?: MouseEvent): void;
|
|
@@ -45,10 +46,11 @@ export declare class BmbAccountStatementComponent implements AfterViewInit, OnIn
|
|
|
45
46
|
getFormattedDate(date?: string): string;
|
|
46
47
|
getFormattedAmount(amount: number): string;
|
|
47
48
|
handleActiveCustomAmount(event: any): void;
|
|
48
|
-
|
|
49
|
+
handleSubmit(): void;
|
|
49
50
|
getFormControl(name: string): FormControl;
|
|
50
51
|
updateErrorState(): void;
|
|
51
52
|
getProgressPercent(): number;
|
|
53
|
+
customHandleClick(): void;
|
|
52
54
|
static ɵfac: i0.ɵɵFactoryDeclaration<BmbAccountStatementComponent, never>;
|
|
53
55
|
static ɵcmp: i0.ɵɵComponentDeclaration<BmbAccountStatementComponent, "bmb-account-statement", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "progressCircleTitle": { "alias": "progressCircleTitle"; "required": false; "isSignal": true; }; "labelPrimary": { "alias": "labelPrimary"; "required": false; "isSignal": true; }; "labelSecondary": { "alias": "labelSecondary"; "required": false; "isSignal": true; }; "totalCount": { "alias": "totalCount"; "required": false; "isSignal": true; }; "counter": { "alias": "counter"; "required": false; "isSignal": true; }; "progressTitle": { "alias": "progressTitle"; "required": false; "isSignal": true; }; "formatDates": { "alias": "formatDates"; "required": false; "isSignal": true; }; "paymentDeadline": { "alias": "paymentDeadline"; "required": false; "isSignal": true; }; "cutOffDate": { "alias": "cutOffDate"; "required": false; "isSignal": true; }; "paymentDeadlineLabel": { "alias": "paymentDeadlineLabel"; "required": false; "isSignal": true; }; "cutOffDateLabel": { "alias": "cutOffDateLabel"; "required": false; "isSignal": true; }; "payButtonLabel": { "alias": "payButtonLabel"; "required": false; "isSignal": true; }; "backButtonLabel": { "alias": "backButtonLabel"; "required": false; "isSignal": true; }; "modalTitle": { "alias": "modalTitle"; "required": false; "isSignal": true; }; "modalSubtitle": { "alias": "modalSubtitle"; "required": false; "isSignal": true; }; "modalRestLabel": { "alias": "modalRestLabel"; "required": false; "isSignal": true; }; "modalOtherAmountLabel": { "alias": "modalOtherAmountLabel"; "required": false; "isSignal": true; }; "modalPrimaryButtonLabel": { "alias": "modalPrimaryButtonLabel"; "required": false; "isSignal": true; }; "errorMessage": { "alias": "errorMessage"; "required": false; "isSignal": true; }; }, { "closeEvent": "closeEvent"; "backEvent": "backEvent"; "payEvent": "payEvent"; }, never, never, true, never>;
|
|
54
56
|
}
|
|
@@ -35,8 +35,9 @@ export declare class BmbCardFooterComponent {
|
|
|
35
35
|
export declare class BmbCardContentComponent {
|
|
36
36
|
padding: SizeNames | SizeNames[];
|
|
37
37
|
colorBackground: IBmbBgColor | null;
|
|
38
|
+
setBorderRadius: boolean;
|
|
38
39
|
getClasses(): string[];
|
|
39
40
|
getStyles(): any;
|
|
40
41
|
static ɵfac: i0.ɵɵFactoryDeclaration<BmbCardContentComponent, never>;
|
|
41
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BmbCardContentComponent, "bmb-card-content", never, { "padding": { "alias": "padding"; "required": false; }; "colorBackground": { "alias": "colorBackground"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
42
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BmbCardContentComponent, "bmb-card-content", never, { "padding": { "alias": "padding"; "required": false; }; "colorBackground": { "alias": "colorBackground"; "required": false; }; "setBorderRadius": { "alias": "setBorderRadius"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
42
43
|
}
|
|
@@ -1,14 +1,19 @@
|
|
|
1
|
-
import { ElementRef } from '@angular/core';
|
|
1
|
+
import { ElementRef, TemplateRef } from '@angular/core';
|
|
2
2
|
import { IBotType, IChatBarActions } from './types';
|
|
3
3
|
import { FormControl } from '@angular/forms';
|
|
4
|
+
import { BmbNativeModalService } from '../../services/native-modal.service';
|
|
5
|
+
import { BmbProjectionContentService } from '../../services/projection.service';
|
|
4
6
|
import * as i0 from "@angular/core";
|
|
5
7
|
export { defaultBotList, defaultActionList } from './bot_list';
|
|
6
8
|
export { IBotType, IChatBarActions } from './types';
|
|
7
9
|
export declare class BmbChatBarComponent {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
10
|
+
private contentProjected;
|
|
11
|
+
private nativeModalService;
|
|
12
|
+
placeholder: import("@angular/core").InputSignal<string>;
|
|
13
|
+
botList: import("@angular/core").InputSignal<IBotType[]>;
|
|
14
|
+
actionsList: import("@angular/core").InputSignal<IChatBarActions[]>;
|
|
11
15
|
showEmoji: import("@angular/core").InputSignal<boolean>;
|
|
16
|
+
enableMicInput: import("@angular/core").InputSignal<boolean>;
|
|
12
17
|
currentBot: import("@angular/core").ModelSignal<IBotType | undefined>;
|
|
13
18
|
isLoading: import("@angular/core").ModelSignal<boolean>;
|
|
14
19
|
onSendMessage: import("@angular/core").OutputEmitterRef<string>;
|
|
@@ -17,46 +22,42 @@ export declare class BmbChatBarComponent {
|
|
|
17
22
|
onEmoji: import("@angular/core").OutputEmitterRef<boolean>;
|
|
18
23
|
files: File[];
|
|
19
24
|
control: FormControl<any>;
|
|
20
|
-
isDialogOpen: boolean
|
|
21
|
-
openAddDialog: boolean;
|
|
25
|
+
isDialogOpen: import("@angular/core").WritableSignal<boolean>;
|
|
22
26
|
defaultPlaceholder: import("@angular/core").Signal<string>;
|
|
23
|
-
dBotList: import("@angular/core").Signal<{
|
|
24
|
-
name: string;
|
|
25
|
-
icon: string;
|
|
26
|
-
}[]>;
|
|
27
|
-
dActionsList: import("@angular/core").Signal<IChatBarActions[]>;
|
|
28
27
|
showMicControls: boolean;
|
|
29
28
|
onDragFiles: boolean;
|
|
30
29
|
arrayThumbnail: string[];
|
|
30
|
+
botChunks: import("@angular/core").Signal<IBotType[][]>;
|
|
31
31
|
totalDots: import("@angular/core").Signal<number>;
|
|
32
32
|
activeDot: number;
|
|
33
33
|
actionListPagination: any[];
|
|
34
|
-
|
|
34
|
+
modalID: import("@angular/core").WritableSignal<string | null>;
|
|
35
35
|
windowWidth: number;
|
|
36
36
|
windowHeight: number;
|
|
37
37
|
textareaRef: ElementRef<HTMLTextAreaElement>;
|
|
38
|
-
|
|
38
|
+
chatBarTemplate: TemplateRef<unknown>;
|
|
39
|
+
mobileBotSelectorTemplate: TemplateRef<unknown>;
|
|
40
|
+
constructor(contentProjected: BmbProjectionContentService, nativeModalService: BmbNativeModalService);
|
|
39
41
|
ngOnInit(): void;
|
|
40
42
|
handleSend(): void;
|
|
41
43
|
handleChangeBot(bot: IBotType): void;
|
|
44
|
+
handleMobileChangeBot(bot: IBotType): void;
|
|
42
45
|
handleDialog(): void;
|
|
43
46
|
handleMic(): void;
|
|
44
47
|
handleStopMic(): void;
|
|
45
|
-
handleAddDialog(): void;
|
|
48
|
+
handleAddDialog(event: MouseEvent | KeyboardEvent): void;
|
|
46
49
|
onDrop(event: any): void;
|
|
47
50
|
onFileSelect(event: any): void;
|
|
48
51
|
onDragOver(event: any): void;
|
|
49
52
|
onDragLeave(event: any): void;
|
|
50
53
|
createImageThumbnail(file: File): void;
|
|
51
54
|
deleteFile(index: number): void;
|
|
52
|
-
handlePaginate(items: any[], page: number): void;
|
|
53
55
|
handleDotPress(index: number): void;
|
|
54
|
-
close(): void;
|
|
55
56
|
handleEmoji(): void;
|
|
56
57
|
handleRecord(): void;
|
|
57
|
-
|
|
58
|
+
handleClickOutside(): void;
|
|
58
59
|
handleKeyDown(event: KeyboardEvent): void;
|
|
59
60
|
autoResize(): void;
|
|
60
61
|
static ɵfac: i0.ɵɵFactoryDeclaration<BmbChatBarComponent, never>;
|
|
61
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BmbChatBarComponent, "bmb-chat-bar", never, { "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "botList": { "alias": "botList"; "required": false; "isSignal": true; }; "actionsList": { "alias": "actionsList"; "required": false; "isSignal": true; }; "showEmoji": { "alias": "showEmoji"; "required": false; "isSignal": true; }; "currentBot": { "alias": "currentBot"; "required": false; "isSignal": true; }; "isLoading": { "alias": "isLoading"; "required": false; "isSignal": true; }; }, { "currentBot": "currentBotChange"; "isLoading": "isLoadingChange"; "onSendMessage": "onSendMessage"; "onSendFiles": "onSendFiles"; "onRecord": "onRecord"; "onEmoji": "onEmoji"; }, never, never, true, never>;
|
|
62
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BmbChatBarComponent, "bmb-chat-bar", never, { "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "botList": { "alias": "botList"; "required": false; "isSignal": true; }; "actionsList": { "alias": "actionsList"; "required": false; "isSignal": true; }; "showEmoji": { "alias": "showEmoji"; "required": false; "isSignal": true; }; "enableMicInput": { "alias": "enableMicInput"; "required": false; "isSignal": true; }; "currentBot": { "alias": "currentBot"; "required": false; "isSignal": true; }; "isLoading": { "alias": "isLoading"; "required": false; "isSignal": true; }; }, { "currentBot": "currentBotChange"; "isLoading": "isLoadingChange"; "onSendMessage": "onSendMessage"; "onSendFiles": "onSendFiles"; "onRecord": "onRecord"; "onEmoji": "onEmoji"; }, never, never, true, never>;
|
|
62
63
|
}
|
|
@@ -27,7 +27,7 @@ export declare class BmbContainerButtonComponent {
|
|
|
27
27
|
private abort;
|
|
28
28
|
readonly isMobileOrTablet: import("@angular/core").WritableSignal<boolean>;
|
|
29
29
|
constructor();
|
|
30
|
-
readonly maxChars: import("@angular/core").Signal<
|
|
30
|
+
readonly maxChars: import("@angular/core").Signal<90 | 70>;
|
|
31
31
|
private t;
|
|
32
32
|
readonly titleTruncated: import("@angular/core").Signal<string>;
|
|
33
33
|
readonly subtitleTruncated: import("@angular/core").Signal<string>;
|
|
@@ -15,6 +15,8 @@ export declare class BmbDrawerOverlayComponent {
|
|
|
15
15
|
isFull: boolean;
|
|
16
16
|
activeNavItemIndex: number;
|
|
17
17
|
toggleDrawer(): void;
|
|
18
|
+
closeDrawer(_: MouseEvent | KeyboardEvent): void;
|
|
19
|
+
onEsc(): void;
|
|
18
20
|
toggleFullDrawer(event: MouseEvent, item?: any): void;
|
|
19
21
|
selectNavItem(index: number): void;
|
|
20
22
|
handleValueChange(event: string): void;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { TemplateRef } from '@angular/core';
|
|
2
2
|
import { FormControl, FormGroup } from '@angular/forms';
|
|
3
|
-
import { MatDialog } from '@angular/material/dialog';
|
|
4
3
|
import { IBmbControlType } from './bmb-filter-card.interface';
|
|
4
|
+
import { BmbNativeModalService } from '../../services/native-modal.service';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class BmbFilterCardComponent {
|
|
7
|
-
private
|
|
7
|
+
private modalService;
|
|
8
8
|
modalTitle: import("@angular/core").InputSignal<string>;
|
|
9
9
|
primaryBtnLabel: import("@angular/core").InputSignal<string>;
|
|
10
10
|
secondaryBtnLabel: import("@angular/core").InputSignal<string>;
|
|
@@ -17,14 +17,15 @@ export declare class BmbFilterCardComponent {
|
|
|
17
17
|
inLine: import("@angular/core").InputSignal<boolean>;
|
|
18
18
|
showDropdown: import("@angular/core").InputSignal<boolean>;
|
|
19
19
|
dropdownOptions: import("@angular/core").InputSignal<string[]>;
|
|
20
|
-
applyFilters: import("@angular/core").OutputEmitterRef<
|
|
20
|
+
applyFilters: import("@angular/core").OutputEmitterRef<any>;
|
|
21
21
|
resetFilters: import("@angular/core").OutputEmitterRef<void>;
|
|
22
22
|
filterForm: FormGroup;
|
|
23
|
+
modalId: import("@angular/core").WritableSignal<string | null>;
|
|
23
24
|
modalTemplate: TemplateRef<any>;
|
|
24
|
-
constructor(
|
|
25
|
+
constructor(modalService: BmbNativeModalService);
|
|
25
26
|
openModalComponent(): void;
|
|
26
27
|
onControlChange(control: any, event: any): void;
|
|
27
|
-
|
|
28
|
+
handleSubmit(): void;
|
|
28
29
|
onReset(): void;
|
|
29
30
|
getFormControl(search: string): FormControl;
|
|
30
31
|
onValueChange(event: string): void;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { OnInit, TemplateRef } from '@angular/core';
|
|
2
|
-
import { MatDialog } from '@angular/material/dialog';
|
|
3
2
|
import { IBmbGrades, IBmbPartial } from './types';
|
|
4
3
|
import { IBmbNameValuePair } from '../../types';
|
|
4
|
+
import { BmbNativeModalService } from '../../services/native-modal.service';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class BmbGradesComponent implements OnInit {
|
|
7
|
-
private
|
|
7
|
+
private modalService;
|
|
8
8
|
grades: import("@angular/core").InputSignal<IBmbGrades[]>;
|
|
9
9
|
isMicro: import("@angular/core").InputSignal<boolean | undefined>;
|
|
10
10
|
gradeTitle: import("@angular/core").InputSignal<string | undefined>;
|
|
@@ -21,7 +21,7 @@ export declare class BmbGradesComponent implements OnInit {
|
|
|
21
21
|
detailContent?: TemplateRef<any>;
|
|
22
22
|
ngOnInit(): void;
|
|
23
23
|
ngAfterViewInit(): void;
|
|
24
|
-
constructor(
|
|
24
|
+
constructor(modalService: BmbNativeModalService);
|
|
25
25
|
openModalComponent(element: any): void;
|
|
26
26
|
getGradesTitle(): string;
|
|
27
27
|
getTitle(): string;
|
|
@@ -13,6 +13,13 @@ export declare class BmbHitoCardComponent {
|
|
|
13
13
|
isCompact: import("@angular/core").InputSignal<boolean>;
|
|
14
14
|
alternative_appearance: import("@angular/core").InputSignal<boolean>;
|
|
15
15
|
handleClick: import("@angular/core").OutputEmitterRef<string | number>;
|
|
16
|
+
private destroyRef;
|
|
17
|
+
private mql;
|
|
18
|
+
private abort;
|
|
19
|
+
readonly isMobile: import("@angular/core").WritableSignal<boolean>;
|
|
20
|
+
constructor();
|
|
21
|
+
private t;
|
|
22
|
+
readonly titleDisplayed: import("@angular/core").Signal<string>;
|
|
16
23
|
getClassList(): string[];
|
|
17
24
|
handleEventChange(): void;
|
|
18
25
|
formatBadgeText(legend: string | IBmbTimelineCustomEvent): string;
|
|
@@ -6,9 +6,9 @@ export declare class BmbHomeCardChatComponent {
|
|
|
6
6
|
title: import("@angular/core").InputSignal<string>;
|
|
7
7
|
subtitle: import("@angular/core").InputSignal<string>;
|
|
8
8
|
icon: import("@angular/core").InputSignal<string>;
|
|
9
|
-
isMobile: import("@angular/core").InputSignal<boolean
|
|
10
|
-
placeholder: import("@angular/core").InputSignal<string
|
|
11
|
-
botList: import("@angular/core").InputSignal<IBotType[]
|
|
9
|
+
isMobile: import("@angular/core").InputSignal<boolean>;
|
|
10
|
+
placeholder: import("@angular/core").InputSignal<string>;
|
|
11
|
+
botList: import("@angular/core").InputSignal<IBotType[]>;
|
|
12
12
|
leftIcon: import("@angular/core").InputSignal<string>;
|
|
13
13
|
bgIconAppearance: import("@angular/core").InputSignal<IBmbColor>;
|
|
14
14
|
messagesHistory: import("@angular/core").InputSignal<IBmbChatMessage[]>;
|
|
@@ -7,7 +7,6 @@ export declare class BmbInputContentComponent {
|
|
|
7
7
|
placeholder: import("@angular/core").InputSignal<string>;
|
|
8
8
|
icon: import("@angular/core").InputSignal<string>;
|
|
9
9
|
appearance: import("@angular/core").InputSignal<string>;
|
|
10
|
-
isDisabled: import("@angular/core").InputSignal<boolean>;
|
|
11
10
|
isRequired: import("@angular/core").InputSignal<boolean>;
|
|
12
11
|
name: import("@angular/core").InputSignal<string>;
|
|
13
12
|
spellcheck: import("@angular/core").InputSignal<boolean>;
|
|
@@ -49,5 +48,5 @@ export declare class BmbInputContentComponent {
|
|
|
49
48
|
actionToExecute(): void;
|
|
50
49
|
handleKeyUp(event: KeyboardEvent): void;
|
|
51
50
|
static ɵfac: i0.ɵɵFactoryDeclaration<BmbInputContentComponent, never>;
|
|
52
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BmbInputContentComponent, "bmb-input-content", never, { "type": { "alias": "type"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "appearance": { "alias": "appearance"; "required": false; "isSignal": true; }; "
|
|
51
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BmbInputContentComponent, "bmb-input-content", never, { "type": { "alias": "type"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "appearance": { "alias": "appearance"; "required": false; "isSignal": true; }; "isRequired": { "alias": "isRequired"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": true; "isSignal": true; }; "spellcheck": { "alias": "spellcheck"; "required": false; "isSignal": true; }; "heightTextArea": { "alias": "heightTextArea"; "required": false; "isSignal": true; }; "maxLength": { "alias": "maxLength"; "required": false; "isSignal": true; }; "minLength": { "alias": "minLength"; "required": false; "isSignal": true; }; "pattern": { "alias": "pattern"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "min": { "alias": "min"; "required": false; "isSignal": true; }; "inputId": { "alias": "inputId"; "required": false; "isSignal": true; }; "autoComplete": { "alias": "autoComplete"; "required": false; "isSignal": true; }; "rows": { "alias": "rows"; "required": false; "isSignal": true; }; "isReadOnly": { "alias": "isReadOnly"; "required": false; "isSignal": true; }; "additionalAction": { "alias": "additionalAction"; "required": false; "isSignal": true; }; "isClearable": { "alias": "isClearable"; "required": false; "isSignal": true; }; "isError": { "alias": "isError"; "required": false; "isSignal": true; }; "isHidden": { "alias": "isHidden"; "required": false; "isSignal": true; }; "showStates": { "alias": "showStates"; "required": false; "isSignal": true; }; "control": { "alias": "control"; "required": false; "isSignal": true; }; }, { "control": "controlChange"; "onFocus": "onFocus"; "onBlur": "onBlur"; "onChange": "onChange"; "onKeyDown": "onKeyDown"; "onKeyUp": "onKeyUp"; }, ["customContent"], never, true, never>;
|
|
53
52
|
}
|
|
@@ -6,7 +6,7 @@ export declare class BmbItemComponent {
|
|
|
6
6
|
label: import("@angular/core").InputSignal<string>;
|
|
7
7
|
value: import("@angular/core").InputSignal<string>;
|
|
8
8
|
valueLink: import("@angular/core").InputSignal<string>;
|
|
9
|
-
valueTarget
|
|
9
|
+
valueTarget: import("@angular/core").InputSignal<IBmbTargetLink>;
|
|
10
10
|
supportText: import("@angular/core").InputSignal<string>;
|
|
11
11
|
isButton: import("@angular/core").InputSignal<boolean>;
|
|
12
12
|
action: import("@angular/core").OutputEmitterRef<MouseEvent>;
|
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
import { BmbLoginOnboardingService } from '../../bmb-login-onboarding.service';
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
2
|
+
import { BmbNativeModalService } from '../../../../services/native-modal.service';
|
|
3
|
+
import { IBmbNativeModal } from '../../../bmb-modal/bmb-modal.interface';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class BmbLoginOnboardingStepperStepFourComponent {
|
|
6
6
|
private loginOnboardingService;
|
|
7
|
-
private
|
|
7
|
+
private modalService;
|
|
8
8
|
handleRequest: import("@angular/core").OutputEmitterRef<any>;
|
|
9
9
|
handleContinuePage: import("@angular/core").OutputEmitterRef<void>;
|
|
10
|
+
modalId: import("@angular/core").WritableSignal<string | null>;
|
|
10
11
|
credentialExample: string;
|
|
11
|
-
data:
|
|
12
|
-
constructor(loginOnboardingService: BmbLoginOnboardingService,
|
|
12
|
+
data: IBmbNativeModal;
|
|
13
|
+
constructor(loginOnboardingService: BmbLoginOnboardingService, modalService: BmbNativeModalService);
|
|
13
14
|
openModalComponent(): void;
|
|
14
15
|
handleContinue(): void;
|
|
15
16
|
_handleContinueStep(): void;
|
|
@@ -17,6 +17,7 @@ export declare class BmbPortalComponent {
|
|
|
17
17
|
handleCloseModal(id: string): void;
|
|
18
18
|
handleModalClick(item: IBmbNativeModal, event: unknown): void;
|
|
19
19
|
handleRemoveProjectedContent(): void;
|
|
20
|
+
hasToast(): boolean;
|
|
20
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<BmbPortalComponent, never>;
|
|
21
22
|
static ɵcmp: i0.ɵɵComponentDeclaration<BmbPortalComponent, "bmb-portal", never, {}, {}, never, never, true, never>;
|
|
22
23
|
}
|
package/lib/components/bmb-portal/bmb-projected-content/bmb-projected-content.component.d.ts
CHANGED
|
@@ -19,20 +19,11 @@ export declare class BmbProjectedContentComponent {
|
|
|
19
19
|
private componentRef;
|
|
20
20
|
constructor();
|
|
21
21
|
getPosition(): {
|
|
22
|
-
inset
|
|
23
|
-
margin: string;
|
|
24
|
-
width: string;
|
|
25
|
-
height: string;
|
|
26
|
-
} | {
|
|
27
|
-
inset: string;
|
|
28
|
-
margin?: undefined;
|
|
22
|
+
inset?: undefined;
|
|
29
23
|
width?: undefined;
|
|
30
|
-
height?: undefined;
|
|
31
24
|
} | {
|
|
32
25
|
inset: string;
|
|
33
26
|
width: string;
|
|
34
|
-
margin?: undefined;
|
|
35
|
-
height?: undefined;
|
|
36
27
|
};
|
|
37
28
|
renderContent(): void;
|
|
38
29
|
private isTemplateRef;
|
|
@@ -11,17 +11,17 @@ export declare class BmbSidebarComponent implements OnInit {
|
|
|
11
11
|
selectedElement: SidebarElement | null;
|
|
12
12
|
isActive: boolean;
|
|
13
13
|
hasSubmenu: boolean;
|
|
14
|
+
maxChildrenLevel: number;
|
|
14
15
|
sideNav: ElementRef;
|
|
15
16
|
onFocusIn(): void;
|
|
16
17
|
onFocusOut(): void;
|
|
17
18
|
ngOnInit(): void;
|
|
18
|
-
getLink(link: string
|
|
19
|
-
|
|
19
|
+
getLink(link: string): string;
|
|
20
|
+
closeSidebar(): void;
|
|
21
|
+
clearSelectElement(): void;
|
|
20
22
|
toggleChildren(element: SidebarElement): void;
|
|
21
|
-
closeSideBar(): void;
|
|
22
23
|
checkIfFocusInsideSidebar(): void;
|
|
23
24
|
checkToCloseSidebar(event: any): void;
|
|
24
|
-
getMobileIcon(): string;
|
|
25
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<BmbSidebarComponent, never>;
|
|
26
26
|
static ɵcmp: i0.ɵɵComponentDeclaration<BmbSidebarComponent, "bmb-sidebar", never, { "elements": { "alias": "elements"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "position": { "alias": "position"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
27
27
|
}
|
|
@@ -12,6 +12,16 @@ export declare class BmbStepProgressBarComponent {
|
|
|
12
12
|
stepTemplates: import("@angular/core").InputSignal<TemplateRef<any>[]>;
|
|
13
13
|
onStepPress: import("@angular/core").OutputEmitterRef<number>;
|
|
14
14
|
onStepPanelPress: import("@angular/core").OutputEmitterRef<number>;
|
|
15
|
+
private destroyRef;
|
|
16
|
+
private mql;
|
|
17
|
+
private abort;
|
|
18
|
+
readonly isMobileOrTablet: import("@angular/core").WritableSignal<boolean>;
|
|
19
|
+
constructor();
|
|
20
|
+
private truncate;
|
|
21
|
+
readonly maxChars: import("@angular/core").Signal<90 | 70>;
|
|
22
|
+
readonly labelStepsTruncated: import("@angular/core").Signal<string[]>;
|
|
23
|
+
readonly labelCompleteTruncated: import("@angular/core").Signal<string>;
|
|
24
|
+
readonly labelIncompleteTruncated: import("@angular/core").Signal<string>;
|
|
15
25
|
getStepsArray(): number[];
|
|
16
26
|
onStepPanelClicked(index: number): void;
|
|
17
27
|
onStepClicked(index: number): void;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { SimpleChanges, TemplateRef } from '@angular/core';
|
|
2
2
|
import { DateTime } from 'luxon';
|
|
3
3
|
import { ITimelineEvent, ISelectedDate, ITimelineEventParsed, IBmbTimelineCustomEvent } from './types';
|
|
4
|
-
import {
|
|
4
|
+
import { BmbNativeModalService } from '../../services/native-modal.service';
|
|
5
5
|
import { IBbmBgAppearance } from '../bmb-advertisement-card/types';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
interface IPlaceholderObject {
|
|
@@ -19,7 +19,7 @@ export interface IBmbClamp {
|
|
|
19
19
|
size: number | string;
|
|
20
20
|
}
|
|
21
21
|
export declare class BmbTimestreamComponent {
|
|
22
|
-
private
|
|
22
|
+
private modalService;
|
|
23
23
|
isMicro: import("@angular/core").InputSignal<boolean>;
|
|
24
24
|
lang: import("@angular/core").InputSignal<string>;
|
|
25
25
|
dateFormat: import("@angular/core").InputSignal<string>;
|
|
@@ -38,7 +38,7 @@ export declare class BmbTimestreamComponent {
|
|
|
38
38
|
selectedEvent: ITimelineEvent | null;
|
|
39
39
|
eventTabs: Tab[];
|
|
40
40
|
tabSelected: number;
|
|
41
|
-
constructor(
|
|
41
|
+
constructor(modalService: BmbNativeModalService);
|
|
42
42
|
ngOnChanges(changes: SimpleChanges): void;
|
|
43
43
|
ngOnInit(): void;
|
|
44
44
|
ngAfterViewInit(): void;
|
package/lib/components/bmb-top-bar/bmb-top-bar-user-section/bmb-top-bar-user-section.component.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { IUserInformation } from '../types';
|
|
2
2
|
import { IBmbDataAlert } from '../../bmb-alert-center/types';
|
|
3
|
+
import { IDropdownItem } from '../../../types';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class BmbTopBarUserSectionComponent {
|
|
5
6
|
userInformation: import("@angular/core").InputSignal<IUserInformation>;
|
|
@@ -19,6 +20,7 @@ export declare class BmbTopBarUserSectionComponent {
|
|
|
19
20
|
left: string;
|
|
20
21
|
} | null;
|
|
21
22
|
windowWidth: number;
|
|
23
|
+
getMenu(): IDropdownItem[];
|
|
22
24
|
openNotifications(event: MouseEvent): void;
|
|
23
25
|
closeNotifications(): void;
|
|
24
26
|
totalNotifications(): number;
|
|
@@ -6,12 +6,14 @@ export { IPositionButtonMenu, IUserInformation } from './types';
|
|
|
6
6
|
export declare class BmbTopBarComponent implements OnInit {
|
|
7
7
|
userInformation: import("@angular/core").InputSignal<IUserInformation | null>;
|
|
8
8
|
appName: import("@angular/core").InputSignal<string>;
|
|
9
|
+
appPowered: import("@angular/core").InputSignal<string>;
|
|
9
10
|
appSubTitle: import("@angular/core").InputSignal<string>;
|
|
10
11
|
lang: import("@angular/core").InputSignal<string>;
|
|
11
12
|
mitec: import("@angular/core").InputSignal<boolean>;
|
|
12
13
|
alertNotification: import("@angular/core").InputSignal<IBmbDataAlert[]>;
|
|
13
14
|
showRoleButton: import("@angular/core").InputSignal<boolean>;
|
|
14
15
|
showHelpButton: import("@angular/core").InputSignal<boolean>;
|
|
16
|
+
allowSidebarForMobile: import("@angular/core").InputSignal<boolean>;
|
|
15
17
|
positionButtonMenu: import("@angular/core").InputSignal<IPositionButtonMenu>;
|
|
16
18
|
hasLogoutButton: import("@angular/core").InputSignal<boolean>;
|
|
17
19
|
showLang: import("@angular/core").InputSignal<boolean>;
|
|
@@ -32,6 +34,7 @@ export declare class BmbTopBarComponent implements OnInit {
|
|
|
32
34
|
mobileImageMitecDefault: string;
|
|
33
35
|
imageMitecDefault: string;
|
|
34
36
|
ngOnInit(): void;
|
|
37
|
+
getNoMobileResolutionSize(): string;
|
|
35
38
|
handleLogOutClick(event: Event): void;
|
|
36
39
|
handleAlertClick(event: MouseEvent): void;
|
|
37
40
|
handleLangChange(lang: string): void;
|
|
@@ -40,5 +43,5 @@ export declare class BmbTopBarComponent implements OnInit {
|
|
|
40
43
|
handleRoleChange(event: MouseEvent): void;
|
|
41
44
|
handleBackToHome(): void;
|
|
42
45
|
static ɵfac: i0.ɵɵFactoryDeclaration<BmbTopBarComponent, never>;
|
|
43
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BmbTopBarComponent, "bmb-top-bar", never, { "userInformation": { "alias": "userInformation"; "required": false; "isSignal": true; }; "appName": { "alias": "appName"; "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; }; "positionButtonMenu": { "alias": "positionButtonMenu"; "required": false; "isSignal": true; }; "hasLogoutButton": { "alias": "hasLogoutButton"; "required": false; "isSignal": true; }; "showLang": { "alias": "showLang"; "required": false; "isSignal": true; }; "showUserName": { "alias": "showUserName"; "required": false; "isSignal": true; }; "assignmentNotification": { "alias": "assignmentNotification"; "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"; "logOut": "logOut"; "onLangChange": "onLangChange"; }, never, never, true, never>;
|
|
46
|
+
static ɵcmp: i0.ɵɵ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; }; "positionButtonMenu": { "alias": "positionButtonMenu"; "required": false; "isSignal": true; }; "hasLogoutButton": { "alias": "hasLogoutButton"; "required": false; "isSignal": true; }; "showLang": { "alias": "showLang"; "required": false; "isSignal": true; }; "showUserName": { "alias": "showUserName"; "required": false; "isSignal": true; }; "assignmentNotification": { "alias": "assignmentNotification"; "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"; "logOut": "logOut"; "onLangChange": "onLangChange"; }, never, never, true, never>;
|
|
44
47
|
}
|
|
@@ -16,9 +16,11 @@ export declare class BmbUserSummaryContentComponent {
|
|
|
16
16
|
salutation: import("@angular/core").InputSignal<string>;
|
|
17
17
|
contentLayout: import("@angular/core").InputSignal<IBmbContentLayoutSummary>;
|
|
18
18
|
gapSize: import("@angular/core").InputSignal<SizeNames>;
|
|
19
|
+
onUserClick: import("@angular/core").OutputEmitterRef<MouseEvent>;
|
|
19
20
|
getClass(mainClassName: string): string;
|
|
20
|
-
getSalutationClasses(mainClassName: string): string[];
|
|
21
|
+
getSalutationClasses(mainClassName: string, isRole?: boolean): string[];
|
|
21
22
|
getName(): string;
|
|
23
|
+
handleUserClick(event: MouseEvent): void;
|
|
22
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<BmbUserSummaryContentComponent, never>;
|
|
23
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BmbUserSummaryContentComponent, "bmb-user-summary-content", never, { "isProfile": { "alias": "isProfile"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "userId": { "alias": "userId"; "required": false; "isSignal": true; }; "image": { "alias": "image"; "required": false; "isSignal": true; }; "isImageBordered": { "alias": "isImageBordered"; "required": false; "isSignal": true; }; "altImage": { "alias": "altImage"; "required": false; "isSignal": true; }; "imageSize": { "alias": "imageSize"; "required": false; "isSignal": true; }; "infoCareer": { "alias": "infoCareer"; "required": false; "isSignal": true; }; "campus": { "alias": "campus"; "required": false; "isSignal": true; }; "role": { "alias": "role"; "required": false; "isSignal": true; }; "email": { "alias": "email"; "required": false; "isSignal": true; }; "salutation": { "alias": "salutation"; "required": false; "isSignal": true; }; "contentLayout": { "alias": "contentLayout"; "required": false; "isSignal": true; }; "gapSize": { "alias": "gapSize"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BmbUserSummaryContentComponent, "bmb-user-summary-content", never, { "isProfile": { "alias": "isProfile"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "userId": { "alias": "userId"; "required": false; "isSignal": true; }; "image": { "alias": "image"; "required": false; "isSignal": true; }; "isImageBordered": { "alias": "isImageBordered"; "required": false; "isSignal": true; }; "altImage": { "alias": "altImage"; "required": false; "isSignal": true; }; "imageSize": { "alias": "imageSize"; "required": false; "isSignal": true; }; "infoCareer": { "alias": "infoCareer"; "required": false; "isSignal": true; }; "campus": { "alias": "campus"; "required": false; "isSignal": true; }; "role": { "alias": "role"; "required": false; "isSignal": true; }; "email": { "alias": "email"; "required": false; "isSignal": true; }; "salutation": { "alias": "salutation"; "required": false; "isSignal": true; }; "contentLayout": { "alias": "contentLayout"; "required": false; "isSignal": true; }; "gapSize": { "alias": "gapSize"; "required": false; "isSignal": true; }; }, { "onUserClick": "onUserClick"; }, never, never, true, never>;
|
|
24
26
|
}
|
|
@@ -13,7 +13,7 @@ export declare class BmbNotificationService {
|
|
|
13
13
|
constructor(appRef: ApplicationRef, environmentInjector: EnvironmentInjector, positionX?: NotificationPositionX | undefined, positionY?: NotificationPositionY | undefined);
|
|
14
14
|
private getOrCreatePortal;
|
|
15
15
|
addNotification(notification: INotification): void;
|
|
16
|
-
deleteNotification(id: string): void;
|
|
16
|
+
deleteNotification(id: string, delay?: number): void;
|
|
17
17
|
getNotificationList(): INotification[];
|
|
18
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<BmbNotificationService, [null, null, { optional: true; }, { optional: true; }]>;
|
|
19
19
|
static ɵprov: i0.ɵɵInjectableDeclaration<BmbNotificationService>;
|
package/lib/types/index.d.ts
CHANGED
|
@@ -119,9 +119,10 @@ export interface IDropdownItem {
|
|
|
119
119
|
idItem?: string;
|
|
120
120
|
icon: string;
|
|
121
121
|
text: string;
|
|
122
|
+
dotNotification?: number;
|
|
122
123
|
selectedText?: string;
|
|
123
124
|
value?: string;
|
|
124
125
|
url?: string;
|
|
125
126
|
target?: IBmbTargetLink;
|
|
126
|
-
action?: () => void;
|
|
127
|
+
action?: (event?: unknown) => void;
|
|
127
128
|
}
|
package/lib/utils/utils.d.ts
CHANGED
|
@@ -10,3 +10,4 @@ export declare const getUUID: () => string;
|
|
|
10
10
|
export declare const isErrorMessageSet: (errorMessage: string | IBmbInputError) => boolean;
|
|
11
11
|
export declare const getCustomValidation: (customValidation: ValidatorFn, formControl: FormControl) => ValidationErrors | null;
|
|
12
12
|
export declare const getCustomValidationMessage: (result: ValidationErrors | null, errorMessage: string | IBmbInputError) => string;
|
|
13
|
+
export declare const getMobileResolutionSize: (isMobile?: boolean) => string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ti-tecnologico-de-monterrey-oficial/ds-ng",
|
|
3
|
-
"version": "1.5.1119-
|
|
3
|
+
"version": "1.5.1119-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",
|
|
Binary file
|
|
Binary file
|