@unovis/angular 1.6.0 → 1.6.1
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/lib/bundles/unovis-angular.umd.js +19 -9
- package/dist/lib/bundles/unovis-angular.umd.js.map +1 -1
- package/dist/lib/components/axis/axis.component.d.ts +7 -1
- package/dist/lib/components/timeline/timeline.component.d.ts +7 -2
- package/dist/lib/esm2015/components/axis/axis.component.js +10 -4
- package/dist/lib/esm2015/components/timeline/timeline.component.js +6 -4
- package/dist/lib/esm2015/html-components/bullet-legend/bullet-legend.component.js +6 -4
- package/dist/lib/fesm2015/unovis-angular.js +19 -9
- package/dist/lib/fesm2015/unovis-angular.js.map +1 -1
- package/dist/lib/html-components/bullet-legend/bullet-legend.component.d.ts +3 -1
- package/dist/lib/package.json +2 -2
- package/package.json +2 -2
|
@@ -26,6 +26,8 @@ export declare class VisBulletLegendComponent implements BulletLegendConfigInter
|
|
|
26
26
|
labelMaxWidth?: string | null;
|
|
27
27
|
/** Bullet shape size, mapped to the width and height CSS properties. Default: `null` */
|
|
28
28
|
bulletSize?: string | null;
|
|
29
|
+
/** Spacing between multiple bullet symbols in pixels. Default: `4` */
|
|
30
|
+
bulletSpacing?: number;
|
|
29
31
|
/** Bullet shape enum value or accessor function. Default: `d => d.shape ?? BulletShape.Circle */
|
|
30
32
|
bulletShape?: GenericAccessor<BulletShape, BulletLegendItemInterface>;
|
|
31
33
|
/** Legend orientation. When set to `BulletLegendOrientation.Vertical`, each legend item will
|
|
@@ -36,5 +38,5 @@ export declare class VisBulletLegendComponent implements BulletLegendConfigInter
|
|
|
36
38
|
ngOnChanges(changes: SimpleChanges): void;
|
|
37
39
|
private getConfig;
|
|
38
40
|
static ɵfac: i0.ɵɵFactoryDeclaration<VisBulletLegendComponent, never>;
|
|
39
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VisBulletLegendComponent, "vis-bullet-legend", never, { "items": "items"; "labelClassName": "labelClassName"; "onLegendItemClick": "onLegendItemClick"; "labelFontSize": "labelFontSize"; "labelMaxWidth": "labelMaxWidth"; "bulletSize": "bulletSize"; "bulletShape": "bulletShape"; "orientation": "orientation"; }, {}, never, never>;
|
|
41
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VisBulletLegendComponent, "vis-bullet-legend", never, { "items": "items"; "labelClassName": "labelClassName"; "onLegendItemClick": "onLegendItemClick"; "labelFontSize": "labelFontSize"; "labelMaxWidth": "labelMaxWidth"; "bulletSize": "bulletSize"; "bulletSpacing": "bulletSpacing"; "bulletShape": "bulletShape"; "orientation": "orientation"; }, {}, never, never>;
|
|
40
42
|
}
|
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, Vue, Solid, and vanilla TypeScript or JavaScript",
|
|
4
|
-
"version": "1.6.
|
|
4
|
+
"version": "1.6.1",
|
|
5
5
|
"packageManager": "npm@10.9.1",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"tslib": "^2.3.1"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
|
-
"@unovis/ts": "1.6.
|
|
41
|
+
"@unovis/ts": "1.6.1",
|
|
42
42
|
"@angular/common": "12 - 19",
|
|
43
43
|
"@angular/compiler": "12 - 19",
|
|
44
44
|
"@angular/core": "12 - 19"
|
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, Vue, Solid, and vanilla TypeScript or JavaScript",
|
|
4
|
-
"version": "1.6.
|
|
4
|
+
"version": "1.6.1",
|
|
5
5
|
"packageManager": "npm@10.9.1",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"tslib": "^2.3.1"
|
|
47
47
|
},
|
|
48
48
|
"peerDependencies": {
|
|
49
|
-
"@unovis/ts": "1.6.
|
|
49
|
+
"@unovis/ts": "1.6.1",
|
|
50
50
|
"@angular/common": "12 - 19",
|
|
51
51
|
"@angular/compiler": "12 - 19",
|
|
52
52
|
"@angular/core": "12 - 19"
|