mftsccs-browser 2.1.240-dev → 2.1.241-dev
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/dist/main.bundle.js +2 -44227
- package/dist/main.bundle.js.LICENSE.txt +1 -0
- package/dist/serviceWorker.bundle.js +2 -45148
- package/dist/serviceWorker.bundle.js.LICENSE.txt +1 -0
- package/dist/types/AccessTracker/accessTracker.d.ts +6 -1
- package/dist/types/Constants/general.const.d.ts +7 -2
- package/dist/types/DataStructures/BinaryTree.d.ts +1 -0
- package/dist/types/Middleware/ApplicationMonitor.d.ts +11 -0
- package/dist/types/Middleware/logger.service.d.ts +2 -2
- package/dist/types/Services/Security/GetRequestHeader.d.ts +1 -0
- package/dist/types/WrapperFunctions/DepenedencyObserver.d.ts +21 -0
- package/dist/types/WrapperFunctions/SchemaQueryObservable.d.ts +4 -0
- package/package.json +1 -1
- package/dist/main.bundle.js.map +0 -1
- package/dist/serviceWorker.bundle.js.map +0 -1
- package/dist/types/DataStructures/ConceptsToDraw.d.ts +0 -11
- package/dist/types/Visualize/ConceptCircle.d.ts +0 -35
- package/dist/types/Visualize/ConceptCircleList.d.ts +0 -9
- package/dist/types/Visualize/ConnectionLine.d.ts +0 -21
- package/dist/types/Visualize/ConnectionLineList.d.ts +0 -6
- package/dist/types/Visualize/drawExistingConcepts.d.ts +0 -8
- package/dist/types/Visualize/helper.d.ts +0 -15
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { Concept } from "./Concept";
|
|
2
|
-
export declare class ConceptsToDraw {
|
|
3
|
-
name: string;
|
|
4
|
-
constructor();
|
|
5
|
-
static conceptsArray: Concept[];
|
|
6
|
-
static CheckContains(concept: Concept): boolean;
|
|
7
|
-
static AddConcept(concept: Concept): void;
|
|
8
|
-
static RemoveConcept(concept: Concept): void;
|
|
9
|
-
static GetConcept(id: number): Concept | null;
|
|
10
|
-
getName(): string;
|
|
11
|
-
}
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import { Concept, Connection } from "../app";
|
|
2
|
-
export declare class ConceptCircle {
|
|
3
|
-
concept: Concept;
|
|
4
|
-
x: number;
|
|
5
|
-
y: number;
|
|
6
|
-
radius: number;
|
|
7
|
-
selected: boolean;
|
|
8
|
-
detailsVisible: boolean;
|
|
9
|
-
quadrant: number;
|
|
10
|
-
color: string;
|
|
11
|
-
isComposition: boolean;
|
|
12
|
-
parent: ConceptCircle | null;
|
|
13
|
-
isMoved: boolean;
|
|
14
|
-
childCount: number;
|
|
15
|
-
order: number;
|
|
16
|
-
ctx: null;
|
|
17
|
-
dataConnections: Connection[];
|
|
18
|
-
childrenConcepts: ConceptCircle[];
|
|
19
|
-
isGrouped: boolean;
|
|
20
|
-
canvas: any;
|
|
21
|
-
active: boolean;
|
|
22
|
-
constructor(concept: Concept, ctx: any);
|
|
23
|
-
realign(): void;
|
|
24
|
-
addDataConnections(connections: Connection[]): void;
|
|
25
|
-
setInPlace(newX: any, newY: any, ctx: any): void;
|
|
26
|
-
draw(ctx: any): void;
|
|
27
|
-
drawAsPerParent(): void;
|
|
28
|
-
drawNumber(ctx: any): void;
|
|
29
|
-
activate(): void;
|
|
30
|
-
select(): void;
|
|
31
|
-
makeComposition(): void;
|
|
32
|
-
showDetails(): Promise<void>;
|
|
33
|
-
getQuadrant(ctx: any): void;
|
|
34
|
-
checkWithAnotherConcept(conceptToCheck: ConceptCircle): boolean;
|
|
35
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { ConceptCircle } from "./ConceptCircle";
|
|
2
|
-
export declare class ConceptCircleList {
|
|
3
|
-
static drawList: ConceptCircle[];
|
|
4
|
-
static addNewConceptCircle(conceptCircle: ConceptCircle): boolean;
|
|
5
|
-
static removeConceptCircle(conceptCircle: ConceptCircle): void;
|
|
6
|
-
static getConceptCircle(conceptId: number, ctx: any): Promise<ConceptCircle | undefined>;
|
|
7
|
-
static getConceptCircleFromList(conceptId: number): ConceptCircle | null;
|
|
8
|
-
static addConceptCircle(conceptId: number, ctx: any): Promise<ConceptCircle>;
|
|
9
|
-
}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { Connection, Concept } from "../app";
|
|
2
|
-
import { ConceptCircle } from "./ConceptCircle";
|
|
3
|
-
export declare class ConnectionLine {
|
|
4
|
-
concept: Concept;
|
|
5
|
-
ofConcept: ConceptCircle | undefined;
|
|
6
|
-
toConcept: ConceptCircle | undefined;
|
|
7
|
-
selected: boolean;
|
|
8
|
-
quadrant: number;
|
|
9
|
-
type: null;
|
|
10
|
-
id: number;
|
|
11
|
-
canvas: any;
|
|
12
|
-
ctx: any;
|
|
13
|
-
connection: Connection;
|
|
14
|
-
active: boolean;
|
|
15
|
-
constructor(connection: Connection, ctx: any);
|
|
16
|
-
updateConcept(connection: Connection): Promise<void>;
|
|
17
|
-
draw(ctx: any): void;
|
|
18
|
-
drawNumber(ctx: any): void;
|
|
19
|
-
activate(): void;
|
|
20
|
-
select(): void;
|
|
21
|
-
}
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { ConnectionLine } from "./ConnectionLine";
|
|
2
|
-
export declare class ConnectionLineList {
|
|
3
|
-
static drawList: ConnectionLine[];
|
|
4
|
-
static addNewConnectionLine(connectionLine: ConnectionLine): void;
|
|
5
|
-
static removeConnectionLine(connectionLine: ConnectionLine): void;
|
|
6
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { Connection } from "../app";
|
|
2
|
-
export declare function printAllConcepts(ctx: any): Promise<void>;
|
|
3
|
-
export declare function getLinkData(connection: Connection, ctx: any): Promise<void>;
|
|
4
|
-
export declare function getLinkDataOf(connection: Connection, ctx: any): Promise<void>;
|
|
5
|
-
export declare function printAllConceptsOfIdWithoutData(ctx: any, id: number): Promise<void>;
|
|
6
|
-
export declare function printConcept(ctx: any, id: number): Promise<void>;
|
|
7
|
-
export declare function printAllConceptsOfId(ctx: any, id: number): Promise<void>;
|
|
8
|
-
export declare function checkIfExists(id: number, conceptIds: number[]): boolean;
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
export declare function drawCircle(ctx: any, x: any, y: any, radius: any, color: any): void;
|
|
2
|
-
export declare function drawTriangle(ctx: any, x: any, y: any, radius: any, color: any): void;
|
|
3
|
-
export declare function drawLine(ctx: any, x1: any, y1: any, x2: any, y2: any, color: any): void;
|
|
4
|
-
export declare function drawArrow(ctx: any, fromx: any, fromy: any, tox: any, toy: any, arrowWidth: any, color: any): void;
|
|
5
|
-
export declare function drawArc(ctx: any, x1: any, y1: any, x2: any, y2: any, color: any): void;
|
|
6
|
-
export declare function getMouseCoords(canvas: any, event: any): {
|
|
7
|
-
x: number;
|
|
8
|
-
y: number;
|
|
9
|
-
};
|
|
10
|
-
export declare function randomIntFromInterval(min: any, max: any): number;
|
|
11
|
-
export declare function getOffsetCoords(mouse: any, conceptCircle: any): {
|
|
12
|
-
x: number;
|
|
13
|
-
y: number;
|
|
14
|
-
};
|
|
15
|
-
export declare function cursorInRect(mouseX: any, mouseY: any, rectX: any, rectY: any, radius: any): boolean;
|