@unovis/angular 1.2.2-beta.3 → 1.2.2-beta.5

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.
@@ -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
  }
@@ -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.3",
4
+ "version": "1.2.2-beta.5",
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.5",
39
41
  "@angular/common": "12 - 16",
40
42
  "@angular/compiler": "12 - 16",
41
- "@angular/core": "12 - 16",
42
- "@unovis/ts": "1.2.2-beta.3"
43
+ "@angular/core": "12 - 16"
43
44
  },
44
45
  "overrides": {
45
46
  "minimatch": "3.0.5",
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.3",
4
+ "version": "1.2.2-beta.5",
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.5",
46
49
  "@angular/common": "12 - 16",
47
50
  "@angular/compiler": "12 - 16",
48
- "@angular/core": "12 - 16",
49
- "@unovis/ts": "1.2.2-beta.3"
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",