@open-rlb/ng-bootstrap 2.3.6 → 2.4.0
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 +27 -11
- package/fesm2022/open-rlb-ng-bootstrap.mjs.map +1 -1
- package/index.d.ts +6 -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
|
}
|
|
@@ -2049,6 +2053,7 @@ declare class SwitchComponent extends AbstractComponent<boolean> implements Cont
|
|
|
2049
2053
|
update(ev: EventTarget | null): void;
|
|
2050
2054
|
onWrite(data: boolean): void;
|
|
2051
2055
|
ngAfterViewInit(): void;
|
|
2056
|
+
private updateInternalValue;
|
|
2052
2057
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwitchComponent, [null, { optional: true; self: true; }]>;
|
|
2053
2058
|
static ɵcmp: i0.ɵɵComponentDeclaration<SwitchComponent, "rlb-switch", never, { "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "size": { "alias": "size"; "required": false; }; "userDefinedId": { "alias": "id"; "required": false; }; }, {}, never, ["[before]", "[after]"], false, never>;
|
|
2054
2059
|
static ngAcceptInputType_disabled: unknown;
|