@bizy/core 20.6.10 → 20.8.2
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 +4855 -4636
- package/fesm2022/bizy-core.mjs.map +1 -1
- package/index.d.ts +41 -16
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { EventEmitter, OnDestroy, AfterViewInit, TemplateRef, PipeTransform, QueryList, ElementRef, ViewContainerRef, AfterContentInit, ChangeDetectorRef, RendererFactory2, Renderer2
|
|
2
|
+
import { EventEmitter, OnInit, OnDestroy, AfterViewInit, TemplateRef, PipeTransform, QueryList, ElementRef, ViewContainerRef, AfterContentInit, ChangeDetectorRef, RendererFactory2, Renderer2 } 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';
|
|
@@ -112,6 +112,13 @@ declare class BizyAudioPlayerModule {
|
|
|
112
112
|
static ɵinj: i0.ɵɵInjectorDeclaration<BizyAudioPlayerModule>;
|
|
113
113
|
}
|
|
114
114
|
|
|
115
|
+
declare class BizyBarLineChartPopupComponent implements OnInit {
|
|
116
|
+
#private;
|
|
117
|
+
ngOnInit(): void;
|
|
118
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BizyBarLineChartPopupComponent, never>;
|
|
119
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BizyBarLineChartPopupComponent, "bizy-bar-line-chart-popup", never, {}, {}, never, never, true, never>;
|
|
120
|
+
}
|
|
121
|
+
|
|
115
122
|
interface IBizyBarLineChartData {
|
|
116
123
|
values?: Array<number>;
|
|
117
124
|
type?: 'bar' | 'line';
|
|
@@ -125,9 +132,10 @@ interface IBizyBarLineChartData {
|
|
|
125
132
|
};
|
|
126
133
|
yAxi?: {
|
|
127
134
|
name?: string;
|
|
128
|
-
|
|
135
|
+
show?: boolean;
|
|
129
136
|
max?: number;
|
|
130
137
|
min?: number;
|
|
138
|
+
width?: number;
|
|
131
139
|
interval?: number;
|
|
132
140
|
position?: 'left' | 'right';
|
|
133
141
|
onValueFormatter?: (item: any) => string;
|
|
@@ -140,12 +148,12 @@ declare class BizyBarLineChartComponent implements OnDestroy, AfterViewInit {
|
|
|
140
148
|
tooltip: {
|
|
141
149
|
show?: boolean;
|
|
142
150
|
formatter?: (item: any) => string;
|
|
143
|
-
}
|
|
151
|
+
};
|
|
144
152
|
download: {
|
|
145
153
|
show?: boolean;
|
|
146
154
|
label?: string;
|
|
147
155
|
name?: string;
|
|
148
|
-
}
|
|
156
|
+
};
|
|
149
157
|
axisPointer: 'line' | 'cross';
|
|
150
158
|
xAxis: {
|
|
151
159
|
labels?: Array<string>;
|
|
@@ -163,7 +171,7 @@ declare class BizyBarLineChartComponent implements OnDestroy, AfterViewInit {
|
|
|
163
171
|
|
|
164
172
|
declare class BizyBarLineChartModule {
|
|
165
173
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyBarLineChartModule, never>;
|
|
166
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<BizyBarLineChartModule, never, [typeof BizyBarLineChartComponent], [typeof BizyBarLineChartComponent]>;
|
|
174
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BizyBarLineChartModule, never, [typeof BizyBarLineChartComponent, typeof BizyBarLineChartPopupComponent], [typeof BizyBarLineChartComponent, typeof BizyBarLineChartPopupComponent]>;
|
|
167
175
|
static ɵinj: i0.ɵɵInjectorDeclaration<BizyBarLineChartModule>;
|
|
168
176
|
}
|
|
169
177
|
|
|
@@ -854,8 +862,8 @@ declare class BizyHeatMapChartComponent implements OnDestroy, AfterViewInit {
|
|
|
854
862
|
};
|
|
855
863
|
download: {
|
|
856
864
|
show?: boolean;
|
|
857
|
-
label
|
|
858
|
-
name
|
|
865
|
+
label?: string;
|
|
866
|
+
name?: string;
|
|
859
867
|
};
|
|
860
868
|
ranges: Array<IBizyHeatMapChartRange> | {
|
|
861
869
|
data: Array<IBizyHeatMapChartRange>;
|
|
@@ -1022,6 +1030,10 @@ declare class BizyPieChartComponent {
|
|
|
1022
1030
|
value: string | number;
|
|
1023
1031
|
color?: string;
|
|
1024
1032
|
} | null;
|
|
1033
|
+
tooltip: {
|
|
1034
|
+
show?: boolean;
|
|
1035
|
+
formatter?: (item: any) => string;
|
|
1036
|
+
};
|
|
1025
1037
|
legend: {
|
|
1026
1038
|
show?: boolean;
|
|
1027
1039
|
orient?: 'vertical' | 'horizontal';
|
|
@@ -1034,17 +1046,17 @@ declare class BizyPieChartComponent {
|
|
|
1034
1046
|
show?: boolean;
|
|
1035
1047
|
label?: string;
|
|
1036
1048
|
name?: string;
|
|
1037
|
-
}
|
|
1049
|
+
};
|
|
1050
|
+
expand: {
|
|
1051
|
+
show?: boolean;
|
|
1052
|
+
label?: string;
|
|
1053
|
+
};
|
|
1038
1054
|
label: {
|
|
1039
1055
|
show?: boolean;
|
|
1040
1056
|
overflow?: 'break' | 'truncate';
|
|
1041
1057
|
line: boolean;
|
|
1042
1058
|
formatter?: (item: any) => string;
|
|
1043
1059
|
} | null;
|
|
1044
|
-
tooltip: {
|
|
1045
|
-
show?: boolean;
|
|
1046
|
-
formatter?: (item: any) => string;
|
|
1047
|
-
} | null;
|
|
1048
1060
|
onSelect: EventEmitter<string>;
|
|
1049
1061
|
onDownload: EventEmitter<void>;
|
|
1050
1062
|
ngAfterViewInit(): void;
|
|
@@ -1052,12 +1064,19 @@ declare class BizyPieChartComponent {
|
|
|
1052
1064
|
set data(data: Array<IBizyPieChartData> | null);
|
|
1053
1065
|
ngOnDestroy(): void;
|
|
1054
1066
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyPieChartComponent, never>;
|
|
1055
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BizyPieChartComponent, "bizy-pie-chart", never, { "resizeRef": { "alias": "resizeRef"; "required": false; }; "type": { "alias": "type"; "required": false; }; "centerLabel": { "alias": "centerLabel"; "required": false; }; "legend": { "alias": "legend"; "required": false; }; "download": { "alias": "download"; "required": false; }; "
|
|
1067
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BizyPieChartComponent, "bizy-pie-chart", never, { "resizeRef": { "alias": "resizeRef"; "required": false; }; "type": { "alias": "type"; "required": false; }; "centerLabel": { "alias": "centerLabel"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "legend": { "alias": "legend"; "required": false; }; "download": { "alias": "download"; "required": false; }; "expand": { "alias": "expand"; "required": false; }; "label": { "alias": "label"; "required": false; }; "data": { "alias": "data"; "required": false; }; }, { "onSelect": "onSelect"; "onDownload": "onDownload"; }, never, never, true, never>;
|
|
1068
|
+
}
|
|
1069
|
+
|
|
1070
|
+
declare class BizyPieChartPopupComponent implements OnInit {
|
|
1071
|
+
#private;
|
|
1072
|
+
ngOnInit(): void;
|
|
1073
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BizyPieChartPopupComponent, never>;
|
|
1074
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BizyPieChartPopupComponent, "bizy-pie-chart-popup", never, {}, {}, never, never, true, never>;
|
|
1056
1075
|
}
|
|
1057
1076
|
|
|
1058
1077
|
declare class BizyPieChartModule {
|
|
1059
1078
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyPieChartModule, never>;
|
|
1060
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<BizyPieChartModule, never, [typeof BizyPieChartComponent], [typeof BizyPieChartComponent]>;
|
|
1079
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BizyPieChartModule, never, [typeof BizyPieChartComponent, typeof BizyPieChartPopupComponent], [typeof BizyPieChartComponent, typeof BizyPieChartPopupComponent]>;
|
|
1061
1080
|
static ɵinj: i0.ɵɵInjectorDeclaration<BizyPieChartModule>;
|
|
1062
1081
|
}
|
|
1063
1082
|
|
|
@@ -2016,6 +2035,12 @@ declare class BizyViewportService {
|
|
|
2016
2035
|
static ɵprov: i0.ɵɵInjectableDeclaration<BizyViewportService>;
|
|
2017
2036
|
}
|
|
2018
2037
|
|
|
2038
|
+
declare class BizyUniquePipe implements PipeTransform {
|
|
2039
|
+
transform<T>(items: Array<T>, property?: string): Array<T>;
|
|
2040
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BizyUniquePipe, never>;
|
|
2041
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<BizyUniquePipe, "bizyUnique", true>;
|
|
2042
|
+
}
|
|
2043
|
+
|
|
2019
2044
|
declare class BizyRoundPipe implements PipeTransform {
|
|
2020
2045
|
transform(value: number, mode?: 'ceil' | 'floor' | 'round'): number;
|
|
2021
2046
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyRoundPipe, never>;
|
|
@@ -2126,7 +2151,7 @@ declare class BizyFormatSecondsPipe implements PipeTransform {
|
|
|
2126
2151
|
|
|
2127
2152
|
declare class BizyPipesModule {
|
|
2128
2153
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyPipesModule, never>;
|
|
2129
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<BizyPipesModule, never, [typeof BizyRepeatPipe, typeof BizySetToArrayPipe, typeof BizyEnumToArrayPipe, typeof BizyOrderByPipe, typeof BizyReducePipe, typeof BizySafePipe, typeof BizyAveragePipe, typeof BizySearchPipe, typeof BizyFormatSecondsPipe, typeof BizyExtractNumbersPipe, typeof BizyRoundPipe], [typeof BizyRepeatPipe, typeof BizySetToArrayPipe, typeof BizyEnumToArrayPipe, typeof BizyOrderByPipe, typeof BizyReducePipe, typeof BizySafePipe, typeof BizyAveragePipe, typeof BizySearchPipe, typeof BizyFormatSecondsPipe, typeof BizyExtractNumbersPipe, typeof BizyRoundPipe]>;
|
|
2154
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BizyPipesModule, never, [typeof BizyRepeatPipe, typeof BizySetToArrayPipe, typeof BizyEnumToArrayPipe, typeof BizyOrderByPipe, typeof BizyReducePipe, typeof BizySafePipe, typeof BizyAveragePipe, typeof BizySearchPipe, typeof BizyFormatSecondsPipe, typeof BizyExtractNumbersPipe, typeof BizyRoundPipe, typeof BizyUniquePipe], [typeof BizyRepeatPipe, typeof BizySetToArrayPipe, typeof BizyEnumToArrayPipe, typeof BizyOrderByPipe, typeof BizyReducePipe, typeof BizySafePipe, typeof BizyAveragePipe, typeof BizySearchPipe, typeof BizyFormatSecondsPipe, typeof BizyExtractNumbersPipe, typeof BizyRoundPipe, typeof BizyUniquePipe]>;
|
|
2130
2155
|
static ɵinj: i0.ɵɵInjectorDeclaration<BizyPipesModule>;
|
|
2131
2156
|
}
|
|
2132
2157
|
|
|
@@ -2271,5 +2296,5 @@ declare class BizyDirectivesModule {
|
|
|
2271
2296
|
static ɵinj: i0.ɵɵInjectorDeclaration<BizyDirectivesModule>;
|
|
2272
2297
|
}
|
|
2273
2298
|
|
|
2274
|
-
export { BIZY_ANIMATION, BIZY_CALENDAR_DAY, BIZY_CALENDAR_EVENT_ACTION, BIZY_CALENDAR_LANGUAGE, BIZY_CALENDAR_MODE, BIZY_FORMAT_SECONDS_FORMAT, BIZY_FORMAT_SECONDS_LANGUAGE, BIZY_SKELETON_SHAPE, BIZY_TAG_TYPE, BizyAccordionComponent, BizyAccordionModule, BizyAnimationService, BizyAudioPlayerComponent, BizyAudioPlayerModule, BizyAutoFocusDirective, BizyAveragePipe, BizyBarLineChartComponent, BizyBarLineChartModule, BizyBreadcrumbComponent, BizyBreadcrumbModule, BizyButtonComponent, BizyButtonModule, BizyCacheService, BizyCalendarComponent, BizyCalendarModule, BizyCardComponent, BizyCardModule, BizyCheckboxComponent, BizyCheckboxModule, BizyContentComponent, BizyContentModule, BizyCopyToClipboardDirective, BizyCopyToClipboardService, BizyCurrencyFormatDirective, BizyDatePickerComponent, BizyDatePickerModule, BizyDeviceService, BizyDirectivesModule, BizyEnumToArrayPipe, BizyExportToCSVService, BizyExtractNumbersPipe, BizyFileUploaderComponent, BizyFileUploaderModule, BizyFileUploaderService, BizyFilterComponent, BizyFilterContentComponent, BizyFilterModule, BizyFilterPipe, BizyFilterSectionCheckboxOptionComponent, BizyFilterSectionComponent, BizyFilterSectionRangeOptionComponent, BizyFilterSectionSearchOptionComponent, BizyFilterSectionsComponent, BizyFormComponent, BizyFormModule, BizyFormatSecondsPipe, BizyFormatSecondsService, BizyFullScreenPopupWrapperComponent, BizyGridComponent, BizyGridForDirective, BizyGridModule, BizyGridRowComponent, BizyHeatMapChartComponent, BizyHeatMapChartModule, BizyInputComponent, BizyInputModule, BizyInputOptionComponent, BizyKeyboardService, BizyListComponent, BizyListModule, BizyLoadingDirective, BizyLogService, BizyLongPressDirective, BizyMenuBarComponent, BizyMenuBarModule, BizyMenuBarOptionComponent, BizyMenuComponent, BizyMenuModule, BizyMenuOptionComponent, BizyMenuTitleComponent, BizyOnlyNumbersDirective, BizyOnlyPhoneDigitsDirective, BizyOrderByPipe, BizyPieChartComponent, BizyPieChartModule, BizyPipesModule, BizyPopupModule, BizyPopupService, BizyPopupWrapperComponent, BizyProgressBarComponent, BizyProgressBarModule, BizyRadioComponent, BizyRadioModule, BizyRangeFilterPipe, BizyReducePipe, BizyReloadDirective, BizyRepeatPipe, BizyRoundPipe, BizyRouterService, BizySafePipe, BizySearchPipe, BizySectionCenterComponent, BizySectionComponent, BizySectionEndComponent, BizySectionModule, BizySectionStartComponent, BizySelectComponent, BizySelectModule, BizySelectOptionComponent, BizyServicesModule, BizySetToArrayPipe, BizySidebarComponent, BizySidebarFloatingOptionComponent, BizySidebarFloatingOptionTitleComponent, BizySidebarModule, BizySidebarOptionComponent, BizySkeletonComponent, BizySkeletonModule, BizySliderComponent, BizySliderModule, BizyStorageService, BizyTabComponent, BizyTableColumnArrowsComponent, BizyTableColumnComponent, BizyTableColumnFixedDirective, BizyTableComponent, BizyTableFooterComponent, BizyTableHeaderComponent, BizyTableModule, BizyTableRowComponent, BizyTableRowExpandContentComponent, BizyTableScrollingComponent, BizyTableScrollingDirective, BizyTabsComponent, BizyTabsModule, BizyTagComponent, BizyTagModule, BizyTextEllipsisDirective, BizyTimelineComponent, BizyTimelineEventComponent, BizyTimelineModule, BizyToastModule, BizyToastService, BizyToastWrapperComponent, BizyToggleComponent, BizyToggleModule, BizyToolbarComponent, BizyToolbarModule, BizyTooltipDirective, BizyTrackByIdDirective, BizyTranslateModule, BizyTranslatePipe, BizyTranslateService, BizyValidatorService, BizyViewportService, LANGUAGE, LOADING_TYPE, MIME_TYPE, MODE, POPUP_PLACEMENT };
|
|
2299
|
+
export { BIZY_ANIMATION, BIZY_CALENDAR_DAY, BIZY_CALENDAR_EVENT_ACTION, BIZY_CALENDAR_LANGUAGE, BIZY_CALENDAR_MODE, BIZY_FORMAT_SECONDS_FORMAT, BIZY_FORMAT_SECONDS_LANGUAGE, BIZY_SKELETON_SHAPE, BIZY_TAG_TYPE, BizyAccordionComponent, BizyAccordionModule, BizyAnimationService, BizyAudioPlayerComponent, BizyAudioPlayerModule, BizyAutoFocusDirective, BizyAveragePipe, BizyBarLineChartComponent, BizyBarLineChartModule, BizyBarLineChartPopupComponent, BizyBreadcrumbComponent, BizyBreadcrumbModule, BizyButtonComponent, BizyButtonModule, BizyCacheService, BizyCalendarComponent, BizyCalendarModule, BizyCardComponent, BizyCardModule, BizyCheckboxComponent, BizyCheckboxModule, BizyContentComponent, BizyContentModule, BizyCopyToClipboardDirective, BizyCopyToClipboardService, BizyCurrencyFormatDirective, BizyDatePickerComponent, BizyDatePickerModule, BizyDeviceService, BizyDirectivesModule, BizyEnumToArrayPipe, BizyExportToCSVService, BizyExtractNumbersPipe, BizyFileUploaderComponent, BizyFileUploaderModule, BizyFileUploaderService, BizyFilterComponent, BizyFilterContentComponent, BizyFilterModule, BizyFilterPipe, BizyFilterSectionCheckboxOptionComponent, BizyFilterSectionComponent, BizyFilterSectionRangeOptionComponent, BizyFilterSectionSearchOptionComponent, BizyFilterSectionsComponent, BizyFormComponent, BizyFormModule, BizyFormatSecondsPipe, BizyFormatSecondsService, BizyFullScreenPopupWrapperComponent, BizyGridComponent, BizyGridForDirective, BizyGridModule, BizyGridRowComponent, BizyHeatMapChartComponent, BizyHeatMapChartModule, BizyInputComponent, BizyInputModule, BizyInputOptionComponent, BizyKeyboardService, BizyListComponent, BizyListModule, BizyLoadingDirective, BizyLogService, BizyLongPressDirective, BizyMenuBarComponent, BizyMenuBarModule, BizyMenuBarOptionComponent, BizyMenuComponent, BizyMenuModule, BizyMenuOptionComponent, BizyMenuTitleComponent, BizyOnlyNumbersDirective, BizyOnlyPhoneDigitsDirective, BizyOrderByPipe, BizyPieChartComponent, BizyPieChartModule, BizyPieChartPopupComponent, BizyPipesModule, BizyPopupModule, BizyPopupService, BizyPopupWrapperComponent, BizyProgressBarComponent, BizyProgressBarModule, BizyRadioComponent, BizyRadioModule, BizyRangeFilterPipe, BizyReducePipe, BizyReloadDirective, BizyRepeatPipe, BizyRoundPipe, BizyRouterService, BizySafePipe, BizySearchPipe, BizySectionCenterComponent, BizySectionComponent, BizySectionEndComponent, BizySectionModule, BizySectionStartComponent, BizySelectComponent, BizySelectModule, BizySelectOptionComponent, BizyServicesModule, BizySetToArrayPipe, BizySidebarComponent, BizySidebarFloatingOptionComponent, BizySidebarFloatingOptionTitleComponent, BizySidebarModule, BizySidebarOptionComponent, BizySkeletonComponent, BizySkeletonModule, BizySliderComponent, BizySliderModule, BizyStorageService, BizyTabComponent, BizyTableColumnArrowsComponent, BizyTableColumnComponent, BizyTableColumnFixedDirective, BizyTableComponent, BizyTableFooterComponent, BizyTableHeaderComponent, BizyTableModule, BizyTableRowComponent, BizyTableRowExpandContentComponent, BizyTableScrollingComponent, BizyTableScrollingDirective, BizyTabsComponent, BizyTabsModule, BizyTagComponent, BizyTagModule, BizyTextEllipsisDirective, BizyTimelineComponent, BizyTimelineEventComponent, BizyTimelineModule, BizyToastModule, BizyToastService, BizyToastWrapperComponent, BizyToggleComponent, BizyToggleModule, BizyToolbarComponent, BizyToolbarModule, BizyTooltipDirective, BizyTrackByIdDirective, BizyTranslateModule, BizyTranslatePipe, BizyTranslateService, BizyUniquePipe, BizyValidatorService, BizyViewportService, LANGUAGE, LOADING_TYPE, MIME_TYPE, MODE, POPUP_PLACEMENT };
|
|
2275
2300
|
export type { IBizyBarLineChartData, IBizyBreadcrumb, IBizyCalendarEvent, IBizyHeatMapChartData, IBizyHeatMapChartRange, IBizyPieChartData, IBizyPopupResponse, IBizySearchPipeOptions, ILocale, LabelPosition };
|