@bizy/core 20.9.0 → 20.10.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/assets/animations/mute.json +1 -0
- package/assets/animations/play.json +1 -0
- package/fesm2022/bizy-core.mjs +8492 -329
- package/fesm2022/bizy-core.mjs.map +1 -1
- package/index.d.ts +111 -31
- package/package.json +2 -1
- package/styles/variables.css +25 -8
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { EventEmitter,
|
|
2
|
+
import { EventEmitter, PipeTransform, ElementRef, AfterViewInit, OnDestroy, OnInit, TemplateRef, QueryList, 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';
|
|
@@ -39,21 +39,20 @@ declare enum MIME_TYPE {
|
|
|
39
39
|
MPEG = "audio/mpeg",
|
|
40
40
|
WAV = "audio/wav"
|
|
41
41
|
}
|
|
42
|
-
|
|
43
|
-
|
|
42
|
+
|
|
43
|
+
declare class BizyAudioPlayerFormatSecondsPipe implements PipeTransform {
|
|
44
|
+
transform(seconds: number): string;
|
|
45
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BizyAudioPlayerFormatSecondsPipe, never>;
|
|
46
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<BizyAudioPlayerFormatSecondsPipe, "bizyAudioPlayerFormatSeconds", true>;
|
|
44
47
|
}
|
|
45
48
|
|
|
46
49
|
declare class BizyAudioPlayerComponent {
|
|
47
50
|
#private;
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
disabled: boolean;
|
|
54
|
-
downloadURL: string;
|
|
55
|
-
downloadFileName: string;
|
|
56
|
-
onTrackPlayerRate: EventEmitter<string>;
|
|
51
|
+
playButtonRef: ElementRef<HTMLButtonElement>;
|
|
52
|
+
audioRef: ElementRef<HTMLAudioElement>;
|
|
53
|
+
seekSliderRef: ElementRef<HTMLInputElement>;
|
|
54
|
+
muteButtonRef: ElementRef<HTMLButtonElement>;
|
|
55
|
+
onPlaybackRate: EventEmitter<string>;
|
|
57
56
|
onDownload: EventEmitter<void>;
|
|
58
57
|
canPlay: EventEmitter<Event>;
|
|
59
58
|
onPause: EventEmitter<Event>;
|
|
@@ -70,40 +69,59 @@ declare class BizyAudioPlayerComponent {
|
|
|
70
69
|
onPlay: EventEmitter<Event>;
|
|
71
70
|
onPlaying: EventEmitter<Event>;
|
|
72
71
|
onProgress: EventEmitter<Event>;
|
|
73
|
-
onRateChange: EventEmitter<Event>;
|
|
74
72
|
onSeeked: EventEmitter<Event>;
|
|
75
73
|
onSeeking: EventEmitter<Event>;
|
|
76
74
|
onSuspend: EventEmitter<Event>;
|
|
77
75
|
onTimeUpdate: EventEmitter<Event>;
|
|
78
76
|
onVolumeChange: EventEmitter<Event>;
|
|
79
77
|
onWaiting: EventEmitter<Event>;
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
78
|
+
enableLogs: boolean;
|
|
79
|
+
disabled: boolean;
|
|
80
|
+
autoplay: boolean;
|
|
81
|
+
set download(download: {
|
|
82
|
+
show?: boolean;
|
|
83
|
+
url?: string;
|
|
84
|
+
name?: string;
|
|
85
|
+
});
|
|
86
|
+
set playbackRate(playbackRate: {
|
|
87
|
+
show?: boolean;
|
|
88
|
+
default?: number;
|
|
89
|
+
});
|
|
90
|
+
set src(src: string);
|
|
84
91
|
_duration: number;
|
|
85
92
|
_currentTime: number;
|
|
86
93
|
_paused: boolean;
|
|
87
|
-
|
|
88
|
-
|
|
94
|
+
_muted: boolean;
|
|
95
|
+
_src: string | null;
|
|
96
|
+
_showDownload: boolean;
|
|
97
|
+
_downloadURL: string | null;
|
|
98
|
+
_downloadFileName: string | null;
|
|
99
|
+
_showPlaybackRate: boolean;
|
|
89
100
|
_playbackRate: number;
|
|
90
|
-
|
|
101
|
+
readonly MIME_TYPE: typeof MIME_TYPE;
|
|
102
|
+
readonly BACKWARD_SECONDS = -15;
|
|
103
|
+
readonly FORWARD_SECONDS = 15;
|
|
91
104
|
get duration(): number;
|
|
92
105
|
get currentTime(): number;
|
|
93
106
|
get paused(): boolean;
|
|
94
|
-
|
|
95
|
-
set mode(mode: MODE);
|
|
107
|
+
get muted(): boolean;
|
|
96
108
|
ngAfterViewInit(): void;
|
|
97
109
|
getNativeElement: () => any;
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
110
|
+
togglePlay: () => Promise<void>;
|
|
111
|
+
toggleMute: () => void;
|
|
112
|
+
play: () => Promise<void>;
|
|
113
|
+
pause: () => Promise<void>;
|
|
114
|
+
mute: () => void;
|
|
115
|
+
unmute: () => void;
|
|
116
|
+
stop: () => Promise<void>;
|
|
117
|
+
backward: (seconds: number) => void;
|
|
118
|
+
forward: (seconds: number) => void;
|
|
101
119
|
seekTo(seconds: number): void;
|
|
102
|
-
|
|
103
|
-
|
|
120
|
+
setPlaybackRate(): void;
|
|
121
|
+
downloadAudio: () => void;
|
|
104
122
|
ngOnDestroy(): void;
|
|
105
123
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyAudioPlayerComponent, never>;
|
|
106
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BizyAudioPlayerComponent, "bizy-audio-player", never, { "
|
|
124
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BizyAudioPlayerComponent, "bizy-audio-player", never, { "enableLogs": { "alias": "enableLogs"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "autoplay": { "alias": "autoplay"; "required": false; }; "download": { "alias": "download"; "required": false; }; "playbackRate": { "alias": "playbackRate"; "required": false; }; "src": { "alias": "src"; "required": false; }; }, { "onPlaybackRate": "onPlaybackRate"; "onDownload": "onDownload"; "canPlay": "canPlay"; "onPause": "onPause"; "onEnded": "onEnded"; "onStalled": "onStalled"; "onAbort": "onAbort"; "onError": "onError"; "onEmptied": "onEmptied"; "canPlayThrough": "canPlayThrough"; "durationChange": "durationChange"; "onLoadedData": "onLoadedData"; "onLoadedMetadata": "onLoadedMetadata"; "onLoadStart": "onLoadStart"; "onPlay": "onPlay"; "onPlaying": "onPlaying"; "onProgress": "onProgress"; "onSeeked": "onSeeked"; "onSeeking": "onSeeking"; "onSuspend": "onSuspend"; "onTimeUpdate": "onTimeUpdate"; "onVolumeChange": "onVolumeChange"; "onWaiting": "onWaiting"; }, never, never, true, never>;
|
|
107
125
|
}
|
|
108
126
|
|
|
109
127
|
declare class BizyAudioPlayerModule {
|
|
@@ -112,6 +130,39 @@ declare class BizyAudioPlayerModule {
|
|
|
112
130
|
static ɵinj: i0.ɵɵInjectorDeclaration<BizyAudioPlayerModule>;
|
|
113
131
|
}
|
|
114
132
|
|
|
133
|
+
declare class BizyAudioRecorderComponent implements AfterViewInit, OnDestroy {
|
|
134
|
+
#private;
|
|
135
|
+
waveformCanvas: ElementRef<HTMLCanvasElement>;
|
|
136
|
+
recordButton: ElementRef<HTMLButtonElement>;
|
|
137
|
+
disabled: boolean;
|
|
138
|
+
duration: number | null;
|
|
139
|
+
onStart: EventEmitter<void>;
|
|
140
|
+
onStop: EventEmitter<void>;
|
|
141
|
+
onError: EventEmitter<Error>;
|
|
142
|
+
onRecording: EventEmitter<string>;
|
|
143
|
+
_isRecording: boolean;
|
|
144
|
+
circumference: number;
|
|
145
|
+
strokeDashoffset: number;
|
|
146
|
+
circleRadius: number;
|
|
147
|
+
circleCenter: number;
|
|
148
|
+
svgViewBox: string;
|
|
149
|
+
canvasSize: number;
|
|
150
|
+
strokeColor: string;
|
|
151
|
+
get isRecording(): boolean;
|
|
152
|
+
ngAfterViewInit(): void;
|
|
153
|
+
startRecording(): Promise<void>;
|
|
154
|
+
stopRecording(): void;
|
|
155
|
+
ngOnDestroy(): void;
|
|
156
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BizyAudioRecorderComponent, never>;
|
|
157
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BizyAudioRecorderComponent, "bizy-audio-recorder", never, { "disabled": { "alias": "disabled"; "required": false; }; "duration": { "alias": "duration"; "required": false; }; }, { "onStart": "onStart"; "onStop": "onStop"; "onError": "onError"; "onRecording": "onRecording"; }, never, never, true, never>;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
declare class BizyAudioRecorderModule {
|
|
161
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BizyAudioRecorderModule, never>;
|
|
162
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BizyAudioRecorderModule, never, [typeof BizyAudioRecorderComponent], [typeof BizyAudioRecorderComponent]>;
|
|
163
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<BizyAudioRecorderModule>;
|
|
164
|
+
}
|
|
165
|
+
|
|
115
166
|
declare class BizyBarLineChartPopupComponent implements OnInit {
|
|
116
167
|
#private;
|
|
117
168
|
ngOnInit(): void;
|
|
@@ -845,6 +896,25 @@ interface IBizyHeatMapChartData {
|
|
|
845
896
|
value: number | null;
|
|
846
897
|
metadata?: any;
|
|
847
898
|
}
|
|
899
|
+
interface IBizyHeatMapHighlightArea {
|
|
900
|
+
from: {
|
|
901
|
+
x?: number;
|
|
902
|
+
y?: number;
|
|
903
|
+
};
|
|
904
|
+
to: {
|
|
905
|
+
x?: number;
|
|
906
|
+
y?: number;
|
|
907
|
+
};
|
|
908
|
+
}
|
|
909
|
+
interface IBizyHeatMapHighlightLine {
|
|
910
|
+
x?: number;
|
|
911
|
+
y?: number;
|
|
912
|
+
}
|
|
913
|
+
interface IBizyHeatMapHighlightLineLabel {
|
|
914
|
+
show?: boolean;
|
|
915
|
+
position?: 'top' | 'bottom' | 'left' | 'right';
|
|
916
|
+
formatter?: (item: any) => string;
|
|
917
|
+
}
|
|
848
918
|
interface IBizyHeatMapChartRange {
|
|
849
919
|
value?: number;
|
|
850
920
|
min?: number;
|
|
@@ -872,6 +942,16 @@ declare class BizyHeatMapChartComponent implements OnDestroy, AfterViewInit {
|
|
|
872
942
|
end?: string;
|
|
873
943
|
};
|
|
874
944
|
};
|
|
945
|
+
highlightAreas: Array<IBizyHeatMapHighlightArea> | {
|
|
946
|
+
data: Array<IBizyHeatMapHighlightArea>;
|
|
947
|
+
};
|
|
948
|
+
highlightLines: Array<IBizyHeatMapHighlightLine> | {
|
|
949
|
+
data: Array<IBizyHeatMapHighlightLine>;
|
|
950
|
+
label: {
|
|
951
|
+
x: IBizyHeatMapHighlightLineLabel;
|
|
952
|
+
y: IBizyHeatMapHighlightLineLabel;
|
|
953
|
+
};
|
|
954
|
+
};
|
|
875
955
|
xAxis: {
|
|
876
956
|
labels: Array<string>;
|
|
877
957
|
position: 'top' | 'bottom';
|
|
@@ -889,7 +969,7 @@ declare class BizyHeatMapChartComponent implements OnDestroy, AfterViewInit {
|
|
|
889
969
|
set data(data: Array<IBizyHeatMapChartData> | null);
|
|
890
970
|
ngOnDestroy(): void;
|
|
891
971
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyHeatMapChartComponent, never>;
|
|
892
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BizyHeatMapChartComponent, "bizy-heat-map-chart", never, { "resizeRef": { "alias": "resizeRef"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "download": { "alias": "download"; "required": false; }; "ranges": { "alias": "ranges"; "required": false; }; "xAxis": { "alias": "xAxis"; "required": false; }; "yAxis": { "alias": "yAxis"; "required": false; }; "data": { "alias": "data"; "required": false; }; }, { "onDownload": "onDownload"; "onSelect": "onSelect"; }, never, never, true, never>;
|
|
972
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BizyHeatMapChartComponent, "bizy-heat-map-chart", never, { "resizeRef": { "alias": "resizeRef"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "download": { "alias": "download"; "required": false; }; "ranges": { "alias": "ranges"; "required": false; }; "highlightAreas": { "alias": "highlightAreas"; "required": false; }; "highlightLines": { "alias": "highlightLines"; "required": false; }; "xAxis": { "alias": "xAxis"; "required": false; }; "yAxis": { "alias": "yAxis"; "required": false; }; "data": { "alias": "data"; "required": false; }; }, { "onDownload": "onDownload"; "onSelect": "onSelect"; }, never, never, true, never>;
|
|
893
973
|
}
|
|
894
974
|
|
|
895
975
|
declare class BizyHeatMapChartModule {
|
|
@@ -2296,5 +2376,5 @@ declare class BizyDirectivesModule {
|
|
|
2296
2376
|
static ɵinj: i0.ɵɵInjectorDeclaration<BizyDirectivesModule>;
|
|
2297
2377
|
}
|
|
2298
2378
|
|
|
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,
|
|
2300
|
-
export type { IBizyBarLineChartData, IBizyBreadcrumb, IBizyCalendarEvent, IBizyHeatMapChartData, IBizyHeatMapChartRange, IBizyPieChartData, IBizyPopupResponse, IBizySearchPipeOptions, ILocale, LabelPosition };
|
|
2379
|
+
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, 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, 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, POPUP_PLACEMENT };
|
|
2380
|
+
export type { IBizyBarLineChartData, IBizyBreadcrumb, IBizyCalendarEvent, IBizyHeatMapChartData, IBizyHeatMapChartRange, IBizyHeatMapHighlightArea, IBizyHeatMapHighlightLine, IBizyHeatMapHighlightLineLabel, IBizyPieChartData, IBizyPopupResponse, IBizySearchPipeOptions, ILocale, LabelPosition };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bizy/core",
|
|
3
|
-
"version": "20.
|
|
3
|
+
"version": "20.10.0",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/cdk": "^20.0.0",
|
|
6
6
|
"@angular/common": "^20.0.0",
|
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
"flatpickr": "4.6.13",
|
|
22
22
|
"fuse.js": "7.1.0",
|
|
23
23
|
"html2canvas": "1.4.1",
|
|
24
|
+
"lottie-web": "5.13.0",
|
|
24
25
|
"ngx-device-detector": "10.0.2",
|
|
25
26
|
"validator": "13.15.15",
|
|
26
27
|
"rxjs": "^7.4.0",
|
package/styles/variables.css
CHANGED
|
@@ -32,12 +32,21 @@
|
|
|
32
32
|
|
|
33
33
|
--bizy-animation-timeout: 500ms;
|
|
34
34
|
|
|
35
|
-
--bizy-audio-player-
|
|
36
|
-
--bizy-audio-player-
|
|
37
|
-
--bizy-audio-player-
|
|
38
|
-
--bizy-audio-player-
|
|
39
|
-
--bizy-audio-player-
|
|
40
|
-
--bizy-audio-player-
|
|
35
|
+
--bizy-audio-player-width: 100%;
|
|
36
|
+
--bizy-audio-player-height: 2.6rem;
|
|
37
|
+
--bizy-audio-player-seek-before-width: 0;
|
|
38
|
+
--bizy-audio-player-seek-before-background-color: var(--bizy-info-color);
|
|
39
|
+
--bizy-audio-player-seek-slider-thumb-border: 0.1rem solid var(--bizy-info-color);;
|
|
40
|
+
--bizy-audio-player-seek-slider-thumb-background-color: #fff;
|
|
41
|
+
--bizy-audio-player-seek-slider-thumb-active-background-color: var(--bizy-light-info-color);
|
|
42
|
+
--bizy-audio-player-buffered-width: 0;
|
|
43
|
+
--bizy-audio-player-volume-before-width: 100%;
|
|
44
|
+
--bizy-audio-player-play-button-color: var(--bizy-info-color);
|
|
45
|
+
--bizy-audio-player-mute-button-color: var(--bizy-info-color);
|
|
46
|
+
--bizy-audio-player-playback-rate-button-color: var(--bizy-info-color);
|
|
47
|
+
--bizy-audio-player-playback-rate-button-hover-color: var(--bizy-light-info-color);
|
|
48
|
+
--bizy-audio-player-download-button-color: var(--bizy-info-color);
|
|
49
|
+
--bizy-audio-player-download-button-hover-color: var(--bizy-light-info-color);
|
|
41
50
|
|
|
42
51
|
--bizy-audio-recorder-record-button-height: 8rem;
|
|
43
52
|
--bizy-audio-recorder-record-button-width: 8rem;
|
|
@@ -140,10 +149,18 @@
|
|
|
140
149
|
--bizy-grid-column-width: 18rem;
|
|
141
150
|
--bizy-grid-gap: 0.6rem;
|
|
142
151
|
|
|
143
|
-
--bizy-heat-map-chart-out-of-range-color: #
|
|
144
|
-
--bizy-heat-map-chart-tooltip-color:
|
|
152
|
+
--bizy-heat-map-chart-out-of-range-color: #f3f3f3;
|
|
153
|
+
--bizy-heat-map-chart-tooltip-color: var(--bizy-dark-default-color);
|
|
145
154
|
--bizy-heat-map-chart-tooltip-background-color: #fff;
|
|
146
155
|
--bizy-heat-map-chart-tooltip-border-color: #fff;
|
|
156
|
+
--bizy-heat-map-chart-x-highlight-area-background-color: #c5dcf34d;
|
|
157
|
+
--bizy-heat-map-chart-x-highlight-area-border-color: var(--bizy-info-color);
|
|
158
|
+
--bizy-heat-map-chart-y-highlight-area-background-color: #f3c5c54d;
|
|
159
|
+
--bizy-heat-map-chart-y-highlight-area-border-color: var(--bizy-danger-color);
|
|
160
|
+
--bizy-heat-map-chart-x-highlight-line-color: var(--bizy-danger-color);
|
|
161
|
+
--bizy-heat-map-chart-x-highlight-line-label-color: var(--bizy-default-color);
|
|
162
|
+
--bizy-heat-map-chart-y-highlight-line-color: var(--bizy-danger-color);
|
|
163
|
+
--bizy-heat-map-chart-y-highlight-line-label-color: var(--bizy-default-color);
|
|
147
164
|
|
|
148
165
|
--bizy-input-background-color: #fff;
|
|
149
166
|
--bizy-input-focus-color: var(--bizy-info-color);
|