@bizy/core 21.4.3 → 21.5.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/fesm2022/bizy-core.mjs +541 -267
- package/fesm2022/bizy-core.mjs.map +1 -1
- package/package.json +1 -1
- package/types/bizy-core.d.ts +78 -45
package/package.json
CHANGED
package/types/bizy-core.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { EventEmitter, PipeTransform, ElementRef, AfterViewInit, OnDestroy, OnInit,
|
|
2
|
+
import { EventEmitter, PipeTransform, ElementRef, AfterViewInit, OnDestroy, OnInit, AfterContentInit, QueryList, TemplateRef, ViewContainerRef, AfterViewChecked, 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';
|
|
@@ -163,6 +163,72 @@ declare class BizyAudioRecorderModule {
|
|
|
163
163
|
static ɵinj: i0.ɵɵInjectorDeclaration<BizyAudioRecorderModule>;
|
|
164
164
|
}
|
|
165
165
|
|
|
166
|
+
declare enum BIZY_BAR_LINE_CHART_AXIS_POSITION {
|
|
167
|
+
TOP = "top",
|
|
168
|
+
RIGHT = "right",
|
|
169
|
+
BOTTOM = "bottom",
|
|
170
|
+
LEFT = "left"
|
|
171
|
+
}
|
|
172
|
+
interface IBizyBarLineChartAxis {
|
|
173
|
+
show?: boolean;
|
|
174
|
+
name?: string;
|
|
175
|
+
max?: number;
|
|
176
|
+
min?: number;
|
|
177
|
+
offset?: number;
|
|
178
|
+
interval?: number;
|
|
179
|
+
independent?: boolean;
|
|
180
|
+
position?: BIZY_BAR_LINE_CHART_AXIS_POSITION;
|
|
181
|
+
formatter?: (item: any) => string;
|
|
182
|
+
}
|
|
183
|
+
interface IBizyBarLineChartValue {
|
|
184
|
+
x: string | number;
|
|
185
|
+
y: string | number;
|
|
186
|
+
}
|
|
187
|
+
interface IBizyBarLineChartTooltip {
|
|
188
|
+
show?: boolean;
|
|
189
|
+
formatter?: (item: any) => string;
|
|
190
|
+
}
|
|
191
|
+
interface IBizyBarLineChartDownload {
|
|
192
|
+
show?: boolean;
|
|
193
|
+
label?: string;
|
|
194
|
+
fileName?: string;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
declare class BizyBarChartComponent {
|
|
198
|
+
#private;
|
|
199
|
+
values: Array<IBizyBarLineChartValue>;
|
|
200
|
+
stack: string | null;
|
|
201
|
+
name: string | null;
|
|
202
|
+
yAxis: IBizyBarLineChartAxis;
|
|
203
|
+
xAxis: IBizyBarLineChartAxis;
|
|
204
|
+
getColor: () => string;
|
|
205
|
+
getMinHeight: () => string;
|
|
206
|
+
getYAxisColor: () => string;
|
|
207
|
+
getYAxisWidth: () => string;
|
|
208
|
+
getXAxisColor: () => string;
|
|
209
|
+
getXAxisWidth: () => string;
|
|
210
|
+
getNativeElement: () => any;
|
|
211
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BizyBarChartComponent, never>;
|
|
212
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BizyBarChartComponent, "bizy-bar-chart", never, { "values": { "alias": "values"; "required": false; }; "stack": { "alias": "stack"; "required": false; }; "name": { "alias": "name"; "required": false; }; "yAxis": { "alias": "yAxis"; "required": false; }; "xAxis": { "alias": "xAxis"; "required": false; }; }, {}, never, never, true, never>;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
declare class BizyLineChartComponent {
|
|
216
|
+
#private;
|
|
217
|
+
values: Array<IBizyBarLineChartValue>;
|
|
218
|
+
discrete: boolean;
|
|
219
|
+
name: string | null;
|
|
220
|
+
yAxis: IBizyBarLineChartAxis;
|
|
221
|
+
xAxis: IBizyBarLineChartAxis;
|
|
222
|
+
getColor: () => string;
|
|
223
|
+
getMinHeight: () => string;
|
|
224
|
+
getYAxisColor: () => string;
|
|
225
|
+
getYAxisWidth: () => string;
|
|
226
|
+
getXAxisColor: () => string;
|
|
227
|
+
getXAxisWidth: () => string;
|
|
228
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BizyLineChartComponent, never>;
|
|
229
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BizyLineChartComponent, "bizy-line-chart", never, { "values": { "alias": "values"; "required": false; }; "discrete": { "alias": "discrete"; "required": false; }; "name": { "alias": "name"; "required": false; }; "yAxis": { "alias": "yAxis"; "required": false; }; "xAxis": { "alias": "xAxis"; "required": false; }; }, {}, never, never, true, never>;
|
|
230
|
+
}
|
|
231
|
+
|
|
166
232
|
declare class BizyBarLineChartPopupComponent implements OnInit {
|
|
167
233
|
#private;
|
|
168
234
|
ngOnInit(): void;
|
|
@@ -170,59 +236,25 @@ declare class BizyBarLineChartPopupComponent implements OnInit {
|
|
|
170
236
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyBarLineChartPopupComponent, "bizy-bar-line-chart-popup", never, {}, {}, never, never, true, never>;
|
|
171
237
|
}
|
|
172
238
|
|
|
173
|
-
|
|
174
|
-
values?: Array<number>;
|
|
175
|
-
type?: 'bar' | 'line';
|
|
176
|
-
label?: string;
|
|
177
|
-
discrete?: boolean;
|
|
178
|
-
color?: string;
|
|
179
|
-
stack?: string;
|
|
180
|
-
barMinHeight?: number;
|
|
181
|
-
xAxi?: {
|
|
182
|
-
name: string;
|
|
183
|
-
};
|
|
184
|
-
yAxi?: {
|
|
185
|
-
name?: string;
|
|
186
|
-
show?: boolean;
|
|
187
|
-
max?: number;
|
|
188
|
-
min?: number;
|
|
189
|
-
width?: number;
|
|
190
|
-
interval?: number;
|
|
191
|
-
position?: 'left' | 'right';
|
|
192
|
-
onValueFormatter?: (item: any) => string;
|
|
193
|
-
};
|
|
194
|
-
}
|
|
195
|
-
|
|
196
|
-
declare class BizyBarLineChartComponent implements OnDestroy, AfterViewInit {
|
|
239
|
+
declare class BizyBarLineChartComponent implements AfterContentInit {
|
|
197
240
|
#private;
|
|
198
241
|
resizeRef: HTMLElement | null;
|
|
199
|
-
tooltip:
|
|
200
|
-
|
|
201
|
-
formatter?: (item: any) => string;
|
|
202
|
-
};
|
|
203
|
-
download: {
|
|
204
|
-
show?: boolean;
|
|
205
|
-
label?: string;
|
|
206
|
-
name?: string;
|
|
207
|
-
};
|
|
208
|
-
axisPointer: 'line' | 'cross';
|
|
209
|
-
xAxis: {
|
|
210
|
-
labels?: Array<string>;
|
|
211
|
-
formatter?: (item: any) => string;
|
|
212
|
-
} | null;
|
|
242
|
+
tooltip: IBizyBarLineChartTooltip;
|
|
243
|
+
download: IBizyBarLineChartDownload;
|
|
213
244
|
onDownload: EventEmitter<void>;
|
|
214
245
|
onSelect: EventEmitter<string>;
|
|
215
|
-
|
|
246
|
+
barCharts: QueryList<BizyBarChartComponent> | null;
|
|
247
|
+
lineCharts: QueryList<BizyLineChartComponent> | null;
|
|
248
|
+
ngAfterContentInit(): void;
|
|
216
249
|
getNativeElement: () => any;
|
|
217
|
-
set data(data: Array<IBizyBarLineChartData> | null);
|
|
218
250
|
ngOnDestroy(): void;
|
|
219
251
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyBarLineChartComponent, never>;
|
|
220
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BizyBarLineChartComponent, "bizy-bar-line-chart", never, { "resizeRef": { "alias": "resizeRef"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "download": { "alias": "download"; "required": false; };
|
|
252
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BizyBarLineChartComponent, "bizy-bar-line-chart", never, { "resizeRef": { "alias": "resizeRef"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "download": { "alias": "download"; "required": false; }; }, { "onDownload": "onDownload"; "onSelect": "onSelect"; }, ["barCharts", "lineCharts"], ["bizy-bar-chart", "bizy-line-chart"], true, never>;
|
|
221
253
|
}
|
|
222
254
|
|
|
223
255
|
declare class BizyBarLineChartModule {
|
|
224
256
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyBarLineChartModule, never>;
|
|
225
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<BizyBarLineChartModule, never, [typeof BizyBarLineChartComponent, typeof BizyBarLineChartPopupComponent], [typeof BizyBarLineChartComponent, typeof BizyBarLineChartPopupComponent]>;
|
|
257
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BizyBarLineChartModule, never, [typeof BizyBarLineChartComponent, typeof BizyBarLineChartPopupComponent, typeof BizyBarChartComponent, typeof BizyLineChartComponent], [typeof BizyBarLineChartComponent, typeof BizyBarLineChartPopupComponent, typeof BizyBarChartComponent, typeof BizyLineChartComponent]>;
|
|
226
258
|
static ɵinj: i0.ɵɵInjectorDeclaration<BizyBarLineChartModule>;
|
|
227
259
|
}
|
|
228
260
|
|
|
@@ -734,6 +766,7 @@ declare class BizyFilterSectionSearchOptionComponent {
|
|
|
734
766
|
getId: () => string;
|
|
735
767
|
getValue: () => string;
|
|
736
768
|
getNativeElement: () => any;
|
|
769
|
+
onClean(): void;
|
|
737
770
|
isActivated: () => boolean;
|
|
738
771
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyFilterSectionSearchOptionComponent, never>;
|
|
739
772
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyFilterSectionSearchOptionComponent, "bizy-filter-section-search-option", never, { "id": { "alias": "id"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; "onChange": "onChange"; }, never, ["[slot=prefix]", "[slot=suffix]"], true, never>;
|
|
@@ -2530,5 +2563,5 @@ declare class BizyDirectivesModule {
|
|
|
2530
2563
|
static ɵinj: i0.ɵɵInjectorDeclaration<BizyDirectivesModule>;
|
|
2531
2564
|
}
|
|
2532
2565
|
|
|
2533
|
-
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_STACKED_BAR_CHART_LEGEND_POSITION, BIZY_TAG_TYPE, BizyAccordionComponent, BizyAccordionModule, BizyAnimationService, BizyAudioPlayerComponent, BizyAudioPlayerFormatSecondsPipe, BizyAudioPlayerModule, BizyAudioRecorderComponent, BizyAudioRecorderModule, 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, BizyDonutChartComponent, BizyDonutChartModule, BizyDonutChartPopupComponent, BizyEnumToArrayPipe, BizyExportToCSVService, BizyExtractNumbersPipe, BizyFileUploaderComponent, BizyFileUploaderModule, BizyFileUploaderService, BizyFilterComponent, BizyFilterContentComponent, BizyFilterModule, BizyFilterPipe, BizyFilterSectionCheckboxOptionComponent, BizyFilterSectionComponent, BizyFilterSectionRangeOptionComponent, BizyFilterSectionSearchOptionComponent, BizyFilterSectionsComponent, BizyFormComponent, BizyFormModule, BizyFormatSecondsPipe, BizyFormatSecondsService, BizyFullScreenPopupWrapperComponent, BizyGaugeChartComponent, BizyGaugeChartModule, BizyGaugeChartPopupComponent, 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, BizyStackedBarChartComponent, BizyStackedBarChartModule, BizyStackedBarChartSegmentComponent, 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, BizyTranslateModule, BizyTranslatePipe, BizyTranslateService, BizyUniquePipe, BizyValidatorService, BizyViewportService, LANGUAGE, LOADING_TYPE, MIME_TYPE, POPUP_PLACEMENT };
|
|
2534
|
-
export type {
|
|
2566
|
+
export { BIZY_ANIMATION, BIZY_BAR_LINE_CHART_AXIS_POSITION, 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_STACKED_BAR_CHART_LEGEND_POSITION, BIZY_TAG_TYPE, BizyAccordionComponent, BizyAccordionModule, BizyAnimationService, BizyAudioPlayerComponent, BizyAudioPlayerFormatSecondsPipe, BizyAudioPlayerModule, BizyAudioRecorderComponent, BizyAudioRecorderModule, BizyAutoFocusDirective, BizyAveragePipe, BizyBarChartComponent, BizyBarLineChartComponent, BizyBarLineChartModule, BizyBarLineChartPopupComponent, BizyBreadcrumbComponent, BizyBreadcrumbModule, BizyButtonComponent, BizyButtonModule, BizyCacheService, BizyCalendarComponent, BizyCalendarModule, BizyCardComponent, BizyCardModule, BizyCheckboxComponent, BizyCheckboxModule, BizyContentComponent, BizyContentModule, BizyCopyToClipboardDirective, BizyCopyToClipboardService, BizyCurrencyFormatDirective, BizyDatePickerComponent, BizyDatePickerModule, BizyDeviceService, BizyDirectivesModule, BizyDonutChartComponent, BizyDonutChartModule, BizyDonutChartPopupComponent, BizyEnumToArrayPipe, BizyExportToCSVService, BizyExtractNumbersPipe, BizyFileUploaderComponent, BizyFileUploaderModule, BizyFileUploaderService, BizyFilterComponent, BizyFilterContentComponent, BizyFilterModule, BizyFilterPipe, BizyFilterSectionCheckboxOptionComponent, BizyFilterSectionComponent, BizyFilterSectionRangeOptionComponent, BizyFilterSectionSearchOptionComponent, BizyFilterSectionsComponent, BizyFormComponent, BizyFormModule, BizyFormatSecondsPipe, BizyFormatSecondsService, BizyFullScreenPopupWrapperComponent, BizyGaugeChartComponent, BizyGaugeChartModule, BizyGaugeChartPopupComponent, BizyGridComponent, BizyGridForDirective, BizyGridModule, BizyGridRowComponent, BizyHeatMapChartComponent, BizyHeatMapChartModule, BizyInputComponent, BizyInputModule, BizyInputOptionComponent, BizyKeyboardService, BizyLineChartComponent, 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, BizyStackedBarChartComponent, BizyStackedBarChartModule, BizyStackedBarChartSegmentComponent, 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, BizyTranslateModule, BizyTranslatePipe, BizyTranslateService, BizyUniquePipe, BizyValidatorService, BizyViewportService, LANGUAGE, LOADING_TYPE, MIME_TYPE, POPUP_PLACEMENT };
|
|
2567
|
+
export type { IBizyBarLineChartAxis, IBizyBarLineChartDownload, IBizyBarLineChartTooltip, IBizyBarLineChartValue, IBizyBreadcrumb, IBizyCalendarEvent, IBizyDonutChartData, IBizyGaugeChartData, IBizyHeatMapChartData, IBizyHeatMapChartRange, IBizyHeatMapHighlightArea, IBizyHeatMapHighlightLine, IBizyHeatMapHighlightLineLabel, IBizyPieChartData, IBizyPopupResponse, IBizySearchPipeOptions, IBizyStackedBarChartLegends, ILocale, LabelPosition };
|