@unovis/angular 1.6.0-pre.2 → 1.6.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/dist/lib/bundles/unovis-angular.umd.js +301 -16
- package/dist/lib/bundles/unovis-angular.umd.js.map +1 -1
- package/dist/lib/components/brush/brush.component.d.ts +1 -1
- package/dist/lib/components/crosshair/crosshair.component.d.ts +21 -8
- package/dist/lib/components/graph/graph.component.d.ts +9 -1
- package/dist/lib/components/nested-donut/nested-donut.component.d.ts +1 -1
- package/dist/lib/components/plotband/plotband.component.d.ts +81 -0
- package/dist/lib/components/plotband/plotband.module.d.ts +7 -0
- package/dist/lib/components/plotline/plotline.component.d.ts +87 -0
- package/dist/lib/components/plotline/plotline.module.d.ts +7 -0
- package/dist/lib/components/timeline/timeline.component.d.ts +60 -15
- package/dist/lib/components.d.ts +6 -0
- package/dist/lib/esm2015/components/brush/brush.component.js +1 -1
- package/dist/lib/esm2015/components/crosshair/crosshair.component.js +8 -4
- package/dist/lib/esm2015/components/graph/graph.component.js +8 -4
- package/dist/lib/esm2015/components/nested-donut/nested-donut.component.js +1 -1
- package/dist/lib/esm2015/components/plotband/plotband.component.js +61 -0
- package/dist/lib/esm2015/components/plotband/plotband.module.js +18 -0
- package/dist/lib/esm2015/components/plotline/plotline.component.js +63 -0
- package/dist/lib/esm2015/components/plotline/plotline.module.js +18 -0
- package/dist/lib/esm2015/components/timeline/timeline.component.js +53 -11
- package/dist/lib/esm2015/components.js +7 -1
- package/dist/lib/esm2015/html-components/rolling-pin-legend/rolling-pin-legend.component.js +48 -0
- package/dist/lib/esm2015/html-components/rolling-pin-legend/rolling-pin-legend.module.js +18 -0
- package/dist/lib/fesm2015/unovis-angular.js +273 -18
- package/dist/lib/fesm2015/unovis-angular.js.map +1 -1
- package/dist/lib/html-components/rolling-pin-legend/rolling-pin-legend.component.d.ts +24 -0
- package/dist/lib/html-components/rolling-pin-legend/rolling-pin-legend.module.d.ts +7 -0
- package/dist/lib/package.json +2 -2
- package/package.json +2 -2
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { AfterViewInit, SimpleChanges, ElementRef } from '@angular/core';
|
|
2
|
+
import { RollingPinLegend, RollingPinLegendConfigInterface, RollingPinLegendItem } from '@unovis/ts';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class VisRollingPinLegendComponent implements RollingPinLegendConfigInterface, AfterViewInit {
|
|
5
|
+
containerRef: ElementRef;
|
|
6
|
+
/** Rects forming a legend. Array of `string`, representing colors.
|
|
7
|
+
*
|
|
8
|
+
* Default: `[]` */
|
|
9
|
+
rects: RollingPinLegendItem[];
|
|
10
|
+
/** Label on the left side of the legend. Default: `undefined` */
|
|
11
|
+
leftLabelText?: string;
|
|
12
|
+
/** Label on the right side of the legend. Default: `undefined` */
|
|
13
|
+
rightLabelText?: string;
|
|
14
|
+
/** Apply a specific class to the labels. Default: `''` */
|
|
15
|
+
labelClassName?: string;
|
|
16
|
+
/** Label text (<span> element) font-size CSS. Default: `null` */
|
|
17
|
+
labelFontSize?: string | null;
|
|
18
|
+
component: RollingPinLegend | undefined;
|
|
19
|
+
ngAfterViewInit(): void;
|
|
20
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
21
|
+
private getConfig;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VisRollingPinLegendComponent, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VisRollingPinLegendComponent, "vis-rolling-pin-legend", never, { "rects": "rects"; "leftLabelText": "leftLabelText"; "rightLabelText": "rightLabelText"; "labelClassName": "labelClassName"; "labelFontSize": "labelFontSize"; }, {}, never, never>;
|
|
24
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./rolling-pin-legend.component";
|
|
3
|
+
export declare class VisRollingPinLegendModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VisRollingPinLegendModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<VisRollingPinLegendModule, [typeof i1.VisRollingPinLegendComponent], never, [typeof i1.VisRollingPinLegendComponent]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<VisRollingPinLegendModule>;
|
|
7
|
+
}
|
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.0
|
|
4
|
+
"version": "1.6.0",
|
|
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.0
|
|
41
|
+
"@unovis/ts": "1.6.0",
|
|
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.0
|
|
4
|
+
"version": "1.6.0",
|
|
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.0
|
|
49
|
+
"@unovis/ts": "1.6.0",
|
|
50
50
|
"@angular/common": "12 - 19",
|
|
51
51
|
"@angular/compiler": "12 - 19",
|
|
52
52
|
"@angular/core": "12 - 19"
|