@open-rlb/ng-bootstrap 2.3.7 → 2.4.1
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/scss/_variables.scss +4 -3
- package/assets/scss/custom/plugins/_responsive-table.scss +2 -2
- package/assets/scss/custom/structure/_topbar.scss +4 -4
- package/assets/scss/rlb/app-layout.scss +74 -55
- package/fesm2022/open-rlb-ng-bootstrap.mjs +413 -401
- package/fesm2022/open-rlb-ng-bootstrap.mjs.map +1 -1
- package/index.d.ts +5 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1343,14 +1343,18 @@ declare class ScrollspyDirective implements AfterViewInit, OnDestroy, OnChanges
|
|
|
1343
1343
|
static ngAcceptInputType_smooth: unknown;
|
|
1344
1344
|
}
|
|
1345
1345
|
|
|
1346
|
-
declare class SidebarComponent {
|
|
1346
|
+
declare class SidebarComponent implements OnInit {
|
|
1347
1347
|
menu: any;
|
|
1348
1348
|
data: any;
|
|
1349
1349
|
sideMenu: ElementRef;
|
|
1350
1350
|
isCollapsed: boolean;
|
|
1351
1351
|
rounded: boolean;
|
|
1352
|
+
onResize(): void;
|
|
1352
1353
|
constructor();
|
|
1354
|
+
ngOnInit(): void;
|
|
1353
1355
|
toggleSidebar(): void;
|
|
1356
|
+
private setCollapsed;
|
|
1357
|
+
private checkBreakpoint;
|
|
1354
1358
|
static ɵfac: i0.ɵɵFactoryDeclaration<SidebarComponent, never>;
|
|
1355
1359
|
static ɵcmp: i0.ɵɵComponentDeclaration<SidebarComponent, "rlb-sidebar", never, { "rounded": { "alias": "rounded"; "required": false; }; }, {}, never, ["rlb-sidebar-item"], false, never>;
|
|
1356
1360
|
}
|