@bizy/core 20.2.7 → 20.2.8
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/fesm2022/bizy-core.mjs +132 -80
- package/fesm2022/bizy-core.mjs.map +1 -1
- package/index.d.ts +11 -1
- package/package.json +1 -1
- package/styles/variables.css +0 -7
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { EventEmitter, ChangeDetectorRef, OnDestroy, AfterViewInit, TemplateRef, PipeTransform, QueryList,
|
|
2
|
+
import { EventEmitter, ChangeDetectorRef, OnDestroy, AfterViewInit, ElementRef, Renderer2, TemplateRef, PipeTransform, QueryList, ViewContainerRef, AfterContentInit, RendererFactory2, OnInit } from '@angular/core';
|
|
3
3
|
import { CalendarEvent, CalendarMonthViewDay } from 'angular-calendar';
|
|
4
4
|
import { Subject, Observable, BehaviorSubject } from 'rxjs';
|
|
5
5
|
import { UppyFile, SuccessResponse } from '@uppy/core';
|
|
@@ -91,6 +91,10 @@ interface IBizyBarLineChartData {
|
|
|
91
91
|
|
|
92
92
|
declare class BizyBarLineChartComponent implements OnDestroy, AfterViewInit {
|
|
93
93
|
#private;
|
|
94
|
+
private elementRef;
|
|
95
|
+
private document;
|
|
96
|
+
private ref;
|
|
97
|
+
private renderer;
|
|
94
98
|
resizeRef: HTMLElement | null;
|
|
95
99
|
tooltip: boolean;
|
|
96
100
|
download: {
|
|
@@ -104,6 +108,7 @@ declare class BizyBarLineChartComponent implements OnDestroy, AfterViewInit {
|
|
|
104
108
|
onXAxisLabelFormatter: (item: any) => string;
|
|
105
109
|
onDownload: EventEmitter<void>;
|
|
106
110
|
onSelect: EventEmitter<string>;
|
|
111
|
+
constructor(elementRef: ElementRef, document: Document, ref: ChangeDetectorRef, renderer: Renderer2);
|
|
107
112
|
ngAfterViewInit(): void;
|
|
108
113
|
set data(data: Array<IBizyBarLineChartData>);
|
|
109
114
|
ngOnDestroy(): void;
|
|
@@ -858,6 +863,10 @@ interface IBizyPieChartData {
|
|
|
858
863
|
|
|
859
864
|
declare class BizyPieChartComponent {
|
|
860
865
|
#private;
|
|
866
|
+
private elementRef;
|
|
867
|
+
private document;
|
|
868
|
+
private ref;
|
|
869
|
+
private renderer;
|
|
861
870
|
resizeRef: HTMLElement | null;
|
|
862
871
|
tooltip: boolean;
|
|
863
872
|
type: 'pie' | 'donut';
|
|
@@ -870,6 +879,7 @@ declare class BizyPieChartComponent {
|
|
|
870
879
|
onTooltipFormatter: (item: any) => string;
|
|
871
880
|
onSelect: EventEmitter<string>;
|
|
872
881
|
onDownload: EventEmitter<void>;
|
|
882
|
+
constructor(elementRef: ElementRef, document: Document, ref: ChangeDetectorRef, renderer: Renderer2);
|
|
873
883
|
ngAfterViewInit(): void;
|
|
874
884
|
set data(data: Array<IBizyPieChartData>);
|
|
875
885
|
ngOnDestroy(): void;
|
package/package.json
CHANGED
package/styles/variables.css
CHANGED
|
@@ -37,9 +37,6 @@
|
|
|
37
37
|
--bizy-audio-player-download-button-background-color: var(--bizy-accent-color);
|
|
38
38
|
--bizy-audio-player-download-button-color: #fff;
|
|
39
39
|
|
|
40
|
-
--bizy-bar-line-chart-min-width: 350px;
|
|
41
|
-
--bizy-bar-line-chart-min-height: 350px;
|
|
42
|
-
|
|
43
40
|
--bizy-breadcrumb-link-color: var(--bizy-info-color);
|
|
44
41
|
--bizy-breadcrumb-path-color: var(--bizy-default-color);
|
|
45
42
|
|
|
@@ -163,10 +160,6 @@
|
|
|
163
160
|
--bizy-menu-scroll-bar-color: var(--bizy-default-color);
|
|
164
161
|
--bizy-menu-scroll-bar-hover-color: #999;
|
|
165
162
|
|
|
166
|
-
--bizy-pie-chart-min-width: 350px;
|
|
167
|
-
--bizy-pie-chart-min-height: 350px;
|
|
168
|
-
|
|
169
|
-
|
|
170
163
|
--bizy-popup-background-color: #fff;
|
|
171
164
|
--bizy-popup-min-width: 20rem;
|
|
172
165
|
--bizy-popup-width: fit-content;
|