@ti-tecnologico-de-monterrey-oficial/ds-ng 1.5.1319-a → 1.5.1319-c
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/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 +616 -601
- package/fesm2022/ti-tecnologico-de-monterrey-oficial-ds-ng.mjs.map +1 -1
- package/lib/components/bmb-alert-center/bmb-alert-center-list/bmb-alert-center-list.component.d.ts +1 -1
- package/lib/components/bmb-calendar/bmb-calendar.component.d.ts +4 -4
- package/lib/components/bmb-card-button/bmb-card-button.component.d.ts +4 -4
- package/lib/components/bmb-chat-bubbles/bmb-chat-bubbles.component.d.ts +10 -10
- package/lib/components/bmb-digital-id/bmb-digital-id.component.d.ts +3 -2
- package/lib/components/bmb-dropdown-menu/bmb-dropdown-menu.component.d.ts +2 -1
- package/lib/components/bmb-icon-status/bmb-icon-status.component.d.ts +3 -1
- package/lib/components/bmb-push-notification/bmb-push-notification-item/bmb-push-notification-item.component.d.ts +3 -0
- package/lib/components/bmb-push-notification/types.d.ts +2 -1
- package/lib/components/bmb-text-editor/bmb-text-editor.component.d.ts +4 -4
- package/lib/components/utils/bmb-dropdown-content/bmb-dropdown-content.component.d.ts +2 -1
- package/package.json +1 -1
package/lib/components/bmb-alert-center/bmb-alert-center-list/bmb-alert-center-list.component.d.ts
CHANGED
|
@@ -13,7 +13,7 @@ export declare class BmbAlertCenterListComponent {
|
|
|
13
13
|
isSelected: IBmbDataAlertsParsed[];
|
|
14
14
|
handleSelection(event: Event, item: IBmbDataAlertsParsed): void;
|
|
15
15
|
getTextFromDate(date: DateTime): string;
|
|
16
|
-
handleRowClick(
|
|
16
|
+
handleRowClick(item: IBmbDataAlertsParsed): void;
|
|
17
17
|
getFormattedTime(date: any): string;
|
|
18
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<BmbAlertCenterListComponent, never>;
|
|
19
19
|
static ɵcmp: i0.ɵɵComponentDeclaration<BmbAlertCenterListComponent, "bmb-alert-center-list", never, { "alerts": { "alias": "alerts"; "required": true; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "enableMultipleSelection": { "alias": "enableMultipleSelection"; "required": false; "isSignal": true; }; }, { "alertSelected": "alertSelected"; "selectedAlert": "selectedAlert"; }, never, never, true, never>;
|
|
@@ -8,9 +8,9 @@ import { BmbTranslationsService } from '../../services/translations/translations
|
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
export { IBmbCalendarEvent, IBmbCalendarEventClick, IBmbEventType, } from './types';
|
|
10
10
|
export declare class BmbCalendarComponent implements OnInit, AfterViewInit {
|
|
11
|
-
private eventsSignal;
|
|
12
|
-
private modalService;
|
|
13
|
-
private translationsService;
|
|
11
|
+
private readonly eventsSignal;
|
|
12
|
+
private readonly modalService;
|
|
13
|
+
private readonly translationsService;
|
|
14
14
|
view: import("@angular/core").ModelSignal<IBmbCalendarView>;
|
|
15
15
|
filters: import("@angular/core").ModelSignal<{
|
|
16
16
|
[key: string]: boolean;
|
|
@@ -42,7 +42,7 @@ export declare class BmbCalendarComponent implements OnInit, AfterViewInit {
|
|
|
42
42
|
}>;
|
|
43
43
|
detailContent?: TemplateRef<any>;
|
|
44
44
|
modalTemplate: TemplateRef<any>;
|
|
45
|
-
|
|
45
|
+
resize(): void;
|
|
46
46
|
constructor(eventsSignal: BmbCalendarService, modalService: BmbNativeModalService, translationsService: BmbTranslationsService);
|
|
47
47
|
currentTime: import("@angular/core").WritableSignal<DateTime<boolean>>;
|
|
48
48
|
private timerId;
|
|
@@ -30,8 +30,8 @@ export declare class BmbCardButtonComponent {
|
|
|
30
30
|
iconTemplate: TemplateRef<any> | null;
|
|
31
31
|
isTemplate: import("@angular/core").InputSignal<boolean>;
|
|
32
32
|
textLink: import("@angular/core").InputSignal<IBmbLinkConfiguration | undefined>;
|
|
33
|
-
onAddContentClick: import("@angular/core").OutputEmitterRef<MouseEvent>;
|
|
34
|
-
onTitleClick: import("@angular/core").OutputEmitterRef<MouseEvent>;
|
|
33
|
+
onAddContentClick: import("@angular/core").OutputEmitterRef<MouseEvent | KeyboardEvent>;
|
|
34
|
+
onTitleClick: import("@angular/core").OutputEmitterRef<MouseEvent | KeyboardEvent>;
|
|
35
35
|
onSmallClick: import("@angular/core").OutputEmitterRef<MouseEvent>;
|
|
36
36
|
isSmall: import("@angular/core").InputSignal<boolean>;
|
|
37
37
|
botIcon: import("@angular/core").InputSignal<string>;
|
|
@@ -43,8 +43,8 @@ export declare class BmbCardButtonComponent {
|
|
|
43
43
|
customContent: TemplateRef<any>;
|
|
44
44
|
truncateText(text: string, maxLength: number): string;
|
|
45
45
|
handleSmallClick(event: MouseEvent): void;
|
|
46
|
-
handleTitleClick(event: MouseEvent): void;
|
|
47
|
-
handleAddContent(event: MouseEvent): void;
|
|
46
|
+
handleTitleClick(event: MouseEvent | KeyboardEvent): void;
|
|
47
|
+
handleAddContent(event: MouseEvent | KeyboardEvent): void;
|
|
48
48
|
static ɵfac: i0.ɵɵFactoryDeclaration<BmbCardButtonComponent, never>;
|
|
49
49
|
static ɵcmp: i0.ɵɵ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; }; "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>;
|
|
50
50
|
}
|
|
@@ -8,16 +8,16 @@ export declare class BmbChatBubblesComponent {
|
|
|
8
8
|
isThinking: import("@angular/core").InputSignal<boolean>;
|
|
9
9
|
iconBotDefault: import("@angular/core").Signal<string>;
|
|
10
10
|
gptActiveIcons: import("@angular/core").InputSignal<IBmbChatGptIcons>;
|
|
11
|
-
onRepeatRequest: import("@angular/core").OutputEmitterRef<MouseEvent>;
|
|
12
|
-
onVoice: import("@angular/core").OutputEmitterRef<MouseEvent>;
|
|
13
|
-
onCopy: import("@angular/core").OutputEmitterRef<MouseEvent>;
|
|
14
|
-
onLike: import("@angular/core").OutputEmitterRef<MouseEvent>;
|
|
15
|
-
onDislike: import("@angular/core").OutputEmitterRef<MouseEvent>;
|
|
16
|
-
handleRepeat(event: MouseEvent): void;
|
|
17
|
-
handleVoice(event: MouseEvent): void;
|
|
18
|
-
handleCopyContent(event: MouseEvent): void;
|
|
19
|
-
handleLike(event: MouseEvent): void;
|
|
20
|
-
handleDislike(event: MouseEvent): void;
|
|
11
|
+
onRepeatRequest: import("@angular/core").OutputEmitterRef<MouseEvent | KeyboardEvent>;
|
|
12
|
+
onVoice: import("@angular/core").OutputEmitterRef<MouseEvent | KeyboardEvent>;
|
|
13
|
+
onCopy: import("@angular/core").OutputEmitterRef<MouseEvent | KeyboardEvent>;
|
|
14
|
+
onLike: import("@angular/core").OutputEmitterRef<MouseEvent | KeyboardEvent>;
|
|
15
|
+
onDislike: import("@angular/core").OutputEmitterRef<MouseEvent | KeyboardEvent>;
|
|
16
|
+
handleRepeat(event: MouseEvent | KeyboardEvent): void;
|
|
17
|
+
handleVoice(event: MouseEvent | KeyboardEvent): void;
|
|
18
|
+
handleCopyContent(event: MouseEvent | KeyboardEvent): void;
|
|
19
|
+
handleLike(event: MouseEvent | KeyboardEvent): void;
|
|
20
|
+
handleDislike(event: MouseEvent | KeyboardEvent): void;
|
|
21
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<BmbChatBubblesComponent, never>;
|
|
22
22
|
static ɵcmp: i0.ɵɵComponentDeclaration<BmbChatBubblesComponent, "bmb-chat-bubble", never, { "iconBot": { "alias": "iconBot"; "required": false; "isSignal": true; }; "message": { "alias": "message"; "required": true; "isSignal": true; }; "gptBot": { "alias": "gptBot"; "required": false; "isSignal": true; }; "gptIcons": { "alias": "gptIcons"; "required": false; "isSignal": true; }; "isThinking": { "alias": "isThinking"; "required": false; "isSignal": true; }; "gptActiveIcons": { "alias": "gptActiveIcons"; "required": false; "isSignal": true; }; }, { "onRepeatRequest": "onRepeatRequest"; "onVoice": "onVoice"; "onCopy": "onCopy"; "onLike": "onLike"; "onDislike": "onDislike"; }, never, never, true, never>;
|
|
23
23
|
}
|
|
@@ -10,11 +10,12 @@ export declare class BmbDigitalIdComponent {
|
|
|
10
10
|
icon: import("@angular/core").InputSignal<string>;
|
|
11
11
|
imgProfile: import("@angular/core").InputSignal<string>;
|
|
12
12
|
imgBackground: import("@angular/core").InputSignal<string>;
|
|
13
|
-
hideButton: import("@angular/core").InputSignal<boolean>;
|
|
14
13
|
secondaryTextButton: import("@angular/core").InputSignal<string | undefined>;
|
|
15
14
|
secondaryIconButton: import("@angular/core").InputSignal<string>;
|
|
16
15
|
disableSecondaryButton: import("@angular/core").InputSignal<boolean>;
|
|
17
16
|
disableMainButton: import("@angular/core").InputSignal<boolean>;
|
|
17
|
+
hideMainButton: import("@angular/core").InputSignal<boolean>;
|
|
18
|
+
hideSecondaryButton: import("@angular/core").InputSignal<boolean>;
|
|
18
19
|
logoSrc: import("@angular/core").InputSignal<string>;
|
|
19
20
|
close: import("@angular/core").OutputEmitterRef<MouseEvent>;
|
|
20
21
|
access: import("@angular/core").OutputEmitterRef<MouseEvent>;
|
|
@@ -24,5 +25,5 @@ export declare class BmbDigitalIdComponent {
|
|
|
24
25
|
clickAccess(event?: MouseEvent): void;
|
|
25
26
|
getFullName(): string;
|
|
26
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<BmbDigitalIdComponent, never>;
|
|
27
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BmbDigitalIdComponent, "bmb-digital-id", never, { "name": { "alias": "name"; "required": true; "isSignal": true; }; "surname": { "alias": "surname"; "required": true; "isSignal": true; }; "registration": { "alias": "registration"; "required": true; "isSignal": true; }; "campus": { "alias": "campus"; "required": true; "isSignal": true; }; "career": { "alias": "career"; "required": true; "isSignal": true; }; "role": { "alias": "role"; "required": true; "isSignal": true; }; "textButton": { "alias": "textButton"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "imgProfile": { "alias": "imgProfile"; "required": true; "isSignal": true; }; "imgBackground": { "alias": "imgBackground"; "required": true; "isSignal": true; }; "
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BmbDigitalIdComponent, "bmb-digital-id", never, { "name": { "alias": "name"; "required": true; "isSignal": true; }; "surname": { "alias": "surname"; "required": true; "isSignal": true; }; "registration": { "alias": "registration"; "required": true; "isSignal": true; }; "campus": { "alias": "campus"; "required": true; "isSignal": true; }; "career": { "alias": "career"; "required": true; "isSignal": true; }; "role": { "alias": "role"; "required": true; "isSignal": true; }; "textButton": { "alias": "textButton"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "imgProfile": { "alias": "imgProfile"; "required": true; "isSignal": true; }; "imgBackground": { "alias": "imgBackground"; "required": true; "isSignal": true; }; "secondaryTextButton": { "alias": "secondaryTextButton"; "required": false; "isSignal": true; }; "secondaryIconButton": { "alias": "secondaryIconButton"; "required": false; "isSignal": true; }; "disableSecondaryButton": { "alias": "disableSecondaryButton"; "required": false; "isSignal": true; }; "disableMainButton": { "alias": "disableMainButton"; "required": false; "isSignal": true; }; "hideMainButton": { "alias": "hideMainButton"; "required": false; "isSignal": true; }; "hideSecondaryButton": { "alias": "hideSecondaryButton"; "required": false; "isSignal": true; }; "logoSrc": { "alias": "logoSrc"; "required": false; "isSignal": true; }; }, { "close": "close"; "access": "access"; "onSecondaryClick": "onSecondaryClick"; }, never, never, true, never>;
|
|
28
29
|
}
|
|
@@ -5,9 +5,10 @@ import * as i0 from "@angular/core";
|
|
|
5
5
|
export declare class BmbDropdownMenuComponent {
|
|
6
6
|
private projectionService;
|
|
7
7
|
items: import("@angular/core").InputSignal<IDropdownItem[]>;
|
|
8
|
+
clickedItem: import("@angular/core").OutputEmitterRef<IDropdownItem>;
|
|
8
9
|
contentRef: ElementRef<any>;
|
|
9
10
|
constructor(projectionService: BmbProjectionContentService);
|
|
10
11
|
openDropdown(): void;
|
|
11
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<BmbDropdownMenuComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BmbDropdownMenuComponent, "bmb-dropdown-menu", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BmbDropdownMenuComponent, "bmb-dropdown-menu", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; }, { "clickedItem": "clickedItem"; }, never, never, true, never>;
|
|
13
14
|
}
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export type IBmbStatusAppearance = 'success' | 'event' | 'warning' | 'error';
|
|
3
|
+
export type IBmbStatusIconColor = 'primary' | 'secondary';
|
|
3
4
|
export declare class BmbIconStatusComponent {
|
|
4
5
|
icon: import("@angular/core").InputSignal<string>;
|
|
5
6
|
statusAppearance: import("@angular/core").InputSignal<IBmbStatusAppearance | undefined>;
|
|
7
|
+
iconColor: import("@angular/core").InputSignal<IBmbStatusIconColor>;
|
|
6
8
|
getIconSize(): number;
|
|
7
9
|
getClassName(baseClassName: string, className: string): string;
|
|
8
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<BmbIconStatusComponent, never>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BmbIconStatusComponent, "bmb-icon-status", never, { "icon": { "alias": "icon"; "required": true; "isSignal": true; }; "statusAppearance": { "alias": "statusAppearance"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵ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>;
|
|
10
12
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { TemplateRef } from '@angular/core';
|
|
1
2
|
import { INotification, INotificationAction } from '../types';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class BmbPushNotificationItemComponent {
|
|
@@ -13,6 +14,8 @@ export declare class BmbPushNotificationItemComponent {
|
|
|
13
14
|
getAppName(): string;
|
|
14
15
|
handleDontAskAgain(): void;
|
|
15
16
|
handleAction(event: MouseEvent, action: INotificationAction): void;
|
|
17
|
+
isNotificationTemplate(): boolean;
|
|
18
|
+
getContent(): TemplateRef<unknown>;
|
|
16
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<BmbPushNotificationItemComponent, never>;
|
|
17
20
|
static ɵcmp: i0.ɵɵComponentDeclaration<BmbPushNotificationItemComponent, "bmb-push-notification-item", never, { "notification": { "alias": "notification"; "required": true; "isSignal": true; }; }, { "onClose": "onClose"; }, never, never, true, never>;
|
|
18
21
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { TemplateRef } from '@angular/core';
|
|
1
2
|
import { IButtonAppearance } from '../../types';
|
|
2
3
|
import { BmbToastAppearance } from '../bmb-toast/bmb-toast.component';
|
|
3
4
|
export interface INotification extends IMinimalNotification, IBmbNoticeCardContent {
|
|
@@ -20,7 +21,7 @@ export interface INotification extends IMinimalNotification, IBmbNoticeCardConte
|
|
|
20
21
|
export interface IMinimalNotification {
|
|
21
22
|
title: string;
|
|
22
23
|
subTitle?: string;
|
|
23
|
-
content?: string | IBmbNoticeCardDescription
|
|
24
|
+
content?: string | IBmbNoticeCardDescription | TemplateRef<unknown>;
|
|
24
25
|
isFullColor: boolean;
|
|
25
26
|
id?: string;
|
|
26
27
|
}
|
|
@@ -1,13 +1,12 @@
|
|
|
1
|
-
import { ElementRef } from '@angular/core';
|
|
1
|
+
import { AfterViewInit, ElementRef, OnInit } from '@angular/core';
|
|
2
2
|
import { FormControl } from '@angular/forms';
|
|
3
3
|
import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class BmbTextEditorComponent {
|
|
5
|
+
export declare class BmbTextEditorComponent implements AfterViewInit, OnInit {
|
|
6
6
|
private sanitizer;
|
|
7
7
|
control: import("@angular/core").InputSignal<FormControl<any>>;
|
|
8
8
|
editor: ElementRef<HTMLDivElement>;
|
|
9
|
-
|
|
10
|
-
sanitizedContent: SafeHtml;
|
|
9
|
+
sanitizedContent: import("@angular/core").WritableSignal<SafeHtml>;
|
|
11
10
|
currentAlignment: string;
|
|
12
11
|
showTableDialog: boolean;
|
|
13
12
|
tableRows: number;
|
|
@@ -15,6 +14,7 @@ export declare class BmbTextEditorComponent {
|
|
|
15
14
|
detectAlignment(): void;
|
|
16
15
|
applyAlignment(alignment: string): void;
|
|
17
16
|
constructor(sanitizer: DomSanitizer);
|
|
17
|
+
ngOnInit(): void;
|
|
18
18
|
ngAfterViewInit(): void;
|
|
19
19
|
handleChange(event: Event, type: string): void;
|
|
20
20
|
execCommand(command: string, value?: string | null): void;
|
|
@@ -5,6 +5,7 @@ export declare class BmbDropdownContentComponent {
|
|
|
5
5
|
items: import("@angular/core").ModelSignal<IDropdownItem[]>;
|
|
6
6
|
isKeyboardEvent: import("@angular/core").ModelSignal<boolean>;
|
|
7
7
|
enableFilter: import("@angular/core").InputSignal<boolean>;
|
|
8
|
+
clickedItem: import("@angular/core").OutputEmitterRef<IDropdownItem>;
|
|
8
9
|
isOpen: import("@angular/core").ModelSignal<boolean>;
|
|
9
10
|
filteredItems: import("@angular/core").Signal<IDropdownItem[]>;
|
|
10
11
|
filterString: import("@angular/core").WritableSignal<string>;
|
|
@@ -12,5 +13,5 @@ export declare class BmbDropdownContentComponent {
|
|
|
12
13
|
isSelected(item: string): boolean;
|
|
13
14
|
handleDropdown(item: IDropdownItem): void;
|
|
14
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<BmbDropdownContentComponent, never>;
|
|
15
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BmbDropdownContentComponent, "bmb-dropdown-content", never, { "selectedOption": { "alias": "selectedOption"; "required": false; "isSignal": true; }; "items": { "alias": "items"; "required": false; "isSignal": true; }; "isKeyboardEvent": { "alias": "isKeyboardEvent"; "required": false; "isSignal": true; }; "enableFilter": { "alias": "enableFilter"; "required": false; "isSignal": true; }; "isOpen": { "alias": "isOpen"; "required": false; "isSignal": true; }; }, { "items": "itemsChange"; "isKeyboardEvent": "isKeyboardEventChange"; "isOpen": "isOpenChange"; }, never, never, true, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BmbDropdownContentComponent, "bmb-dropdown-content", never, { "selectedOption": { "alias": "selectedOption"; "required": false; "isSignal": true; }; "items": { "alias": "items"; "required": false; "isSignal": true; }; "isKeyboardEvent": { "alias": "isKeyboardEvent"; "required": false; "isSignal": true; }; "enableFilter": { "alias": "enableFilter"; "required": false; "isSignal": true; }; "isOpen": { "alias": "isOpen"; "required": false; "isSignal": true; }; }, { "items": "itemsChange"; "isKeyboardEvent": "isKeyboardEventChange"; "clickedItem": "clickedItem"; "isOpen": "isOpenChange"; }, never, never, true, never>;
|
|
16
17
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ti-tecnologico-de-monterrey-oficial/ds-ng",
|
|
3
|
-
"version": "1.5.1319-
|
|
3
|
+
"version": "1.5.1319-c",
|
|
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",
|