@bizdoc/core 2.6.2 → 2.7.2
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/themes/deep-purple-light-blue.min.css +1 -34
- package/assets/themes/default.min.css +1 -34
- package/assets/themes/indigo-amber.min.css +38 -0
- package/esm2022/lib/browse/browse.pane.component.mjs +31 -17
- package/esm2022/lib/chat/chat-info.mjs +2 -2
- package/esm2022/lib/chat/conversation.component.mjs +2 -2
- package/esm2022/lib/compose/comments/comment.component.mjs +2 -2
- package/esm2022/lib/compose/comments/comments.component.mjs +2 -2
- package/esm2022/lib/core/configuration.mjs +1 -1
- package/esm2022/lib/core/guide/guide.service.mjs +2 -2
- package/esm2022/lib/core/http.interceptor.mjs +1 -4
- package/esm2022/lib/core/hub.service.mjs +2 -2
- package/esm2022/lib/core/identity/identity.component.mjs +2 -2
- package/esm2022/lib/home/home-base.component.mjs +3 -3
- package/esm2022/lib/reports/report-ref.mjs +17 -7
- package/esm2022/lib/reports/report-viewer.component.mjs +4 -4
- package/esm2022/lib/shared.module.mjs +3 -3
- package/fesm2022/bizdoc-core.mjs +51 -31
- package/fesm2022/bizdoc-core.mjs.map +1 -1
- package/lib/browse/browse.pane.component.d.ts +11 -1
- package/lib/core/configuration.d.ts +1 -1
- package/lib/core/pipes/to-now.pipe.d.ts +1 -1
- package/lib/reports/report-ref.d.ts +14 -6
- package/package.json +16 -16
@@ -11,6 +11,7 @@ import { BrowseItemsComponent } from './browse-items.component';
|
|
11
11
|
import { Popup } from '../core/popup/popup.service';
|
12
12
|
import { SessionService } from '../core/session.service';
|
13
13
|
import { TranslateService } from '../core/translate.service';
|
14
|
+
import { BreakpointObserver } from '@angular/cdk/layout';
|
14
15
|
import * as i0 from "@angular/core";
|
15
16
|
export declare class BrowsePaneComponent implements OnInit {
|
16
17
|
private _pane;
|
@@ -19,6 +20,7 @@ export declare class BrowsePaneComponent implements OnInit {
|
|
19
20
|
private _router;
|
20
21
|
private _directionality;
|
21
22
|
private _translate;
|
23
|
+
private _breakpointObserver;
|
22
24
|
private _dialog;
|
23
25
|
items: BrowseItemsComponent;
|
24
26
|
filterEl: ElementRef<HTMLElement>;
|
@@ -31,7 +33,7 @@ export declare class BrowsePaneComponent implements OnInit {
|
|
31
33
|
readonly contains: FormControl<any>;
|
32
34
|
private readonly _destroy;
|
33
35
|
/** browse ctor */
|
34
|
-
constructor(_pane: PaneRef<BrowsePaneComponent>, _session: SessionService, _popup: Popup, _router: PanesRouter, _directionality: Directionality, _translate: TranslateService, _dialog: MatDialog);
|
36
|
+
constructor(_pane: PaneRef<BrowsePaneComponent>, _session: SessionService, _popup: Popup, _router: PanesRouter, _directionality: Directionality, _translate: TranslateService, _breakpointObserver: BreakpointObserver, _dialog: MatDialog);
|
35
37
|
ngOnInit(): void;
|
36
38
|
get folder(): Folder;
|
37
39
|
openFilter(evt?: Event): void;
|
@@ -42,7 +44,15 @@ export declare class BrowsePaneComponent implements OnInit {
|
|
42
44
|
handleKeydown(event: KeyboardEvent): void;
|
43
45
|
openSearch(): void;
|
44
46
|
clearSearch(evt?: Event): void;
|
47
|
+
/**
|
48
|
+
*
|
49
|
+
* @param item
|
50
|
+
*/
|
45
51
|
open(item: RecipientModel<any>): void;
|
52
|
+
/**
|
53
|
+
*
|
54
|
+
* @param item
|
55
|
+
*/
|
46
56
|
view(item: RecipientModel<any>): void;
|
47
57
|
sendAll(action: string): void;
|
48
58
|
ngOnDestroy(): void;
|
@@ -59,7 +59,7 @@ export interface BizDocConfig {
|
|
59
59
|
languages?: string[];
|
60
60
|
appTitle?: string;
|
61
61
|
firebase?: FirebaseSettings;
|
62
|
-
|
62
|
+
chat?: ChatSettings | boolean;
|
63
63
|
comments?: CommentsSettings;
|
64
64
|
maps?: GoogleMapsSettings | boolean;
|
65
65
|
formats?: FormatsSettings;
|
@@ -14,4 +14,4 @@ export declare class ToNowPipe implements PipeTransform {
|
|
14
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToNowPipe, never>;
|
15
15
|
static ɵpipe: i0.ɵɵPipeDeclaration<ToNowPipe, "amToNow", false>;
|
16
16
|
}
|
17
|
-
export declare function getSecondsUntilUpdate(time: dayjs.Dayjs): 1 |
|
17
|
+
export declare function getSecondsUntilUpdate(time: dayjs.Dayjs): 1 | 30 | 300 | 3600;
|
@@ -2,21 +2,29 @@ import { Report, Dimentions } from '../core/models';
|
|
2
2
|
import { Observable, BehaviorSubject } from 'rxjs';
|
3
3
|
import { HubService } from '../core/hub.service';
|
4
4
|
import { ParamMap } from '../core/configuration';
|
5
|
+
import { HttpClient } from '@angular/common/http';
|
5
6
|
/** */
|
6
|
-
export declare class ReportRef<
|
7
|
+
export declare class ReportRef<TResult = any, TArgs = any, TOptions = any, TKey = any, TItem = any> {
|
7
8
|
private _configuration;
|
8
9
|
private _hub;
|
9
|
-
|
10
|
-
readonly
|
11
|
-
|
10
|
+
private _http;
|
11
|
+
readonly _resize$: BehaviorSubject<Dimentions>;
|
12
|
+
readonly _args$: BehaviorSubject<TArgs>;
|
13
|
+
constructor(_configuration: Report, args: TArgs, _hub: HubService, _http: HttpClient, dim: Dimentions);
|
12
14
|
resize(): Observable<Dimentions>;
|
13
15
|
/** listen to progress events reported by backend code */
|
14
16
|
progress(): Observable<number>;
|
17
|
+
/**
|
18
|
+
*
|
19
|
+
* @param key
|
20
|
+
* @returns
|
21
|
+
*/
|
22
|
+
item(key: TKey): Observable<TItem>;
|
15
23
|
/** configuration options */
|
16
|
-
get options():
|
24
|
+
get options(): TOptions;
|
17
25
|
/** configuration name */
|
18
26
|
get name(): string;
|
19
|
-
get arguments():
|
27
|
+
get arguments(): TArgs;
|
20
28
|
_destroy(): void;
|
21
29
|
}
|
22
30
|
export interface ExportEventArgs {
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@bizdoc/core",
|
3
|
-
"version": "2.
|
3
|
+
"version": "2.7.2",
|
4
4
|
"author": "Moding Ltd.",
|
5
5
|
"homepage": "https://github.com/moding-il/bizdoc.core",
|
6
6
|
"license": "https://github.com/moding-il/bizdoc.core/blob/master/License.md",
|
@@ -10,22 +10,22 @@
|
|
10
10
|
},
|
11
11
|
"dependencies": {
|
12
12
|
"@ctrl/ngx-emoji-mart": "^9.2.0",
|
13
|
-
"@googlemaps/js-api-loader": "^1.16.
|
13
|
+
"@googlemaps/js-api-loader": "^1.16.8",
|
14
14
|
"@microsoft/signalr": "^8.0.7",
|
15
|
-
"@syncfusion/ej2": "^26.
|
16
|
-
"@syncfusion/ej2-angular-charts": "^26.
|
17
|
-
"@syncfusion/ej2-angular-circulargauge": "^26.
|
18
|
-
"@syncfusion/ej2-angular-diagrams": "^26.
|
19
|
-
"@syncfusion/ej2-angular-gantt": "^26.
|
20
|
-
"@syncfusion/ej2-angular-grids": "^26.
|
21
|
-
"@syncfusion/ej2-angular-inputs": "^26.
|
22
|
-
"@syncfusion/ej2-angular-kanban": "^26.
|
23
|
-
"@syncfusion/ej2-angular-lineargauge": "^26.
|
24
|
-
"@syncfusion/ej2-angular-pivotview": "^26.
|
25
|
-
"@syncfusion/ej2-angular-richtexteditor": "^26.
|
26
|
-
"@syncfusion/ej2-angular-schedule": "^26.
|
27
|
-
"@syncfusion/ej2-angular-spreadsheet": "^26.
|
28
|
-
"@syncfusion/ej2-base": "^26.
|
15
|
+
"@syncfusion/ej2": "^26.2.7",
|
16
|
+
"@syncfusion/ej2-angular-charts": "^26.2.5",
|
17
|
+
"@syncfusion/ej2-angular-circulargauge": "^26.2.5",
|
18
|
+
"@syncfusion/ej2-angular-diagrams": "^26.2.5",
|
19
|
+
"@syncfusion/ej2-angular-gantt": "^26.2.7",
|
20
|
+
"@syncfusion/ej2-angular-grids": "^26.2.7",
|
21
|
+
"@syncfusion/ej2-angular-inputs": "^26.2.5",
|
22
|
+
"@syncfusion/ej2-angular-kanban": "^26.2.5",
|
23
|
+
"@syncfusion/ej2-angular-lineargauge": "^26.2.5",
|
24
|
+
"@syncfusion/ej2-angular-pivotview": "^26.2.5",
|
25
|
+
"@syncfusion/ej2-angular-richtexteditor": "^26.2.7",
|
26
|
+
"@syncfusion/ej2-angular-schedule": "^26.2.7",
|
27
|
+
"@syncfusion/ej2-angular-spreadsheet": "^26.2.7",
|
28
|
+
"@syncfusion/ej2-base": "^26.2.5",
|
29
29
|
"ace-builds": "^1.35.4",
|
30
30
|
"cookie": "^0.6.0",
|
31
31
|
"dayjs": "^1.11.12",
|