@bizdoc/core 1.14.0-next.13 → 1.14.0-next.14
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/dark.min.css +78 -1
- package/esm2020/lib/admin/form/workflow/role-node.component.mjs +3 -3
- package/esm2020/lib/admin/form/workflow/workflow.component.mjs +4 -2
- package/esm2020/lib/cube/matrix/table.component.mjs +3 -3
- package/esm2020/lib/cube/parallel/parallel.component.mjs +1 -2
- package/esm2020/lib/dashboard/score/personal-score.widget.mjs +3 -3
- package/esm2020/lib/modules/dayjs.module.mjs +2 -2
- package/esm2020/lib/views/cube/cube-base.mjs +2 -2
- package/esm2020/lib/views/cube/parallel.component.mjs +3 -2
- package/fesm2015/bizdoc-core.mjs +13 -11
- package/fesm2015/bizdoc-core.mjs.map +1 -1
- package/fesm2020/bizdoc-core.mjs +13 -11
- package/fesm2020/bizdoc-core.mjs.map +1 -1
- package/lib/admin/form/workflow/workflow.component.d.ts +2 -1
- package/lib/views/cube/cube-base.d.ts +1 -1
- package/package.json +1 -1
@@ -7,6 +7,7 @@ import { TranslateService } from '../../../core/translate.service';
|
|
7
7
|
import { PaneRef } from '../../../core/slots/pane-ref';
|
8
8
|
import { PanesRouter } from '../../../core/slots/router.service';
|
9
9
|
import { AdminComponent } from '../../admin-dismiss.service';
|
10
|
+
import { ISelectionChangeEventArgs } from '@syncfusion/ej2-angular-diagrams';
|
10
11
|
import * as i0 from "@angular/core";
|
11
12
|
export declare class WorkflowComponent implements OnInit, AfterViewInit, OnDestroy, AdminComponent {
|
12
13
|
private ps;
|
@@ -53,7 +54,7 @@ export declare class WorkflowComponent implements OnInit, AfterViewInit, OnDestr
|
|
53
54
|
getSymbolDefaults(symbol: NodeModel): void;
|
54
55
|
pan(): void;
|
55
56
|
cursor(): void;
|
56
|
-
selectionChange(): void;
|
57
|
+
selectionChange(evt: ISelectionChangeEventArgs): void;
|
57
58
|
align(value: AlignmentOptions): void;
|
58
59
|
dragEnter(args: IDragEnterEventArgs): void;
|
59
60
|
propertyChange(e: any): void;
|
@@ -27,7 +27,7 @@ export declare abstract class CubeBase<O extends Options> implements DocumentVie
|
|
27
27
|
onBind(model: DocumentModel<any>): void;
|
28
28
|
abstract onViewBind(): any;
|
29
29
|
switchAxes(axes?: AxesMap): void;
|
30
|
-
|
30
|
+
protected _drop(axes: string | string[]): void;
|
31
31
|
/**
|
32
32
|
*
|
33
33
|
* @param cube
|
package/package.json
CHANGED