@bizdoc/core 1.14.0-next.10 → 1.14.0-next.11
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/esm2020/lib/core/controls/combination-picker-body.mjs +2 -2
- package/esm2020/lib/core/slots/slots.component.mjs +11 -8
- package/esm2020/lib/home/home.desktop.component.mjs +7 -13
- package/fesm2015/bizdoc-core.mjs +43 -44
- package/fesm2015/bizdoc-core.mjs.map +1 -1
- package/fesm2020/bizdoc-core.mjs +17 -20
- package/fesm2020/bizdoc-core.mjs.map +1 -1
- package/lib/core/slots/slots.component.d.ts +1 -1
- package/lib/home/home.desktop.component.d.ts +3 -3
- package/package.json +1 -1
@@ -193,7 +193,7 @@ export declare class SlotsComponent implements OnInit, OnDestroy {
|
|
193
193
|
private _destroyPane;
|
194
194
|
ngOnDestroy(): void;
|
195
195
|
static ɵfac: i0.ɵɵFactoryDeclaration<SlotsComponent, never>;
|
196
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SlotsComponent, "bizdoc-panes", never, {}, {}, never, never>;
|
196
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SlotsComponent, "bizdoc-panes-outlet", never, {}, {}, never, never>;
|
197
197
|
}
|
198
198
|
interface ExtendedRoute extends PaneRoute {
|
199
199
|
fullPath: string;
|
@@ -2,7 +2,7 @@ import { Injector } from '@angular/core';
|
|
2
2
|
import { MatSidenav } from '@angular/material/sidenav';
|
3
3
|
import { MatSnackBar } from '@angular/material/snack-bar';
|
4
4
|
import { BizDocConfig } from '../core/configuration';
|
5
|
-
import {
|
5
|
+
import { RecipientModel } from '../core/models';
|
6
6
|
import { SessionService } from '../core/session.service';
|
7
7
|
import { PanesRouter } from '../core/slots/router.service';
|
8
8
|
import { Popup } from '../core/popup/popup.service';
|
@@ -19,8 +19,9 @@ export declare class HomeComponent extends HomeBase {
|
|
19
19
|
private _sb;
|
20
20
|
readonly sysAdmin: boolean;
|
21
21
|
private _submenuMode;
|
22
|
-
readonly forms: Form[];
|
22
|
+
readonly forms: import("../core/models").Form[];
|
23
23
|
creating: boolean;
|
24
|
+
private _collapseToggle;
|
24
25
|
get submenuMode(): 'full' | 'shrink';
|
25
26
|
set submenuMode(value: 'full' | 'shrink');
|
26
27
|
private _submenu;
|
@@ -48,7 +49,6 @@ export declare class HomeComponent extends HomeBase {
|
|
48
49
|
collapsesubmenu(): void;
|
49
50
|
togglePinned(): void;
|
50
51
|
mails(): void;
|
51
|
-
private _collapseToggle;
|
52
52
|
/**
|
53
53
|
* Alt + n/N, Ctrl + .
|
54
54
|
* @param event
|
package/package.json
CHANGED