@open-rlb/ng-bootstrap 2.3.4 → 2.3.6
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
|
+
navbarItemsGroups: QueryList<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; }; }, {}, ["navbarItemsGroups"], ["[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
|
}
|