@bizdoc/core 1.14.4 → 1.14.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/esm2020/lib/core/slots/pane-ref.mjs +9 -5
- package/esm2020/lib/core/slots/slots.component.mjs +3 -3
- package/esm2020/public-api.mjs +2 -2
- package/fesm2015/bizdoc-core.mjs +10 -6
- package/fesm2015/bizdoc-core.mjs.map +1 -1
- package/fesm2020/bizdoc-core.mjs +10 -6
- package/fesm2020/bizdoc-core.mjs.map +1 -1
- package/lib/core/slots/pane-ref.d.ts +7 -4
- package/package.json +1 -1
- package/public-api.d.ts +1 -1
@@ -32,6 +32,10 @@ export declare class NavigationFullscreen extends NavigationPaneBase {
|
|
32
32
|
readonly fullscreen: boolean;
|
33
33
|
constructor(fullscreen: boolean, pane: PaneRef<any>);
|
34
34
|
}
|
35
|
+
export declare class NavigationResize extends NavigationPaneBase {
|
36
|
+
readonly dimentions: Dimentions;
|
37
|
+
constructor(dimentions: Dimentions, pane: PaneRef<any>);
|
38
|
+
}
|
35
39
|
export declare class NavigationClose extends NavigationPaneBase {
|
36
40
|
}
|
37
41
|
export declare class ParamNavigation extends NavigationPaneBase {
|
@@ -52,16 +56,15 @@ export interface PaneOptions {
|
|
52
56
|
};
|
53
57
|
openPolicy?: OpenPolicy;
|
54
58
|
}
|
55
|
-
export declare type
|
59
|
+
export declare type CallbackFunction = 'expand' | 'focus' | 'close' | 'refresh';
|
56
60
|
export declare class PaneRef<T = any> {
|
57
61
|
component: Type<any>;
|
58
62
|
private _options;
|
59
|
-
readonly _comm$: Subject<
|
63
|
+
readonly _comm$: Subject<CallbackFunction>;
|
60
64
|
/** */
|
61
65
|
readonly _data$: BehaviorSubject<ParamMap>;
|
62
66
|
readonly _params$: BehaviorSubject<ParamMap>;
|
63
67
|
readonly _queryParams$: BehaviorSubject<ParamMap>;
|
64
|
-
readonly _resize$: BehaviorSubject<Dimentions>;
|
65
68
|
readonly _events$: Subject<NavigationBase>;
|
66
69
|
title: string;
|
67
70
|
icon?: string;
|
@@ -87,7 +90,7 @@ export declare class PaneRef<T = any> {
|
|
87
90
|
get data(): any;
|
88
91
|
get dataChange(): import("rxjs").Observable<ParamMap>;
|
89
92
|
get params(): ParamMap;
|
90
|
-
get resize(): import("rxjs").Observable<
|
93
|
+
get resize(): import("rxjs").Observable<NavigationBase>;
|
91
94
|
get paramsChange(): import("rxjs").Observable<ParamMap>;
|
92
95
|
get queryString(): string;
|
93
96
|
get queryParams(): ParamMap;
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
@@ -53,7 +53,7 @@ export { ActionPipe } from './lib/core/pipes/action.pipe';
|
|
53
53
|
export { StatePipe } from './lib/core/pipes/state.pipe';
|
54
54
|
export { UserNamePipe } from './lib/core/pipes/user-name.pipe';
|
55
55
|
export { DateRangePipe, AgoPipe } from './lib/core/pipes/daterange.pipe';
|
56
|
-
export { PaneRef, PaneOptions, QueryParamNavigation, ParamNavigation, NavigationStart, NavigationEnd, NavigationSelected } from './lib/core/slots/pane-ref';
|
56
|
+
export { PaneRef, PaneOptions, QueryParamNavigation, ParamNavigation, NavigationStart, NavigationEnd, NavigationSelected, NavigationResize, NavigationMode, NavigationFullscreen, NavigationClose } from './lib/core/slots/pane-ref';
|
57
57
|
export { PanesRouter } from './lib/core/slots/router.service';
|
58
58
|
export { SlotRouterDirective } from './lib/core/slots/router.directive';
|
59
59
|
export { Popup } from './lib/core/popup/popup.service';
|