@net7/components 3.8.5 → 3.9.0
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/components/bubble-chart/bubble-chart.mjs +131 -176
- package/fesm2015/net7-components.mjs +130 -176
- package/fesm2015/net7-components.mjs.map +1 -1
- package/fesm2020/net7-components.mjs +130 -175
- package/fesm2020/net7-components.mjs.map +1 -1
- package/lib/components/bubble-chart/bubble-chart.d.ts +17 -36
- package/package.json +1 -1
|
@@ -1,39 +1,5 @@
|
|
|
1
1
|
import { AfterContentChecked } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
/**
|
|
4
|
-
* Interface for D3Chart's "data"
|
|
5
|
-
*
|
|
6
|
-
* @property entity (required)
|
|
7
|
-
* - id (required)
|
|
8
|
-
* - label (optional)
|
|
9
|
-
* - typeOfEntity (optional)
|
|
10
|
-
* @property count (required)
|
|
11
|
-
*/
|
|
12
|
-
export interface BubbleChartDataItem {
|
|
13
|
-
entity: {
|
|
14
|
-
id: string;
|
|
15
|
-
label?: string;
|
|
16
|
-
typeOfEntity?: string;
|
|
17
|
-
};
|
|
18
|
-
count: number;
|
|
19
|
-
}
|
|
20
|
-
/**
|
|
21
|
-
* Interface for a Circle's node data
|
|
22
|
-
*/
|
|
23
|
-
export interface CircleNode {
|
|
24
|
-
clipUid: string;
|
|
25
|
-
data: BubbleChartDataItem;
|
|
26
|
-
depth: number;
|
|
27
|
-
height: number;
|
|
28
|
-
leafUid: string;
|
|
29
|
-
parent: Node;
|
|
30
|
-
x: number;
|
|
31
|
-
y: number;
|
|
32
|
-
r: number;
|
|
33
|
-
value: number;
|
|
34
|
-
/** Dynamic data for internal logic */
|
|
35
|
-
_meta?: any;
|
|
36
|
-
}
|
|
37
3
|
/**
|
|
38
4
|
* Interface for BubbleChartComponent's "data"
|
|
39
5
|
*
|
|
@@ -112,6 +78,23 @@ export interface BubbleChartData {
|
|
|
112
78
|
*/
|
|
113
79
|
setDraw?: any;
|
|
114
80
|
}
|
|
81
|
+
/**
|
|
82
|
+
* Interface for D3Chart's "data"
|
|
83
|
+
*
|
|
84
|
+
* @property entity (required)
|
|
85
|
+
* - id (required)
|
|
86
|
+
* - label (optional)
|
|
87
|
+
* - typeOfEntity (optional)
|
|
88
|
+
* @property count (required)
|
|
89
|
+
*/
|
|
90
|
+
export interface BubbleChartDataItem {
|
|
91
|
+
entity: {
|
|
92
|
+
id: string;
|
|
93
|
+
label?: string;
|
|
94
|
+
typeOfEntity?: string;
|
|
95
|
+
};
|
|
96
|
+
count: number;
|
|
97
|
+
}
|
|
115
98
|
export declare class BubbleChartComponent implements AfterContentChecked {
|
|
116
99
|
data: BubbleChartData;
|
|
117
100
|
emit: any;
|
|
@@ -119,8 +102,6 @@ export declare class BubbleChartComponent implements AfterContentChecked {
|
|
|
119
102
|
private _loaded;
|
|
120
103
|
ngAfterContentChecked(): void;
|
|
121
104
|
onClick(payload: any): void;
|
|
122
|
-
measureWidth: (text: any) => number;
|
|
123
|
-
isValidNumber: (value: any) => boolean;
|
|
124
105
|
draw: () => void;
|
|
125
106
|
static ɵfac: i0.ɵɵFactoryDeclaration<BubbleChartComponent, never>;
|
|
126
107
|
static ɵcmp: i0.ɵɵComponentDeclaration<BubbleChartComponent, "n7-bubble-chart", never, { "data": "data"; "emit": "emit"; }, {}, never, never>;
|