@bizdoc/core 3.2.6 → 3.2.7
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/brown.min.css +1 -1
- package/assets/themes/dark.min.css +1 -1
- package/assets/themes/deep-purple-light-blue.min.css +1 -1
- package/assets/themes/deep-purple-teal.min.css +1 -1
- package/assets/themes/default.min.css +1 -1
- package/assets/themes/green.min.css +1 -1
- package/assets/themes/indigo-amber.min.css +1 -1
- package/assets/themes/indigo.min.css +1 -1
- package/esm2022/lib/admin/admin-menu.component.mjs +7 -8
- package/esm2022/lib/admin/architecture/designer-element.component.mjs +2 -2
- package/esm2022/lib/admin/architecture/designer.component.mjs +3 -3
- package/esm2022/lib/admin/core/localized-string.component.mjs +2 -2
- package/esm2022/lib/compose/tag/tags.component.mjs +2 -2
- package/esm2022/lib/compose/trace/flow.component.mjs +114 -116
- package/esm2022/lib/core/configuration.mjs +5 -5
- package/esm2022/lib/core/slots/slots.component.mjs +6 -3
- package/esm2022/lib/core/translations.mjs +7 -2
- package/esm2022/lib/modules/diagram.module.mjs +3 -3
- package/esm2022/lib/routes.desktop.mjs +2 -2
- package/fesm2022/bizdoc-core.mjs +139 -134
- package/fesm2022/bizdoc-core.mjs.map +1 -1
- package/lib/compose/trace/flow.component.d.ts +1 -11
- package/lib/core/configuration.d.ts +4 -4
- package/lib/core/slots/slots.component.d.ts +1 -0
- package/lib/cube/cube.service.d.ts +1 -1
- package/package.json +1 -1
@@ -1,5 +1,5 @@
|
|
1
1
|
import { ElementRef, OnDestroy } from '@angular/core';
|
2
|
-
import {
|
2
|
+
import { LayoutModel, DiagramTools, Diagram, DiagramConstraints, ScrollSettingsModel, SnapSettingsModel, Segments } from '@syncfusion/ej2-angular-diagrams';
|
3
3
|
import { DocumentModel } from "../../core/models";
|
4
4
|
import { TraceBase } from './trace.base';
|
5
5
|
import { SessionService } from '../../core/session.service';
|
@@ -29,16 +29,6 @@ export declare class FlowViewComponent extends TraceBase implements OnDestroy {
|
|
29
29
|
constructor(_accounts: AccountService, session: SessionService, _translate: TranslateService, _duration: DurationFormatPipe, _elementRef: ElementRef<HTMLDivElement>, hub: HubService);
|
30
30
|
protected _initialize(): Promise<void>;
|
31
31
|
private _refresh;
|
32
|
-
/**
|
33
|
-
*
|
34
|
-
* @param obj
|
35
|
-
*/
|
36
|
-
nodeDefaults(obj: NodeModel): NodeModel;
|
37
|
-
/**
|
38
|
-
*
|
39
|
-
* @param connector
|
40
|
-
*/
|
41
|
-
connDefaults(connector: ConnectorModel): void;
|
42
32
|
/** */
|
43
33
|
private _prepare;
|
44
34
|
/**
|
@@ -33,10 +33,10 @@ export declare enum OpenPolicy {
|
|
33
33
|
Pinnable = 8,
|
34
34
|
Stretch = 16,
|
35
35
|
Expandable = 32,
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
Dialog =
|
36
|
+
Dismissable = 64,
|
37
|
+
Toggle = 128,
|
38
|
+
Tab = 320,
|
39
|
+
Dialog = 832
|
40
40
|
}
|
41
41
|
export declare const DEFAULT_POLICY = OpenPolicy.Pane;
|
42
42
|
export interface BizDocChildConfig {
|
@@ -34,6 +34,7 @@ export declare class SlotsComponent implements OnInit, OnDestroy {
|
|
34
34
|
private _selectedTabIndex;
|
35
35
|
get selectedTabIndex(): number;
|
36
36
|
set selectedTabIndex(value: number);
|
37
|
+
get selectedTab(): PaneRef<any, ParamMap>;
|
37
38
|
selectedIndex: number;
|
38
39
|
next: boolean;
|
39
40
|
prev: boolean;
|
@@ -265,4 +265,4 @@ export interface Pattern {
|
|
265
265
|
title: string;
|
266
266
|
axes: AxesMap;
|
267
267
|
}
|
268
|
-
export declare function errResource(error: HttpErrorResponse): "
|
268
|
+
export declare function errResource(error: HttpErrorResponse): "Err" | "Unauthorized" | "LicenseErr" | "NotAcceptable";
|