@ti-tecnologico-de-monterrey-oficial/ds-ng 1.5.1220-d → 1.5.1220-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/en.json +113 -0
- package/assets/i18n/es.json +113 -0
- 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 +1497 -1051
- package/fesm2022/ti-tecnologico-de-monterrey-oficial-ds-ng.mjs.map +1 -1
- package/index.d.ts +184 -80
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _angular_core from '@angular/core';
|
|
2
|
-
import { TemplateRef, ApplicationRef, EnvironmentInjector, OnInit, AfterViewInit, OnDestroy, ElementRef, NgZone, Type, ViewContainerRef, ChangeDetectorRef, Renderer2, SimpleChanges, OnChanges, EventEmitter, AfterContentInit, DoCheck, QueryList, KeyValueDiffers } from '@angular/core';
|
|
2
|
+
import { TemplateRef, ApplicationRef, EnvironmentInjector, OnInit, AfterViewInit, OnDestroy, ElementRef, NgZone, Type, PipeTransform, ViewContainerRef, ChangeDetectorRef, Renderer2, SimpleChanges, OnChanges, EventEmitter, AfterContentInit, DoCheck, QueryList, KeyValueDiffers } from '@angular/core';
|
|
3
3
|
import * as rxjs from 'rxjs';
|
|
4
4
|
import { DateTime, Interval } from 'luxon';
|
|
5
5
|
import { Router } from '@angular/router';
|
|
@@ -584,15 +584,38 @@ declare class BmbUserProfileService {
|
|
|
584
584
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<BmbUserProfileService>;
|
|
585
585
|
}
|
|
586
586
|
|
|
587
|
+
interface BmbDictionaries {
|
|
588
|
+
[key: string]: {
|
|
589
|
+
[key: string]: string | {
|
|
590
|
+
[key: string]: string | {
|
|
591
|
+
[key: string]: string;
|
|
592
|
+
};
|
|
593
|
+
};
|
|
594
|
+
};
|
|
595
|
+
}
|
|
596
|
+
declare class BmbTranslationsService {
|
|
597
|
+
private currentLanguage;
|
|
598
|
+
private dictionaries;
|
|
599
|
+
private selectedDictionary;
|
|
600
|
+
getCurrentLanguage(): string;
|
|
601
|
+
setLanguage(lang: string): void;
|
|
602
|
+
updateDictionary(lang: string, dictionary: BmbDictionaries): void;
|
|
603
|
+
addDictionary(lang: string, dictionary: BmbDictionaries): void;
|
|
604
|
+
translate(keyList: string): string;
|
|
605
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BmbTranslationsService, never>;
|
|
606
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<BmbTranslationsService>;
|
|
607
|
+
}
|
|
608
|
+
|
|
587
609
|
interface IBmbLoginOnBoardingCustomization {
|
|
588
610
|
anotherAccount: IBmbLinkConfiguration;
|
|
589
611
|
forgottenPassword: IBmbLinkConfiguration;
|
|
590
612
|
}
|
|
591
613
|
declare class BmbLoginOnboardingComponent {
|
|
592
614
|
private loginOnboardingService;
|
|
615
|
+
private translationService;
|
|
593
616
|
loginOnBoardingCustomization: _angular_core.InputSignal<IBmbLoginOnBoardingCustomization>;
|
|
594
617
|
handleRequest: _angular_core.OutputEmitterRef<any>;
|
|
595
|
-
constructor(loginOnboardingService: BmbLoginOnboardingService);
|
|
618
|
+
constructor(loginOnboardingService: BmbLoginOnboardingService, translationService: BmbTranslationsService);
|
|
596
619
|
ngOnInit(): void;
|
|
597
620
|
getIsLoading(): boolean;
|
|
598
621
|
getActivePage(): number;
|
|
@@ -733,6 +756,34 @@ declare class BmbProjectionContentService {
|
|
|
733
756
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<BmbProjectionContentService>;
|
|
734
757
|
}
|
|
735
758
|
|
|
759
|
+
declare class ThemeService {
|
|
760
|
+
private defaultTheme;
|
|
761
|
+
constructor(defaultTheme: string);
|
|
762
|
+
private themeSubject;
|
|
763
|
+
theme$: rxjs.Observable<string>;
|
|
764
|
+
getDefaultTheme(): string;
|
|
765
|
+
setTheme(theme: string): void;
|
|
766
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ThemeService, [{ optional: true; }]>;
|
|
767
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<ThemeService>;
|
|
768
|
+
}
|
|
769
|
+
|
|
770
|
+
declare class ToastService {
|
|
771
|
+
private isOpenSubject;
|
|
772
|
+
isOpen$: rxjs.Observable<boolean>;
|
|
773
|
+
openToast(): void;
|
|
774
|
+
closeToast(): void;
|
|
775
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ToastService, never>;
|
|
776
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<ToastService>;
|
|
777
|
+
}
|
|
778
|
+
|
|
779
|
+
declare class TranslatePipe implements PipeTransform {
|
|
780
|
+
private translationService;
|
|
781
|
+
constructor(translationService: BmbTranslationsService);
|
|
782
|
+
transform(key: string): string;
|
|
783
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TranslatePipe, never>;
|
|
784
|
+
static ɵpipe: _angular_core.ɵɵPipeDeclaration<TranslatePipe, "translate", true>;
|
|
785
|
+
}
|
|
786
|
+
|
|
736
787
|
declare class DsNgComponent {
|
|
737
788
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DsNgComponent, never>;
|
|
738
789
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsNgComponent, "bmb-ds-ng", never, {}, {}, never, never, true, never>;
|
|
@@ -771,16 +822,19 @@ interface IMargin {
|
|
|
771
822
|
sm: number;
|
|
772
823
|
lg?: number;
|
|
773
824
|
}
|
|
774
|
-
declare class BmbLayoutItemDirective {
|
|
825
|
+
declare class BmbLayoutItemDirective implements OnInit, AfterViewInit {
|
|
826
|
+
private el;
|
|
775
827
|
colSm: _angular_core.InputSignal<IColumSizeMobile>;
|
|
776
828
|
colLg: _angular_core.InputSignal<IColumSizeFull>;
|
|
777
829
|
marginLeft: _angular_core.InputSignal<IMargin>;
|
|
778
830
|
marginRight: _angular_core.InputSignal<IMargin>;
|
|
779
831
|
colGrow: _angular_core.InputSignal<number>;
|
|
780
832
|
isDynamicItem: _angular_core.InputSignal<boolean>;
|
|
833
|
+
constructor(el: ElementRef);
|
|
781
834
|
get elementClass(): string[];
|
|
782
835
|
flex?: string;
|
|
783
836
|
ngOnInit(): void;
|
|
837
|
+
ngAfterViewInit(): void;
|
|
784
838
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BmbLayoutItemDirective, never>;
|
|
785
839
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<BmbLayoutItemDirective, "[bmbLayoutItem]", never, { "colSm": { "alias": "colSm"; "required": false; "isSignal": true; }; "colLg": { "alias": "colLg"; "required": false; "isSignal": true; }; "marginLeft": { "alias": "marginLeft"; "required": false; "isSignal": true; }; "marginRight": { "alias": "marginRight"; "required": false; "isSignal": true; }; "colGrow": { "alias": "colGrow"; "required": false; "isSignal": true; }; "isDynamicItem": { "alias": "isDynamicItem"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
786
840
|
}
|
|
@@ -793,10 +847,10 @@ declare class BmbLayoutDirective {
|
|
|
793
847
|
dynamicCols: _angular_core.InputSignal<boolean>;
|
|
794
848
|
justify: _angular_core.InputSignal<IJustifyOptions>;
|
|
795
849
|
alignItems: _angular_core.InputSignal<IAlignItemsOptions>;
|
|
796
|
-
|
|
850
|
+
isContainerQuery: _angular_core.InputSignal<boolean | undefined>;
|
|
797
851
|
get elementClass(): string[];
|
|
798
852
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BmbLayoutDirective, never>;
|
|
799
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<BmbLayoutDirective, "[bmbLayout]", never, { "gapSize": { "alias": "gapSize"; "required": false; "isSignal": true; }; "margin": { "alias": "margin"; "required": false; "isSignal": true; }; "dynamicCols": { "alias": "dynamicCols"; "required": false; "isSignal": true; }; "justify": { "alias": "justify"; "required": false; "isSignal": true; }; "alignItems": { "alias": "alignItems"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
853
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<BmbLayoutDirective, "[bmbLayout]", never, { "gapSize": { "alias": "gapSize"; "required": false; "isSignal": true; }; "margin": { "alias": "margin"; "required": false; "isSignal": true; }; "dynamicCols": { "alias": "dynamicCols"; "required": false; "isSignal": true; }; "justify": { "alias": "justify"; "required": false; "isSignal": true; }; "alignItems": { "alias": "alignItems"; "required": false; "isSignal": true; }; "isContainerQuery": { "alias": "isContainerQuery"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
800
854
|
}
|
|
801
855
|
|
|
802
856
|
declare class BmbVerticalLayoutDirective {
|
|
@@ -1167,6 +1221,7 @@ declare class BmbTooltipComponent {
|
|
|
1167
1221
|
align: _angular_core.InputSignal<IBmbAlignTooltip>;
|
|
1168
1222
|
justify: _angular_core.InputSignal<IBmbJustifyTooltip>;
|
|
1169
1223
|
isFill: _angular_core.InputSignal<boolean>;
|
|
1224
|
+
handleFocus(event: Event): void;
|
|
1170
1225
|
getClasses(): string;
|
|
1171
1226
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BmbTooltipComponent, never>;
|
|
1172
1227
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BmbTooltipComponent, "bmb-tooltip", never, { "text": { "alias": "text"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "align": { "alias": "align"; "required": false; "isSignal": true; }; "justify": { "alias": "justify"; "required": false; "isSignal": true; }; "isFill": { "alias": "isFill"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
@@ -1437,7 +1492,7 @@ declare class BmbSwitchComponent {
|
|
|
1437
1492
|
rightText: _angular_core.InputSignal<string>;
|
|
1438
1493
|
rightIcon: _angular_core.InputSignal<string>;
|
|
1439
1494
|
isChecked: _angular_core.ModelSignal<boolean>;
|
|
1440
|
-
ariaLabel: _angular_core.InputSignal<string>;
|
|
1495
|
+
ariaLabel: _angular_core.InputSignal<string | undefined>;
|
|
1441
1496
|
id: _angular_core.InputSignal<string>;
|
|
1442
1497
|
disabled: _angular_core.InputSignal<boolean>;
|
|
1443
1498
|
name: _angular_core.InputSignal<string>;
|
|
@@ -1472,14 +1527,15 @@ declare class BmbValueCounterComponent {
|
|
|
1472
1527
|
}
|
|
1473
1528
|
|
|
1474
1529
|
declare class BmbStepProgressBarComponent {
|
|
1530
|
+
private translateService;
|
|
1475
1531
|
activeStep: _angular_core.ModelSignal<number>;
|
|
1476
1532
|
totalSteps: _angular_core.InputSignal<number>;
|
|
1477
1533
|
size: _angular_core.InputSignal<"default" | "normal" | "medium" | "small">;
|
|
1478
1534
|
freeze: _angular_core.InputSignal<boolean>;
|
|
1479
1535
|
type: _angular_core.InputSignal<"horizontal" | "vertical" | "step-panel">;
|
|
1480
1536
|
labelSteps: _angular_core.InputSignal<string[]>;
|
|
1481
|
-
labelComplete: _angular_core.InputSignal<string>;
|
|
1482
|
-
labelIncomplete: _angular_core.InputSignal<string>;
|
|
1537
|
+
labelComplete: _angular_core.InputSignal<string | undefined>;
|
|
1538
|
+
labelIncomplete: _angular_core.InputSignal<string | undefined>;
|
|
1483
1539
|
stepTemplates: _angular_core.InputSignal<TemplateRef<any>[]>;
|
|
1484
1540
|
onStepPress: _angular_core.OutputEmitterRef<number>;
|
|
1485
1541
|
onStepPanelPress: _angular_core.OutputEmitterRef<number>;
|
|
@@ -1487,7 +1543,7 @@ declare class BmbStepProgressBarComponent {
|
|
|
1487
1543
|
private mql;
|
|
1488
1544
|
private abort;
|
|
1489
1545
|
readonly isMobileOrTablet: _angular_core.WritableSignal<boolean>;
|
|
1490
|
-
constructor();
|
|
1546
|
+
constructor(translateService: BmbTranslationsService);
|
|
1491
1547
|
private truncate;
|
|
1492
1548
|
readonly maxChars: _angular_core.Signal<90 | 70>;
|
|
1493
1549
|
readonly labelStepsTruncated: _angular_core.Signal<string[]>;
|
|
@@ -1521,41 +1577,78 @@ declare class BmbUserSummaryComponent {
|
|
|
1521
1577
|
image: _angular_core.InputSignal<string>;
|
|
1522
1578
|
infoCareer: _angular_core.InputSignal<string>;
|
|
1523
1579
|
noBox: _angular_core.InputSignal<boolean>;
|
|
1524
|
-
salutation: _angular_core.InputSignal<string>;
|
|
1580
|
+
salutation: _angular_core.InputSignal<string | undefined>;
|
|
1525
1581
|
onClick: _angular_core.OutputEmitterRef<MouseEvent>;
|
|
1526
1582
|
handleClick(event: MouseEvent): void;
|
|
1527
1583
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BmbUserSummaryComponent, never>;
|
|
1528
1584
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BmbUserSummaryComponent, "bmb-user-summary", never, { "isProfile": { "alias": "isProfile"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "image": { "alias": "image"; "required": false; "isSignal": true; }; "infoCareer": { "alias": "infoCareer"; "required": false; "isSignal": true; }; "noBox": { "alias": "noBox"; "required": false; "isSignal": true; }; "salutation": { "alias": "salutation"; "required": false; "isSignal": true; }; }, { "onClick": "onClick"; }, never, never, true, never>;
|
|
1529
1585
|
}
|
|
1530
1586
|
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
|
|
1587
|
+
type IBmbContentLayoutSummary = 'column' | 'row';
|
|
1588
|
+
declare class BmbUserSummaryContentComponent {
|
|
1589
|
+
isProfile: _angular_core.InputSignal<boolean>;
|
|
1590
|
+
name: _angular_core.InputSignal<string>;
|
|
1591
|
+
userId: _angular_core.InputSignal<string>;
|
|
1592
|
+
image: _angular_core.InputSignal<string>;
|
|
1593
|
+
isImageBordered: _angular_core.InputSignal<boolean>;
|
|
1594
|
+
altImage: _angular_core.InputSignal<string>;
|
|
1595
|
+
imageSize: _angular_core.InputSignal<IBmbUserImageSize>;
|
|
1596
|
+
infoCareer: _angular_core.InputSignal<string>;
|
|
1597
|
+
campus: _angular_core.InputSignal<string>;
|
|
1598
|
+
role: _angular_core.InputSignal<string>;
|
|
1599
|
+
email: _angular_core.InputSignal<string>;
|
|
1600
|
+
salutation: _angular_core.InputSignal<string>;
|
|
1601
|
+
contentLayout: _angular_core.InputSignal<IBmbContentLayoutSummary>;
|
|
1602
|
+
gapSize: _angular_core.InputSignal<SizeNames>;
|
|
1603
|
+
CURP: _angular_core.InputSignal<string | undefined>;
|
|
1604
|
+
additionalInfo: _angular_core.InputSignal<string | undefined>;
|
|
1605
|
+
onUserClick: _angular_core.OutputEmitterRef<MouseEvent>;
|
|
1606
|
+
getClass(mainClassName: string): string[];
|
|
1607
|
+
getSalutationClasses(mainClassName: string, isRole?: boolean): string[];
|
|
1608
|
+
getName(): string;
|
|
1609
|
+
handleUserClick(event: MouseEvent): void;
|
|
1610
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BmbUserSummaryContentComponent, never>;
|
|
1611
|
+
static ɵcmp: _angular_core.ɵɵ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; }; "CURP": { "alias": "CURP"; "required": false; "isSignal": true; }; "additionalInfo": { "alias": "additionalInfo"; "required": false; "isSignal": true; }; }, { "onUserClick": "onUserClick"; }, never, never, true, never>;
|
|
1542
1612
|
}
|
|
1543
1613
|
|
|
1544
|
-
|
|
1545
|
-
declare class CircleProgressOptions implements BmbProgressCircleOptionsInterface {
|
|
1614
|
+
interface BmbProgressCircleOptionsInterface {
|
|
1546
1615
|
valueLabel: string;
|
|
1547
1616
|
showValueLabel: boolean;
|
|
1548
|
-
backgroundPadding: number;
|
|
1549
1617
|
percent: number;
|
|
1550
1618
|
radius: number;
|
|
1551
1619
|
space: number;
|
|
1552
|
-
outerStrokeWidth: number;
|
|
1553
|
-
outerStrokeLinecap: string;
|
|
1554
|
-
innerStrokeWidth: number;
|
|
1555
1620
|
title: string | Array<String>;
|
|
1556
1621
|
showTitle: boolean;
|
|
1557
1622
|
showBackground: boolean;
|
|
1558
1623
|
responsive: boolean;
|
|
1624
|
+
outerStrokeWidth: number;
|
|
1625
|
+
backgroundPadding: number;
|
|
1626
|
+
outerStrokeLinecap: string;
|
|
1627
|
+
innerStrokeWidth: number;
|
|
1628
|
+
}
|
|
1629
|
+
|
|
1630
|
+
type BmbProgressCirclePathStatus = 'gray' | 'success' | 'error' | 'warning';
|
|
1631
|
+
interface SvgConfig {
|
|
1632
|
+
viewBox: string;
|
|
1633
|
+
height: number | string;
|
|
1634
|
+
width: number | string;
|
|
1635
|
+
backgroundCircle: {
|
|
1636
|
+
cx: number;
|
|
1637
|
+
cy: number;
|
|
1638
|
+
r: number;
|
|
1639
|
+
};
|
|
1640
|
+
circle: {
|
|
1641
|
+
cx: number;
|
|
1642
|
+
cy: number;
|
|
1643
|
+
r: number;
|
|
1644
|
+
strokeWidth: number;
|
|
1645
|
+
};
|
|
1646
|
+
path: {
|
|
1647
|
+
d: string;
|
|
1648
|
+
strokeWidth: number;
|
|
1649
|
+
fill: string;
|
|
1650
|
+
strokeLinecap: string;
|
|
1651
|
+
};
|
|
1559
1652
|
}
|
|
1560
1653
|
declare class BmbProgressCircleComponent implements OnChanges {
|
|
1561
1654
|
valueLabel: _angular_core.InputSignal<string | undefined>;
|
|
@@ -1567,20 +1660,18 @@ declare class BmbProgressCircleComponent implements OnChanges {
|
|
|
1567
1660
|
showRestBackground: _angular_core.InputSignal<boolean>;
|
|
1568
1661
|
fillPathStatus: _angular_core.InputSignal<BmbProgressCirclePathStatus>;
|
|
1569
1662
|
fullFillPathStatus: _angular_core.InputSignal<boolean>;
|
|
1570
|
-
|
|
1571
|
-
svg: any;
|
|
1572
|
-
options: CircleProgressOptions;
|
|
1663
|
+
options: _angular_core.Signal<BmbProgressCircleOptionsInterface>;
|
|
1573
1664
|
_lastPercent: number;
|
|
1574
|
-
|
|
1665
|
+
svg: SvgConfig | null;
|
|
1575
1666
|
ngOnInit(): void;
|
|
1576
1667
|
ngOnChanges(changes: SimpleChanges): void;
|
|
1577
1668
|
render(): void;
|
|
1669
|
+
isTitleString(): boolean;
|
|
1578
1670
|
polarToCartesian(centerX: number, centerY: number, radius: number, angleInDegrees: number): {
|
|
1579
1671
|
x: number;
|
|
1580
1672
|
y: number;
|
|
1581
1673
|
};
|
|
1582
1674
|
draw(percent: number): void;
|
|
1583
|
-
private applyOptions;
|
|
1584
1675
|
private getRelativeY;
|
|
1585
1676
|
getFillPathStatus(): string;
|
|
1586
1677
|
isFullColored(): boolean;
|
|
@@ -1602,7 +1693,7 @@ interface IBmbIsButton {
|
|
|
1602
1693
|
isMobile: boolean;
|
|
1603
1694
|
hasChildren: boolean;
|
|
1604
1695
|
}
|
|
1605
|
-
declare class BmbSidebarComponent
|
|
1696
|
+
declare class BmbSidebarComponent {
|
|
1606
1697
|
elements: _angular_core.InputSignal<SidebarElement[][]>;
|
|
1607
1698
|
title: _angular_core.InputSignal<string>;
|
|
1608
1699
|
position: _angular_core.InputSignal<IPositionButtonMenu>;
|
|
@@ -1612,10 +1703,11 @@ declare class BmbSidebarComponent implements OnInit {
|
|
|
1612
1703
|
isActive: boolean;
|
|
1613
1704
|
hasSubmenu: boolean;
|
|
1614
1705
|
maxChildrenLevel: number;
|
|
1706
|
+
error: boolean;
|
|
1615
1707
|
sideNav: ElementRef;
|
|
1616
1708
|
onFocusIn(): void;
|
|
1617
1709
|
onFocusOut(): void;
|
|
1618
|
-
|
|
1710
|
+
constructor();
|
|
1619
1711
|
checkForButton({ isMobile, hasChildren }: IBmbIsButton): boolean;
|
|
1620
1712
|
getLink({ link, isMobile, hasChildren }: IBmbIsButton): string;
|
|
1621
1713
|
closeSidebar(): void;
|
|
@@ -1659,16 +1751,16 @@ declare class BmbCheckboxComponent implements OnInit {
|
|
|
1659
1751
|
declare class BmbCalendarComponent implements OnInit, AfterViewInit {
|
|
1660
1752
|
private eventsSignal;
|
|
1661
1753
|
private modalService;
|
|
1754
|
+
private translationsService;
|
|
1662
1755
|
view: _angular_core.ModelSignal<IBmbCalendarView>;
|
|
1663
1756
|
filters: _angular_core.ModelSignal<{
|
|
1664
1757
|
[key: string]: boolean;
|
|
1665
1758
|
}>;
|
|
1666
1759
|
calendarTimezone: _angular_core.InputSignal<string>;
|
|
1667
1760
|
clientTimezone: _angular_core.InputSignal<string>;
|
|
1668
|
-
lang: _angular_core.InputSignal<string>;
|
|
1669
1761
|
height: _angular_core.InputSignal<string | number>;
|
|
1670
1762
|
startBusinessHour: _angular_core.InputSignal<number>;
|
|
1671
|
-
calendarTitle: _angular_core.InputSignal<string>;
|
|
1763
|
+
calendarTitle: _angular_core.InputSignal<string | undefined>;
|
|
1672
1764
|
dateFormat: _angular_core.InputSignal<string>;
|
|
1673
1765
|
events: _angular_core.Signal<IBmbCalendarEvent[]>;
|
|
1674
1766
|
showFilterButton: _angular_core.InputSignal<boolean>;
|
|
@@ -1692,7 +1784,7 @@ declare class BmbCalendarComponent implements OnInit, AfterViewInit {
|
|
|
1692
1784
|
detailContent?: TemplateRef<any>;
|
|
1693
1785
|
modalTemplate: TemplateRef<any>;
|
|
1694
1786
|
private resize;
|
|
1695
|
-
constructor(eventsSignal: BmbCalendarService, modalService: BmbNativeModalService);
|
|
1787
|
+
constructor(eventsSignal: BmbCalendarService, modalService: BmbNativeModalService, translationsService: BmbTranslationsService);
|
|
1696
1788
|
currentTime: _angular_core.WritableSignal<DateTime<boolean>>;
|
|
1697
1789
|
private timerId;
|
|
1698
1790
|
ngOnDestroy(): void;
|
|
@@ -1714,7 +1806,7 @@ declare class BmbCalendarComponent implements OnInit, AfterViewInit {
|
|
|
1714
1806
|
getCalendarName(name: string): string;
|
|
1715
1807
|
getBulletClass(name: string): string[];
|
|
1716
1808
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BmbCalendarComponent, never>;
|
|
1717
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BmbCalendarComponent, "bmb-calendar", never, { "view": { "alias": "view"; "required": false; "isSignal": true; }; "filters": { "alias": "filters"; "required": false; "isSignal": true; }; "calendarTimezone": { "alias": "calendarTimezone"; "required": false; "isSignal": true; }; "clientTimezone": { "alias": "clientTimezone"; "required": false; "isSignal": true; }; "
|
|
1809
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BmbCalendarComponent, "bmb-calendar", never, { "view": { "alias": "view"; "required": false; "isSignal": true; }; "filters": { "alias": "filters"; "required": false; "isSignal": true; }; "calendarTimezone": { "alias": "calendarTimezone"; "required": false; "isSignal": true; }; "clientTimezone": { "alias": "clientTimezone"; "required": false; "isSignal": true; }; "height": { "alias": "height"; "required": false; "isSignal": true; }; "startBusinessHour": { "alias": "startBusinessHour"; "required": false; "isSignal": true; }; "calendarTitle": { "alias": "calendarTitle"; "required": false; "isSignal": true; }; "dateFormat": { "alias": "dateFormat"; "required": false; "isSignal": true; }; "showFilterButton": { "alias": "showFilterButton"; "required": false; "isSignal": true; }; "disableMobileFilter": { "alias": "disableMobileFilter"; "required": false; "isSignal": true; }; "visibleDate": { "alias": "visibleDate"; "required": false; "isSignal": true; }; "currentDate": { "alias": "currentDate"; "required": false; "isSignal": true; }; }, { "view": "viewChange"; "filters": "filtersChange"; "visibleDate": "visibleDateChange"; "onDateChange": "onDateChange"; "onClose": "onClose"; }, never, never, true, never>;
|
|
1718
1810
|
}
|
|
1719
1811
|
|
|
1720
1812
|
declare class BmbTopBarComponent implements OnInit {
|
|
@@ -1799,8 +1891,8 @@ declare class BmbRadialComponent implements OnInit {
|
|
|
1799
1891
|
declare class BmbTotpComponent {
|
|
1800
1892
|
private formBuilder;
|
|
1801
1893
|
private destroy$;
|
|
1802
|
-
title: _angular_core.InputSignal<string>;
|
|
1803
|
-
subtitle: _angular_core.InputSignal<string>;
|
|
1894
|
+
title: _angular_core.InputSignal<string | undefined>;
|
|
1895
|
+
subtitle: _angular_core.InputSignal<string | undefined>;
|
|
1804
1896
|
instanceId: _angular_core.InputSignal<string>;
|
|
1805
1897
|
codeError: _angular_core.InputSignal<boolean>;
|
|
1806
1898
|
errorMessage: _angular_core.InputSignal<string>;
|
|
@@ -2193,7 +2285,6 @@ declare class BmbDatepickerComponent implements OnInit {
|
|
|
2193
2285
|
name: _angular_core.InputSignal<string>;
|
|
2194
2286
|
disableDatesBefore: _angular_core.InputSignal<string>;
|
|
2195
2287
|
disableDatesAfter: _angular_core.InputSignal<string>;
|
|
2196
|
-
lang: _angular_core.InputSignal<string>;
|
|
2197
2288
|
helperMessage: _angular_core.InputSignal<string>;
|
|
2198
2289
|
value: _angular_core.InputSignal<string | undefined>;
|
|
2199
2290
|
customValidation: _angular_core.InputSignal<ValidatorFn | undefined>;
|
|
@@ -2221,7 +2312,7 @@ declare class BmbDatepickerComponent implements OnInit {
|
|
|
2221
2312
|
convertToDate(date: string): DateTime | null;
|
|
2222
2313
|
get shouldShowError(): boolean;
|
|
2223
2314
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BmbDatepickerComponent, never>;
|
|
2224
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BmbDatepickerComponent, "bmb-datepicker", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "dateFormat": { "alias": "dateFormat"; "required": false; "isSignal": true; }; "invalidFormatErrorMessage": { "alias": "invalidFormatErrorMessage"; "required": false; "isSignal": true; }; "requiredFieldErrorMessage": { "alias": "requiredFieldErrorMessage"; "required": false; "isSignal": true; }; "appearance": { "alias": "appearance"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "isRequired": { "alias": "isRequired"; "required": false; "isSignal": true; }; "isClearable": { "alias": "isClearable"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "stepYearPicker": { "alias": "stepYearPicker"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "disableDatesBefore": { "alias": "disableDatesBefore"; "required": false; "isSignal": true; }; "disableDatesAfter": { "alias": "disableDatesAfter"; "required": false; "isSignal": true; }; "
|
|
2315
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BmbDatepickerComponent, "bmb-datepicker", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "dateFormat": { "alias": "dateFormat"; "required": false; "isSignal": true; }; "invalidFormatErrorMessage": { "alias": "invalidFormatErrorMessage"; "required": false; "isSignal": true; }; "requiredFieldErrorMessage": { "alias": "requiredFieldErrorMessage"; "required": false; "isSignal": true; }; "appearance": { "alias": "appearance"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "isRequired": { "alias": "isRequired"; "required": false; "isSignal": true; }; "isClearable": { "alias": "isClearable"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "stepYearPicker": { "alias": "stepYearPicker"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "disableDatesBefore": { "alias": "disableDatesBefore"; "required": false; "isSignal": true; }; "disableDatesAfter": { "alias": "disableDatesAfter"; "required": false; "isSignal": true; }; "helperMessage": { "alias": "helperMessage"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "customValidation": { "alias": "customValidation"; "required": false; "isSignal": true; }; "errorMessage": { "alias": "errorMessage"; "required": false; "isSignal": true; }; "inputId": { "alias": "inputId"; "required": false; "isSignal": true; }; "tooltip": { "alias": "tooltip"; "required": false; "isSignal": true; }; "tooltipPosition": { "alias": "tooltipPosition"; "required": false; "isSignal": true; }; "control": { "alias": "control"; "required": false; "isSignal": true; }; }, { "control": "controlChange"; "onChange": "onChange"; }, never, never, true, never>;
|
|
2225
2316
|
}
|
|
2226
2317
|
|
|
2227
2318
|
interface IBmbCountryCode {
|
|
@@ -2472,7 +2563,6 @@ declare class BmbChatBarComponent {
|
|
|
2472
2563
|
files: File[];
|
|
2473
2564
|
control: FormControl<any>;
|
|
2474
2565
|
isDialogOpen: _angular_core.WritableSignal<boolean>;
|
|
2475
|
-
defaultPlaceholder: _angular_core.Signal<string>;
|
|
2476
2566
|
showMicControls: boolean;
|
|
2477
2567
|
onDragFiles: boolean;
|
|
2478
2568
|
arrayThumbnail: string[];
|
|
@@ -2545,8 +2635,8 @@ declare class BmbNotificationCardComponent {
|
|
|
2545
2635
|
}
|
|
2546
2636
|
|
|
2547
2637
|
declare class BmbHomeCardChatComponent {
|
|
2548
|
-
title: _angular_core.InputSignal<string>;
|
|
2549
|
-
subtitle: _angular_core.InputSignal<string>;
|
|
2638
|
+
title: _angular_core.InputSignal<string | undefined>;
|
|
2639
|
+
subtitle: _angular_core.InputSignal<string | undefined>;
|
|
2550
2640
|
icon: _angular_core.InputSignal<string>;
|
|
2551
2641
|
isMobile: _angular_core.InputSignal<boolean>;
|
|
2552
2642
|
placeholder: _angular_core.InputSignal<string>;
|
|
@@ -2581,26 +2671,26 @@ declare class BmbPaginatorComponent {
|
|
|
2581
2671
|
|
|
2582
2672
|
declare class BmbAccountStatementComponent implements AfterViewInit, OnInit {
|
|
2583
2673
|
private modalService;
|
|
2584
|
-
title: _angular_core.InputSignal<string>;
|
|
2674
|
+
title: _angular_core.InputSignal<string | undefined>;
|
|
2585
2675
|
progressCircleTitle: _angular_core.InputSignal<string[]>;
|
|
2586
|
-
labelPrimary: _angular_core.InputSignal<string>;
|
|
2587
|
-
labelSecondary: _angular_core.InputSignal<string>;
|
|
2676
|
+
labelPrimary: _angular_core.InputSignal<string | undefined>;
|
|
2677
|
+
labelSecondary: _angular_core.InputSignal<string | undefined>;
|
|
2588
2678
|
totalCount: _angular_core.InputSignal<number>;
|
|
2589
2679
|
counter: _angular_core.InputSignal<number>;
|
|
2590
|
-
progressTitle: _angular_core.InputSignal<string>;
|
|
2680
|
+
progressTitle: _angular_core.InputSignal<string | undefined>;
|
|
2591
2681
|
formatDates: _angular_core.InputSignal<string>;
|
|
2592
2682
|
paymentDeadline: _angular_core.InputSignal<string | undefined>;
|
|
2593
2683
|
cutOffDate: _angular_core.InputSignal<string | undefined>;
|
|
2594
|
-
paymentDeadlineLabel: _angular_core.InputSignal<string>;
|
|
2595
|
-
cutOffDateLabel: _angular_core.InputSignal<string>;
|
|
2596
|
-
payButtonLabel: _angular_core.InputSignal<string>;
|
|
2597
|
-
backButtonLabel: _angular_core.InputSignal<string>;
|
|
2598
|
-
modalTitle: _angular_core.InputSignal<string>;
|
|
2599
|
-
modalSubtitle: _angular_core.InputSignal<string>;
|
|
2600
|
-
modalRestLabel: _angular_core.InputSignal<string>;
|
|
2601
|
-
modalOtherAmountLabel: _angular_core.InputSignal<string>;
|
|
2602
|
-
modalPrimaryButtonLabel: _angular_core.InputSignal<string>;
|
|
2603
|
-
errorMessage: _angular_core.InputSignal<string>;
|
|
2684
|
+
paymentDeadlineLabel: _angular_core.InputSignal<string | undefined>;
|
|
2685
|
+
cutOffDateLabel: _angular_core.InputSignal<string | undefined>;
|
|
2686
|
+
payButtonLabel: _angular_core.InputSignal<string | undefined>;
|
|
2687
|
+
backButtonLabel: _angular_core.InputSignal<string | undefined>;
|
|
2688
|
+
modalTitle: _angular_core.InputSignal<string | undefined>;
|
|
2689
|
+
modalSubtitle: _angular_core.InputSignal<string | undefined>;
|
|
2690
|
+
modalRestLabel: _angular_core.InputSignal<string | undefined>;
|
|
2691
|
+
modalOtherAmountLabel: _angular_core.InputSignal<string | undefined>;
|
|
2692
|
+
modalPrimaryButtonLabel: _angular_core.InputSignal<string | undefined>;
|
|
2693
|
+
errorMessage: _angular_core.InputSignal<string | undefined>;
|
|
2604
2694
|
closeEvent: _angular_core.OutputEmitterRef<MouseEvent>;
|
|
2605
2695
|
backEvent: _angular_core.OutputEmitterRef<MouseEvent>;
|
|
2606
2696
|
payEvent: _angular_core.OutputEmitterRef<number>;
|
|
@@ -2948,16 +3038,16 @@ declare class BmbDropzoneComponent {
|
|
|
2948
3038
|
private cdr;
|
|
2949
3039
|
appearanceContrast: _angular_core.InputSignal<IBmbContrast>;
|
|
2950
3040
|
acceptedExtensions: _angular_core.InputSignal<string[]>;
|
|
2951
|
-
dropInstruction: _angular_core.InputSignal<string>;
|
|
2952
|
-
dropLabel: _angular_core.InputSignal<string>;
|
|
2953
|
-
errorMessage: _angular_core.InputSignal<string>;
|
|
2954
|
-
errorMessageFormat: _angular_core.InputSignal<string>;
|
|
2955
|
-
errorMessageSize: _angular_core.InputSignal<string>;
|
|
3041
|
+
dropInstruction: _angular_core.InputSignal<string | undefined>;
|
|
3042
|
+
dropLabel: _angular_core.InputSignal<string | undefined>;
|
|
3043
|
+
errorMessage: _angular_core.InputSignal<string | undefined>;
|
|
3044
|
+
errorMessageFormat: _angular_core.InputSignal<string | undefined>;
|
|
3045
|
+
errorMessageSize: _angular_core.InputSignal<string | undefined>;
|
|
2956
3046
|
fileDataList: FileData[];
|
|
2957
3047
|
fileSize: _angular_core.InputSignal<number>;
|
|
2958
|
-
formatFilesLabel: _angular_core.InputSignal<string>;
|
|
3048
|
+
formatFilesLabel: _angular_core.InputSignal<string | undefined>;
|
|
2959
3049
|
linkFilesSupported: _angular_core.InputSignal<string>;
|
|
2960
|
-
linkLabel: _angular_core.InputSignal<string>;
|
|
3050
|
+
linkLabel: _angular_core.InputSignal<string | undefined>;
|
|
2961
3051
|
mainIcon: _angular_core.InputSignal<string>;
|
|
2962
3052
|
multiple: _angular_core.InputSignal<boolean>;
|
|
2963
3053
|
name: _angular_core.InputSignal<string>;
|
|
@@ -2969,6 +3059,10 @@ declare class BmbDropzoneComponent {
|
|
|
2969
3059
|
constructor(cdr: ChangeDetectorRef);
|
|
2970
3060
|
ngOnChanges(changes: SimpleChanges): void;
|
|
2971
3061
|
onFileSelected(event: Event): void;
|
|
3062
|
+
private isValidFileType;
|
|
3063
|
+
private getFileSizeInMB;
|
|
3064
|
+
private isValidFileSize;
|
|
3065
|
+
private isFileDuplicate;
|
|
2972
3066
|
private getFileAndValidate;
|
|
2973
3067
|
removeFile(fileName: string): void;
|
|
2974
3068
|
private onErrorFile;
|
|
@@ -3107,6 +3201,7 @@ declare class BmbMultiDotPaginatorItemComponent {
|
|
|
3107
3201
|
declare class BmbAlertCenterComponent {
|
|
3108
3202
|
private nativeModalService;
|
|
3109
3203
|
private bmbAlertCenterService;
|
|
3204
|
+
translationsService: BmbTranslationsService;
|
|
3110
3205
|
dateFormat: _angular_core.InputSignal<string>;
|
|
3111
3206
|
tabsName: _angular_core.InputSignal<string[] | IBmbAlertCenterTabConfig[]>;
|
|
3112
3207
|
hideTabs: _angular_core.InputSignal<boolean>;
|
|
@@ -3122,7 +3217,7 @@ declare class BmbAlertCenterComponent {
|
|
|
3122
3217
|
navigationBarEvents: _angular_core.OutputEmitterRef<IBmbAlertCenterFooterEvent>;
|
|
3123
3218
|
detailContent?: TemplateRef<any>;
|
|
3124
3219
|
container: ElementRef;
|
|
3125
|
-
constructor(nativeModalService: BmbNativeModalService, bmbAlertCenterService: BmbAlertCenterService);
|
|
3220
|
+
constructor(nativeModalService: BmbNativeModalService, bmbAlertCenterService: BmbAlertCenterService, translationsService: BmbTranslationsService);
|
|
3126
3221
|
alertList: _angular_core.Signal<IBmbDataAlert[]>;
|
|
3127
3222
|
advertisementsList: _angular_core.Signal<IBmbDataAlert[]>;
|
|
3128
3223
|
isLoading: _angular_core.Signal<boolean>;
|
|
@@ -3184,17 +3279,17 @@ interface IBmbActionHeaderLinks {
|
|
|
3184
3279
|
|
|
3185
3280
|
declare class BmbLoginComponent {
|
|
3186
3281
|
private userProfileService;
|
|
3187
|
-
headerLabel: _angular_core.InputSignal<string>;
|
|
3188
|
-
forgottenPasswordLabel: _angular_core.InputSignal<string>;
|
|
3282
|
+
headerLabel: _angular_core.InputSignal<string | undefined>;
|
|
3283
|
+
forgottenPasswordLabel: _angular_core.InputSignal<string | undefined>;
|
|
3189
3284
|
forgottenPasswordLink: _angular_core.InputSignal<string>;
|
|
3190
3285
|
forgottenPasswordTarget: _angular_core.InputSignal<IBmbTargetLink>;
|
|
3191
3286
|
showRememberMeCheckbox: _angular_core.InputSignal<boolean>;
|
|
3192
|
-
rememberMeCheckboxLabel: _angular_core.InputSignal<string>;
|
|
3287
|
+
rememberMeCheckboxLabel: _angular_core.InputSignal<string | undefined>;
|
|
3193
3288
|
showLoginAsGuest: _angular_core.InputSignal<boolean>;
|
|
3194
|
-
loginAsGuestLabel: _angular_core.InputSignal<string>;
|
|
3289
|
+
loginAsGuestLabel: _angular_core.InputSignal<string | undefined>;
|
|
3195
3290
|
loginAsGuestLink: _angular_core.InputSignal<string>;
|
|
3196
3291
|
loginAsGuestTarget: _angular_core.InputSignal<IBmbTargetLink>;
|
|
3197
|
-
buttonLabel: _angular_core.InputSignal<string>;
|
|
3292
|
+
buttonLabel: _angular_core.InputSignal<string | undefined>;
|
|
3198
3293
|
actionHeaderLinks: _angular_core.InputSignal<IBmbActionHeaderLinks | undefined>;
|
|
3199
3294
|
actionHeaders: _angular_core.InputSignal<IBmbActionHeader[]>;
|
|
3200
3295
|
onRequest: _angular_core.OutputEmitterRef<any>;
|
|
@@ -3212,11 +3307,11 @@ declare class BmbLoginComponent {
|
|
|
3212
3307
|
}
|
|
3213
3308
|
|
|
3214
3309
|
declare class BmbUserProfileComponent {
|
|
3215
|
-
headerLabel: _angular_core.InputSignal<string>;
|
|
3216
|
-
anotherAccountLabel: _angular_core.InputSignal<string>;
|
|
3310
|
+
headerLabel: _angular_core.InputSignal<string | undefined>;
|
|
3311
|
+
anotherAccountLabel: _angular_core.InputSignal<string | undefined>;
|
|
3217
3312
|
anotherAccountLink: _angular_core.InputSignal<string>;
|
|
3218
3313
|
anotherAccountTarget: _angular_core.InputSignal<IBmbTargetLink>;
|
|
3219
|
-
buttonLabel: _angular_core.InputSignal<string>;
|
|
3314
|
+
buttonLabel: _angular_core.InputSignal<string | undefined>;
|
|
3220
3315
|
userInfo: _angular_core.InputSignal<IBmbUserInfo>;
|
|
3221
3316
|
actionHeaderLinks: _angular_core.InputSignal<IBmbActionHeaderLinks | undefined>;
|
|
3222
3317
|
actionHeaders: _angular_core.InputSignal<IBmbActionHeader[]>;
|
|
@@ -3547,7 +3642,7 @@ declare class BmbDigitalIdComponent {
|
|
|
3547
3642
|
imgProfile: _angular_core.InputSignal<string>;
|
|
3548
3643
|
imgBackground: _angular_core.InputSignal<string>;
|
|
3549
3644
|
hideButton: _angular_core.InputSignal<boolean>;
|
|
3550
|
-
secondaryTextButton: _angular_core.InputSignal<string>;
|
|
3645
|
+
secondaryTextButton: _angular_core.InputSignal<string | undefined>;
|
|
3551
3646
|
secondaryIconButton: _angular_core.InputSignal<string>;
|
|
3552
3647
|
logoSrc: string;
|
|
3553
3648
|
close: _angular_core.OutputEmitterRef<MouseEvent>;
|
|
@@ -3616,10 +3711,11 @@ declare class BmbIconItemComponent {
|
|
|
3616
3711
|
iconSize: _angular_core.InputSignal<number>;
|
|
3617
3712
|
label: _angular_core.InputSignal<string>;
|
|
3618
3713
|
value: _angular_core.InputSignal<string>;
|
|
3714
|
+
showDivider: _angular_core.InputSignal<boolean>;
|
|
3619
3715
|
constructor(sanitizer: DomSanitizer);
|
|
3620
3716
|
get safeValue(): SafeHtml;
|
|
3621
3717
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BmbIconItemComponent, never>;
|
|
3622
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BmbIconItemComponent, "bmb-icon-item", never, { "icon": { "alias": "icon"; "required":
|
|
3718
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BmbIconItemComponent, "bmb-icon-item", never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "iconSize": { "alias": "iconSize"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": true; "isSignal": true; }; "value": { "alias": "value"; "required": true; "isSignal": true; }; "showDivider": { "alias": "showDivider"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
3623
3719
|
}
|
|
3624
3720
|
|
|
3625
3721
|
declare class BmbCarouselComponent implements AfterContentInit {
|
|
@@ -3786,7 +3882,7 @@ declare class BmbNoticeCardComponent {
|
|
|
3786
3882
|
src: _angular_core.InputSignal<string>;
|
|
3787
3883
|
title: _angular_core.InputSignal<string>;
|
|
3788
3884
|
description: _angular_core.InputSignal<IBmbCardNoticeDescription | undefined>;
|
|
3789
|
-
buttonText: _angular_core.InputSignal<string>;
|
|
3885
|
+
buttonText: _angular_core.InputSignal<string | undefined>;
|
|
3790
3886
|
link: _angular_core.InputSignal<string>;
|
|
3791
3887
|
closeBtnColor: _angular_core.InputSignal<"black" | "white">;
|
|
3792
3888
|
onClose: _angular_core.OutputEmitterRef<void>;
|
|
@@ -3841,6 +3937,14 @@ declare class BmbNativeModalComponent {
|
|
|
3841
3937
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BmbNativeModalComponent, "bmb-native-modal", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "subtitle": { "alias": "subtitle"; "required": false; "isSignal": true; }; "content": { "alias": "content"; "required": false; "isSignal": true; }; "actions": { "alias": "actions"; "required": false; "isSignal": true; }; "modalId": { "alias": "modalId"; "required": true; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "iconStyle": { "alias": "iconStyle"; "required": false; "isSignal": true; }; "disableBackdropClose": { "alias": "disableBackdropClose"; "required": false; "isSignal": true; }; "hasBackdrop": { "alias": "hasBackdrop"; "required": false; "isSignal": true; }; "inputContext": { "alias": "inputContext"; "required": false; "isSignal": true; }; "outputContext": { "alias": "outputContext"; "required": false; "isSignal": true; }; }, { "actionsClicked": "actionsClicked"; "closeModalClicked": "closeModalClicked"; }, never, never, true, never>;
|
|
3842
3938
|
}
|
|
3843
3939
|
|
|
3940
|
+
declare class BmbSelectorDirective {
|
|
3941
|
+
idSelector: _angular_core.InputSignal<number>;
|
|
3942
|
+
activeSelectorID: _angular_core.InputSignal<number>;
|
|
3943
|
+
get elementClass(): string[];
|
|
3944
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BmbSelectorDirective, never>;
|
|
3945
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<BmbSelectorDirective, "[bmbSelector]", never, { "idSelector": { "alias": "idSelector"; "required": true; "isSignal": true; }; "activeSelectorID": { "alias": "activeSelectorID"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
3946
|
+
}
|
|
3947
|
+
|
|
3844
3948
|
interface TableColum {
|
|
3845
3949
|
label: string;
|
|
3846
3950
|
labelEn?: string;
|
|
@@ -3956,5 +4060,5 @@ declare class BmbTableLiteComponent implements OnInit, OnChanges {
|
|
|
3956
4060
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BmbTableLiteComponent, "bmb-table-lite", never, { "showSearch": { "alias": "showSearch"; "required": false; "isSignal": true; }; "pageSize": { "alias": "pageSize"; "required": false; "isSignal": true; }; "totalItems": { "alias": "totalItems"; "required": false; "isSignal": true; }; "data": { "alias": "data"; "required": false; "isSignal": true; }; "columns": { "alias": "columns"; "required": false; "isSignal": true; }; "config": { "alias": "config"; "required": false; "isSignal": true; }; "truncate": { "alias": "truncate"; "required": false; "isSignal": true; }; "lang": { "alias": "lang"; "required": false; "isSignal": true; }; "serverSide": { "alias": "serverSide"; "required": false; "isSignal": true; }; "filtersPosition": { "alias": "filtersPosition"; "required": false; "isSignal": true; }; "initialTableSelection": { "alias": "initialTableSelection"; "required": false; "isSignal": true; }; "actionTemplate": { "alias": "actionTemplate"; "required": false; "isSignal": true; }; "detailTemplate": { "alias": "detailTemplate"; "required": false; "isSignal": true; }; "clearSelection": { "alias": "clearSelection"; "required": false; "isSignal": true; }; "currentPage": { "alias": "currentPage"; "required": false; "isSignal": true; }; "filtersVisible": { "alias": "filtersVisible"; "required": false; "isSignal": true; }; }, { "clearSelection": "clearSelectionChange"; "currentPage": "currentPageChange"; "filtersVisible": "filtersVisibleChange"; "select": "select"; "clickedRow": "clickedRow"; "searchChange": "searchChange"; "filtersChange": "filtersChange"; "searchModeChange": "searchModeChange"; "pageChange": "pageChange"; }, never, never, true, never>;
|
|
3957
4061
|
}
|
|
3958
4062
|
|
|
3959
|
-
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, 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, BmbUserImageComponent, BmbUserProfileComponent, BmbUserProfileService, BmbUserSummaryComponent, BmbValueCounterComponent, BmbVerticalLayoutDirective, BmbVerticalLayoutItemDirective, BmbWebTemplatesComponent, BmbWheelMenuComponent,
|
|
3960
|
-
export type { 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, 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 };
|
|
4063
|
+
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 };
|
|
4064
|
+
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 };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ti-tecnologico-de-monterrey-oficial/ds-ng",
|
|
3
|
-
"version": "1.5.1220-
|
|
3
|
+
"version": "1.5.1220-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",
|