@unovis/angular 1.2.2-beta.2 → 1.2.2-beta.4
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/LICENSE +193 -0
- package/dist/README.md +66 -0
- package/dist/lib/bundles/unovis-angular.umd.js +18 -74
- package/dist/lib/bundles/unovis-angular.umd.js.map +1 -1
- package/dist/lib/components/axis/axis.component.d.ts +2 -23
- package/dist/lib/components/brush/brush.component.d.ts +2 -23
- package/dist/lib/components/crosshair/crosshair.component.d.ts +2 -23
- package/dist/lib/components/free-brush/free-brush.component.d.ts +2 -23
- package/dist/lib/components/graph/graph.component.d.ts +4 -1
- package/dist/lib/components/sankey/sankey.component.d.ts +4 -1
- package/dist/lib/components/timeline/timeline.component.d.ts +1 -3
- package/dist/lib/esm2015/components/axis/axis.component.js +4 -18
- package/dist/lib/esm2015/components/brush/brush.component.js +5 -19
- package/dist/lib/esm2015/components/crosshair/crosshair.component.js +4 -18
- package/dist/lib/esm2015/components/free-brush/free-brush.component.js +5 -19
- package/dist/lib/esm2015/components/graph/graph.component.js +1 -1
- package/dist/lib/esm2015/components/sankey/sankey.component.js +1 -1
- package/dist/lib/esm2015/components/timeline/timeline.component.js +4 -6
- package/dist/lib/esm2015/html-components/bullet-legend/bullet-legend.component.js +4 -2
- package/dist/lib/fesm2015/unovis-angular.js +18 -74
- package/dist/lib/fesm2015/unovis-angular.js.map +1 -1
- package/dist/lib/html-components/bullet-legend/bullet-legend.component.d.ts +4 -2
- package/dist/lib/package.json +4 -3
- package/dist/package.json +71 -0
- package/package.json +11 -5
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { AfterViewInit, SimpleChanges, ElementRef } from '@angular/core';
|
|
2
|
-
import { BulletLegend, BulletLegendConfigInterface, BulletLegendItemInterface } from '@unovis/ts';
|
|
2
|
+
import { BulletLegend, BulletLegendConfigInterface, BulletLegendItemInterface, BulletShape } from '@unovis/ts';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class VisBulletLegendComponent implements BulletLegendConfigInterface, AfterViewInit {
|
|
5
5
|
containerRef: ElementRef;
|
|
@@ -25,10 +25,12 @@ export declare class VisBulletLegendComponent implements BulletLegendConfigInter
|
|
|
25
25
|
labelMaxWidth?: string | null;
|
|
26
26
|
/** Bullet circle size, mapped to the width and height CSS properties. Default: `null` */
|
|
27
27
|
bulletSize?: string | null;
|
|
28
|
+
/** Bullet shape: `BulletShape.Circle`, `BulletShape.Line` or `BulletShape.Square`. Default: `BulletShape.Circle` */
|
|
29
|
+
bulletShape?: BulletShape;
|
|
28
30
|
component: BulletLegend | undefined;
|
|
29
31
|
ngAfterViewInit(): void;
|
|
30
32
|
ngOnChanges(changes: SimpleChanges): void;
|
|
31
33
|
private getConfig;
|
|
32
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<VisBulletLegendComponent, never>;
|
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VisBulletLegendComponent, "vis-bullet-legend", never, { "items": "items"; "labelClassName": "labelClassName"; "onLegendItemClick": "onLegendItemClick"; "labelFontSize": "labelFontSize"; "labelMaxWidth": "labelMaxWidth"; "bulletSize": "bulletSize"; }, {}, never, never>;
|
|
35
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VisBulletLegendComponent, "vis-bullet-legend", never, { "items": "items"; "labelClassName": "labelClassName"; "onLegendItemClick": "onLegendItemClick"; "labelFontSize": "labelFontSize"; "labelMaxWidth": "labelMaxWidth"; "bulletSize": "bulletSize"; "bulletShape": "bulletShape"; }, {}, never, never>;
|
|
34
36
|
}
|
package/dist/lib/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unovis/angular",
|
|
3
3
|
"description": "Modular data visualization framework for React, Angular, Svelte, and vanilla TypeScript or JavaScript",
|
|
4
|
-
"version": "1.2.2-beta.
|
|
4
|
+
"version": "1.2.2-beta.4",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/f5/unovis.git",
|
|
@@ -36,10 +36,11 @@
|
|
|
36
36
|
"tslib": "^2.3.1"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
|
+
"@unovis/shared": "*",
|
|
40
|
+
"@unovis/ts": "1.2.2-beta.4",
|
|
39
41
|
"@angular/common": "12 - 16",
|
|
40
42
|
"@angular/compiler": "12 - 16",
|
|
41
|
-
"@angular/core": "12 - 16"
|
|
42
|
-
"@unovis/ts": "1.2.2-beta.2"
|
|
43
|
+
"@angular/core": "12 - 16"
|
|
43
44
|
},
|
|
44
45
|
"overrides": {
|
|
45
46
|
"minimatch": "3.0.5",
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@unovis/angular",
|
|
3
|
+
"description": "Modular data visualization framework for React, Angular, Svelte, and vanilla TypeScript or JavaScript",
|
|
4
|
+
"version": "1.0.2-beta.1",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/f5/unovis.git",
|
|
8
|
+
"directory": "packages/angular"
|
|
9
|
+
},
|
|
10
|
+
"homepage": "https://unovis.dev",
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/f5/unovis/issues"
|
|
13
|
+
},
|
|
14
|
+
"keywords": [
|
|
15
|
+
"angular",
|
|
16
|
+
"data visualization",
|
|
17
|
+
"maps",
|
|
18
|
+
"charts",
|
|
19
|
+
"graphs"
|
|
20
|
+
],
|
|
21
|
+
"author": "Nikita Rokotyan, F5 Inc. <nikita@f5.com> (https://rokotyan.com)",
|
|
22
|
+
"maintainers": [
|
|
23
|
+
"Nikita Rokotyan <nikita@f5.com> (https://rokotyan.com)",
|
|
24
|
+
"Rebecca Bol <r.bol@f5.com>"
|
|
25
|
+
],
|
|
26
|
+
"license": "Apache-2.0",
|
|
27
|
+
"scripts": {
|
|
28
|
+
"ng": "npx ng",
|
|
29
|
+
"build": "npx ng build",
|
|
30
|
+
"watch": "npx ng build --watch --configuration development",
|
|
31
|
+
"test": "npx ng test",
|
|
32
|
+
"generate": "rollup -c; node .autogen.cjs; rm .autogen.cjs"
|
|
33
|
+
},
|
|
34
|
+
"main": "dist/lib/bundles/unovis-angular.umd.js",
|
|
35
|
+
"module": "dist/lib/esm2015/public-api.js",
|
|
36
|
+
"typings": "dist/lib/public-api.d.ts",
|
|
37
|
+
"type": "module",
|
|
38
|
+
"sideEffects": false,
|
|
39
|
+
"files": [
|
|
40
|
+
"dist"
|
|
41
|
+
],
|
|
42
|
+
"dependencies": {
|
|
43
|
+
"tslib": "^2.3.1"
|
|
44
|
+
},
|
|
45
|
+
"peerDependencies": {
|
|
46
|
+
"@angular/common": "12 - 16",
|
|
47
|
+
"@angular/compiler": "12 - 16",
|
|
48
|
+
"@angular/core": "12 - 16",
|
|
49
|
+
"@unovis/ts": "1.0.2-beta.1"
|
|
50
|
+
},
|
|
51
|
+
"devDependencies": {
|
|
52
|
+
"@angular-devkit/build-angular": "^12.0.3",
|
|
53
|
+
"@angular/cli": "^12.0.3",
|
|
54
|
+
"@angular/common": "^12.0.3",
|
|
55
|
+
"@angular/compiler": "^12.0.3",
|
|
56
|
+
"@angular/compiler-cli": "^12.0.3",
|
|
57
|
+
"@angular/core": "^12.0.3",
|
|
58
|
+
"@types/jasmine": "~3.6.0",
|
|
59
|
+
"@types/node": "^12.11.1",
|
|
60
|
+
"jasmine-core": "~3.7.0",
|
|
61
|
+
"karma": "~6.3.0",
|
|
62
|
+
"karma-chrome-launcher": "~3.1.0",
|
|
63
|
+
"karma-coverage": "~2.0.3",
|
|
64
|
+
"karma-jasmine": "~4.0.0",
|
|
65
|
+
"karma-jasmine-html-reporter": "^1.5.0",
|
|
66
|
+
"ng-packagr": "^12.0.0",
|
|
67
|
+
"rollup": "^2.61.1",
|
|
68
|
+
"rollup-plugin-typescript2": "^0.31.1",
|
|
69
|
+
"ttypescript": "^1.5.13"
|
|
70
|
+
}
|
|
71
|
+
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unovis/angular",
|
|
3
3
|
"description": "Modular data visualization framework for React, Angular, Svelte, and vanilla TypeScript or JavaScript",
|
|
4
|
-
"version": "1.2.2-beta.
|
|
4
|
+
"version": "1.2.2-beta.4",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/f5/unovis.git",
|
|
@@ -29,7 +29,8 @@
|
|
|
29
29
|
"build": "npx ng build",
|
|
30
30
|
"watch": "npx ng build --watch --configuration development",
|
|
31
31
|
"test": "npx ng test",
|
|
32
|
-
"generate": "rollup -c; node .autogen.cjs; rm .autogen.cjs"
|
|
32
|
+
"generate": "rollup -c; node .autogen.cjs; rm .autogen.cjs",
|
|
33
|
+
"gallery": "node gallery"
|
|
33
34
|
},
|
|
34
35
|
"main": "dist/lib/bundles/unovis-angular.umd.js",
|
|
35
36
|
"module": "dist/lib/esm2015/public-api.js",
|
|
@@ -43,10 +44,11 @@
|
|
|
43
44
|
"tslib": "^2.3.1"
|
|
44
45
|
},
|
|
45
46
|
"peerDependencies": {
|
|
47
|
+
"@unovis/shared": "*",
|
|
48
|
+
"@unovis/ts": "1.2.2-beta.4",
|
|
46
49
|
"@angular/common": "12 - 16",
|
|
47
50
|
"@angular/compiler": "12 - 16",
|
|
48
|
-
"@angular/core": "12 - 16"
|
|
49
|
-
"@unovis/ts": "1.2.2-beta.2"
|
|
51
|
+
"@angular/core": "12 - 16"
|
|
50
52
|
},
|
|
51
53
|
"devDependencies": {
|
|
52
54
|
"@angular-devkit/build-angular": "^12.0.3",
|
|
@@ -55,6 +57,8 @@
|
|
|
55
57
|
"@angular/compiler": "^12.0.3",
|
|
56
58
|
"@angular/compiler-cli": "^12.0.3",
|
|
57
59
|
"@angular/core": "^12.0.3",
|
|
60
|
+
"@angular/platform-browser": "^12.0.3",
|
|
61
|
+
"@angular/platform-browser-dynamic": "^12.0.3",
|
|
58
62
|
"@types/jasmine": "~3.6.0",
|
|
59
63
|
"@types/node": "^12.11.1",
|
|
60
64
|
"jasmine-core": "~3.7.0",
|
|
@@ -66,7 +70,9 @@
|
|
|
66
70
|
"ng-packagr": "^12.0.0",
|
|
67
71
|
"rollup": "^2.61.1",
|
|
68
72
|
"rollup-plugin-typescript2": "^0.31.1",
|
|
69
|
-
"ttypescript": "^1.5.13"
|
|
73
|
+
"ttypescript": "^1.5.13",
|
|
74
|
+
"webpack": "5.76.0",
|
|
75
|
+
"zone.js": "^0.14.0"
|
|
70
76
|
},
|
|
71
77
|
"overrides": {
|
|
72
78
|
"minimatch": "3.0.5",
|