@bizy/core 20.6.3 → 20.6.7
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 +85 -27
- package/fesm2022/bizy-core.mjs.map +1 -1
- package/index.d.ts +28 -16
- package/package.json +1 -1
- package/styles/variables.css +3 -0
package/index.d.ts
CHANGED
|
@@ -835,6 +835,7 @@ interface IBizyHeatMapChartData {
|
|
|
835
835
|
x: number;
|
|
836
836
|
y: number;
|
|
837
837
|
value: number | null;
|
|
838
|
+
metadata?: any;
|
|
838
839
|
}
|
|
839
840
|
interface IBizyHeatMapChartRange {
|
|
840
841
|
value?: number;
|
|
@@ -850,21 +851,29 @@ declare class BizyHeatMapChartComponent implements OnDestroy, AfterViewInit {
|
|
|
850
851
|
tooltip: {
|
|
851
852
|
show?: boolean;
|
|
852
853
|
formatter?: (item: any) => string;
|
|
853
|
-
}
|
|
854
|
+
};
|
|
854
855
|
download: {
|
|
855
856
|
show?: boolean;
|
|
856
|
-
label
|
|
857
|
-
name
|
|
858
|
-
}
|
|
859
|
-
ranges: Array<IBizyHeatMapChartRange
|
|
857
|
+
label: string;
|
|
858
|
+
name: string;
|
|
859
|
+
};
|
|
860
|
+
ranges: Array<IBizyHeatMapChartRange> | {
|
|
861
|
+
data: Array<IBizyHeatMapChartRange>;
|
|
862
|
+
label?: {
|
|
863
|
+
start?: string;
|
|
864
|
+
end?: string;
|
|
865
|
+
};
|
|
866
|
+
};
|
|
860
867
|
xAxis: {
|
|
861
|
-
labels
|
|
868
|
+
labels: Array<string>;
|
|
869
|
+
position: 'top' | 'bottom';
|
|
862
870
|
formatter?: (item: any) => string;
|
|
863
|
-
}
|
|
871
|
+
};
|
|
864
872
|
yAxis: {
|
|
865
|
-
labels
|
|
873
|
+
labels: Array<string>;
|
|
874
|
+
position: 'left' | 'right';
|
|
866
875
|
formatter?: (item: any) => string;
|
|
867
|
-
}
|
|
876
|
+
};
|
|
868
877
|
onDownload: EventEmitter<void>;
|
|
869
878
|
onSelect: EventEmitter<string>;
|
|
870
879
|
ngAfterViewInit(): void;
|
|
@@ -2008,6 +2017,12 @@ declare class BizyViewportService {
|
|
|
2008
2017
|
static ɵprov: i0.ɵɵInjectableDeclaration<BizyViewportService>;
|
|
2009
2018
|
}
|
|
2010
2019
|
|
|
2020
|
+
declare class BizyRoundPipe implements PipeTransform {
|
|
2021
|
+
transform(value: number, mode?: 'ceil' | 'floor' | 'round'): number;
|
|
2022
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BizyRoundPipe, never>;
|
|
2023
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<BizyRoundPipe, "bizyRound", true>;
|
|
2024
|
+
}
|
|
2025
|
+
|
|
2011
2026
|
declare class BizyExtractNumbersPipe implements PipeTransform {
|
|
2012
2027
|
transform(value: string): string;
|
|
2013
2028
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyExtractNumbersPipe, never>;
|
|
@@ -2112,7 +2127,7 @@ declare class BizyFormatSecondsPipe implements PipeTransform {
|
|
|
2112
2127
|
|
|
2113
2128
|
declare class BizyPipesModule {
|
|
2114
2129
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyPipesModule, never>;
|
|
2115
|
-
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 BizyRepeatPipe, typeof BizySetToArrayPipe, typeof BizyEnumToArrayPipe, typeof BizyOrderByPipe, typeof BizyReducePipe, typeof BizySafePipe, typeof BizyAveragePipe, typeof BizySearchPipe, typeof BizyFormatSecondsPipe, typeof BizyExtractNumbersPipe]>;
|
|
2130
|
+
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]>;
|
|
2116
2131
|
static ɵinj: i0.ɵɵInjectorDeclaration<BizyPipesModule>;
|
|
2117
2132
|
}
|
|
2118
2133
|
|
|
@@ -2215,6 +2230,7 @@ declare class BizyTooltipDirective implements OnDestroy {
|
|
|
2215
2230
|
tooltipCustomClass: string;
|
|
2216
2231
|
tooltipPlacement: 'top' | 'right' | 'bottom' | 'left';
|
|
2217
2232
|
tooltipDelay: number;
|
|
2233
|
+
showTooltip: boolean;
|
|
2218
2234
|
tooltipLongPressDuration: number;
|
|
2219
2235
|
set tooltipLineClamp(lineClamp: number);
|
|
2220
2236
|
set tooltipText(tooltipText: string);
|
|
@@ -2224,13 +2240,9 @@ declare class BizyTooltipDirective implements OnDestroy {
|
|
|
2224
2240
|
onMouseLeave(): void;
|
|
2225
2241
|
onMouseUp(): void;
|
|
2226
2242
|
onClick(): void;
|
|
2227
|
-
show(): void;
|
|
2228
|
-
hide(): void;
|
|
2229
|
-
create(): void;
|
|
2230
|
-
setPosition(): void;
|
|
2231
2243
|
ngOnDestroy(): void;
|
|
2232
2244
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyTooltipDirective, never>;
|
|
2233
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<BizyTooltipDirective, "[bizyTooltip]", never, { "tooltipCustomClass": { "alias": "tooltipCustomClass"; "required": false; }; "tooltipPlacement": { "alias": "tooltipPlacement"; "required": false; }; "tooltipDelay": { "alias": "tooltipDelay"; "required": false; }; "tooltipLongPressDuration": { "alias": "tooltipLongPressDuration"; "required": false; }; "tooltipLineClamp": { "alias": "tooltipLineClamp"; "required": false; }; "tooltipText": { "alias": "bizyTooltip"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "delay": { "alias": "delay"; "required": false; }; }, {}, never, never, true, never>;
|
|
2245
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<BizyTooltipDirective, "[bizyTooltip]", never, { "tooltipCustomClass": { "alias": "tooltipCustomClass"; "required": false; }; "tooltipPlacement": { "alias": "tooltipPlacement"; "required": false; }; "tooltipDelay": { "alias": "tooltipDelay"; "required": false; }; "showTooltip": { "alias": "showTooltip"; "required": false; }; "tooltipLongPressDuration": { "alias": "tooltipLongPressDuration"; "required": false; }; "tooltipLineClamp": { "alias": "tooltipLineClamp"; "required": false; }; "tooltipText": { "alias": "bizyTooltip"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "delay": { "alias": "delay"; "required": false; }; }, {}, never, never, true, never>;
|
|
2234
2246
|
}
|
|
2235
2247
|
|
|
2236
2248
|
interface Item {
|
|
@@ -2260,5 +2272,5 @@ declare class BizyDirectivesModule {
|
|
|
2260
2272
|
static ɵinj: i0.ɵɵInjectorDeclaration<BizyDirectivesModule>;
|
|
2261
2273
|
}
|
|
2262
2274
|
|
|
2263
|
-
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, 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 };
|
|
2275
|
+
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 };
|
|
2264
2276
|
export type { IBizyBarLineChartData, IBizyBreadcrumb, IBizyCalendarEvent, IBizyHeatMapChartData, IBizyHeatMapChartRange, IBizyPieChartData, IBizyPopupResponse, IBizySearchPipeOptions, ILocale, LabelPosition };
|
package/package.json
CHANGED
package/styles/variables.css
CHANGED
|
@@ -71,8 +71,11 @@
|
|
|
71
71
|
--bizy-card-padding: 0.5rem;
|
|
72
72
|
--bizy-card-box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
|
|
73
73
|
--bizy-card-hover-box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
|
|
74
|
+
--bizy-card-header-align-items: center;
|
|
74
75
|
--bizy-card-header-background-color: transparent;
|
|
76
|
+
--bizy-card-content-align-items: center;
|
|
75
77
|
--bizy-card-content-background-color: transparent;
|
|
78
|
+
--bizy-card-footer-align-items: center;
|
|
76
79
|
--bizy-card-footer-background-color: transparent;
|
|
77
80
|
--bizy-card-row-gap: 0.3rem;
|
|
78
81
|
|