@ti-tecnologico-de-monterrey-oficial/ds-ng 1.5.1320-b → 1.5.1320-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/index.d.ts CHANGED
@@ -1072,8 +1072,8 @@ declare class BmbCardButtonComponent {
1072
1072
  iconTemplate: TemplateRef<any> | null;
1073
1073
  isTemplate: _angular_core.InputSignal<boolean>;
1074
1074
  textLink: _angular_core.InputSignal<IBmbLinkConfiguration | undefined>;
1075
- onAddContentClick: _angular_core.OutputEmitterRef<MouseEvent>;
1076
- onTitleClick: _angular_core.OutputEmitterRef<MouseEvent>;
1075
+ onAddContentClick: _angular_core.OutputEmitterRef<MouseEvent | KeyboardEvent>;
1076
+ onTitleClick: _angular_core.OutputEmitterRef<MouseEvent | KeyboardEvent>;
1077
1077
  onSmallClick: _angular_core.OutputEmitterRef<MouseEvent>;
1078
1078
  isSmall: _angular_core.InputSignal<boolean>;
1079
1079
  botIcon: _angular_core.InputSignal<string>;
@@ -1085,8 +1085,8 @@ declare class BmbCardButtonComponent {
1085
1085
  customContent: TemplateRef<any>;
1086
1086
  truncateText(text: string, maxLength: number): string;
1087
1087
  handleSmallClick(event: MouseEvent): void;
1088
- handleTitleClick(event: MouseEvent): void;
1089
- handleAddContent(event: MouseEvent): void;
1088
+ handleTitleClick(event: MouseEvent | KeyboardEvent): void;
1089
+ handleAddContent(event: MouseEvent | KeyboardEvent): void;
1090
1090
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<BmbCardButtonComponent, never>;
1091
1091
  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; }; "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>;
1092
1092
  }
@@ -3503,12 +3503,11 @@ declare class BmbBookmarkComponent {
3503
3503
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<BmbBookmarkComponent, "bmb-bookmark", never, { "isActive": { "alias": "isActive"; "required": false; "isSignal": true; }; }, { "isActive": "isActiveChange"; }, never, never, true, never>;
3504
3504
  }
3505
3505
 
3506
- declare class BmbTextEditorComponent {
3506
+ declare class BmbTextEditorComponent implements AfterViewInit, OnInit {
3507
3507
  private sanitizer;
3508
3508
  control: _angular_core.InputSignal<FormControl<any>>;
3509
3509
  editor: ElementRef<HTMLDivElement>;
3510
- htmlContent: string;
3511
- sanitizedContent: SafeHtml;
3510
+ sanitizedContent: _angular_core.WritableSignal<SafeHtml>;
3512
3511
  currentAlignment: string;
3513
3512
  showTableDialog: boolean;
3514
3513
  tableRows: number;
@@ -3516,6 +3515,7 @@ declare class BmbTextEditorComponent {
3516
3515
  detectAlignment(): void;
3517
3516
  applyAlignment(alignment: string): void;
3518
3517
  constructor(sanitizer: DomSanitizer);
3518
+ ngOnInit(): void;
3519
3519
  ngAfterViewInit(): void;
3520
3520
  handleChange(event: Event, type: string): void;
3521
3521
  execCommand(command: string, value?: string | null): void;
@@ -3626,16 +3626,16 @@ declare class BmbChatBubblesComponent {
3626
3626
  isThinking: _angular_core.InputSignal<boolean>;
3627
3627
  iconBotDefault: _angular_core.Signal<string>;
3628
3628
  gptActiveIcons: _angular_core.InputSignal<IBmbChatGptIcons>;
3629
- onRepeatRequest: _angular_core.OutputEmitterRef<MouseEvent>;
3630
- onVoice: _angular_core.OutputEmitterRef<MouseEvent>;
3631
- onCopy: _angular_core.OutputEmitterRef<MouseEvent>;
3632
- onLike: _angular_core.OutputEmitterRef<MouseEvent>;
3633
- onDislike: _angular_core.OutputEmitterRef<MouseEvent>;
3634
- handleRepeat(event: MouseEvent): void;
3635
- handleVoice(event: MouseEvent): void;
3636
- handleCopyContent(event: MouseEvent): void;
3637
- handleLike(event: MouseEvent): void;
3638
- handleDislike(event: MouseEvent): void;
3629
+ onRepeatRequest: _angular_core.OutputEmitterRef<MouseEvent | KeyboardEvent>;
3630
+ onVoice: _angular_core.OutputEmitterRef<MouseEvent | KeyboardEvent>;
3631
+ onCopy: _angular_core.OutputEmitterRef<MouseEvent | KeyboardEvent>;
3632
+ onLike: _angular_core.OutputEmitterRef<MouseEvent | KeyboardEvent>;
3633
+ onDislike: _angular_core.OutputEmitterRef<MouseEvent | KeyboardEvent>;
3634
+ handleRepeat(event: MouseEvent | KeyboardEvent): void;
3635
+ handleVoice(event: MouseEvent | KeyboardEvent): void;
3636
+ handleCopyContent(event: MouseEvent | KeyboardEvent): void;
3637
+ handleLike(event: MouseEvent | KeyboardEvent): void;
3638
+ handleDislike(event: MouseEvent | KeyboardEvent): void;
3639
3639
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<BmbChatBubblesComponent, never>;
3640
3640
  static ɵcmp: _angular_core.ɵɵ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>;
3641
3641
  }
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-b",
3
+ "version": "1.5.1320-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",