@open-rlb/ng-bootstrap 2.3.3 → 2.3.5
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
|
@@ -337,16 +337,21 @@ declare class NavbarItemComponent implements OnInit {
|
|
|
337
337
|
static ngAcceptInputType_disabled: unknown;
|
|
338
338
|
}
|
|
339
339
|
|
|
340
|
-
declare class NavbarItemsComponent implements OnInit {
|
|
340
|
+
declare class NavbarItemsComponent implements OnInit, AfterContentInit, OnDestroy {
|
|
341
341
|
private viewContainerRef;
|
|
342
342
|
scroll?: string;
|
|
343
343
|
cssClass?: string;
|
|
344
344
|
template: TemplateRef<any>;
|
|
345
345
|
element: HTMLElement;
|
|
346
|
+
menuItems: QueryList<NavbarItemComponent>;
|
|
347
|
+
click: EventEmitter<MouseEvent>;
|
|
348
|
+
private destroy$;
|
|
346
349
|
constructor(viewContainerRef: ViewContainerRef);
|
|
347
350
|
ngOnInit(): void;
|
|
351
|
+
ngAfterContentInit(): void;
|
|
352
|
+
ngOnDestroy(): void;
|
|
348
353
|
static ɵfac: i0.ɵɵFactoryDeclaration<NavbarItemsComponent, never>;
|
|
349
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NavbarItemsComponent, "rlb-navbar-items", never, { "scroll": { "alias": "scroll"; "required": false; }; "cssClass": { "alias": "class"; "required": false; }; }, {},
|
|
354
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NavbarItemsComponent, "rlb-navbar-items", never, { "scroll": { "alias": "scroll"; "required": false; }; "cssClass": { "alias": "class"; "required": false; }; }, { "click": "click"; }, ["menuItems"], ["rlb-navbar-item, rlb-navbar-dropdown-item, rlb-navbar-separator, ng-container"], false, never>;
|
|
350
355
|
}
|
|
351
356
|
|
|
352
357
|
declare class NavbarSeparatorComponent implements OnInit {
|
|
@@ -371,14 +376,16 @@ declare class NavbarTextComponent {
|
|
|
371
376
|
static ɵcmp: i0.ɵɵComponentDeclaration<NavbarTextComponent, "rlb-navbar-text", never, { "cssClass": { "alias": "class"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
372
377
|
}
|
|
373
378
|
|
|
374
|
-
declare class NavbarComponent {
|
|
379
|
+
declare class NavbarComponent implements OnInit, AfterContentInit, OnDestroy {
|
|
375
380
|
private idService;
|
|
376
381
|
private viewContainerRef;
|
|
377
382
|
element: HTMLElement;
|
|
378
383
|
private _navId;
|
|
384
|
+
private destroy$;
|
|
379
385
|
get navId(): string;
|
|
380
386
|
get _navExpand(): string | undefined;
|
|
381
387
|
template: TemplateRef<any>;
|
|
388
|
+
navbarItems: NavbarItemsComponent;
|
|
382
389
|
dark?: boolean;
|
|
383
390
|
color?: Color;
|
|
384
391
|
placement?: 'fixed-top' | 'fixed-bottom' | 'sticky-top' | 'sticky-bottom';
|
|
@@ -387,8 +394,11 @@ declare class NavbarComponent {
|
|
|
387
394
|
enableDropdownToggler: boolean;
|
|
388
395
|
constructor(idService: UniqueIdService, viewContainerRef: ViewContainerRef);
|
|
389
396
|
ngOnInit(): void;
|
|
397
|
+
ngAfterContentInit(): void;
|
|
398
|
+
ngOnDestroy(): void;
|
|
399
|
+
private closeMobileMenu;
|
|
390
400
|
static ɵfac: i0.ɵɵFactoryDeclaration<NavbarComponent, never>;
|
|
391
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NavbarComponent, "rlb-navbar", never, { "dark": { "alias": "dark"; "required": false; }; "color": { "alias": "color"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "expand": { "alias": "expand"; "required": false; }; "cssClass": { "alias": "class"; "required": false; }; "enableDropdownToggler": { "alias": "enable-dropdown-toggler"; "required": false; }; }, {},
|
|
401
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NavbarComponent, "rlb-navbar", never, { "dark": { "alias": "dark"; "required": false; }; "color": { "alias": "color"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "expand": { "alias": "expand"; "required": false; }; "cssClass": { "alias": "class"; "required": false; }; "enableDropdownToggler": { "alias": "enable-dropdown-toggler"; "required": false; }; }, {}, ["navbarItems"], ["[rlb-navbar-brand], [rlb-button][toggle], rlb-navbar-separator", "rlb-navbar-items, rlb-navbar-form, rlb-navbar-text, rlb-navbar-separator"], false, never>;
|
|
392
402
|
static ngAcceptInputType_dark: unknown;
|
|
393
403
|
static ngAcceptInputType_enableDropdownToggler: unknown;
|
|
394
404
|
}
|
|
@@ -1375,7 +1385,7 @@ declare class PopoverDirective implements DoCheck, AfterViewInit {
|
|
|
1375
1385
|
static ɵdir: i0.ɵɵDirectiveDeclaration<PopoverDirective, "[popover]", never, { "popover": { "alias": "popover"; "required": true; }; "placement": { "alias": "popover-placement"; "required": false; }; "customClass": { "alias": "popover-class"; "required": false; }; "title": { "alias": "popover-title"; "required": false; }; }, {}, never, never, false, never>;
|
|
1376
1386
|
}
|
|
1377
1387
|
|
|
1378
|
-
declare class TooltipDirective implements OnInit, OnChanges {
|
|
1388
|
+
declare class TooltipDirective implements OnInit, OnChanges, OnDestroy {
|
|
1379
1389
|
private elementRef;
|
|
1380
1390
|
private renderer;
|
|
1381
1391
|
static bsInit: boolean;
|
|
@@ -1385,6 +1395,7 @@ declare class TooltipDirective implements OnInit, OnChanges {
|
|
|
1385
1395
|
customClass: string;
|
|
1386
1396
|
html?: boolean;
|
|
1387
1397
|
constructor(elementRef: ElementRef, renderer: Renderer2);
|
|
1398
|
+
ngOnDestroy(): void;
|
|
1388
1399
|
ngOnChanges(changes: SimpleChanges): void;
|
|
1389
1400
|
ngOnInit(): void;
|
|
1390
1401
|
static ɵfac: i0.ɵɵFactoryDeclaration<TooltipDirective, never>;
|