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