@bizy/core 20.4.4 → 20.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 +547 -153
- package/fesm2022/bizy-core.mjs.map +1 -1
- package/index.d.ts +88 -28
- package/package.json +1 -1
- package/styles/variables.css +5 -2
package/index.d.ts
CHANGED
|
@@ -39,31 +39,71 @@ declare enum MIME_TYPE {
|
|
|
39
39
|
MPEG = "audio/mpeg",
|
|
40
40
|
WAV = "audio/wav"
|
|
41
41
|
}
|
|
42
|
+
declare enum MODE {
|
|
43
|
+
NORMAL = "NORMAL"
|
|
44
|
+
}
|
|
42
45
|
|
|
43
46
|
declare class BizyAudioPlayerComponent {
|
|
44
47
|
#private;
|
|
45
48
|
id: string;
|
|
46
|
-
|
|
49
|
+
enableLogs: boolean;
|
|
47
50
|
audioPlayerError: string;
|
|
48
51
|
showDownload: boolean;
|
|
49
52
|
autoplay: boolean;
|
|
50
53
|
disabled: boolean;
|
|
51
54
|
downloadURL: string;
|
|
52
55
|
downloadFileName: string;
|
|
56
|
+
onTrackPlayerRate: EventEmitter<string>;
|
|
53
57
|
onDownload: EventEmitter<void>;
|
|
58
|
+
canPlay: EventEmitter<Event>;
|
|
59
|
+
onPause: EventEmitter<Event>;
|
|
60
|
+
onEnded: EventEmitter<Event>;
|
|
61
|
+
onStalled: EventEmitter<Event>;
|
|
62
|
+
onAbort: EventEmitter<MediaError>;
|
|
63
|
+
onError: EventEmitter<MediaError>;
|
|
64
|
+
onEmptied: EventEmitter<Event>;
|
|
54
65
|
canPlayThrough: EventEmitter<Event>;
|
|
55
|
-
|
|
56
|
-
|
|
66
|
+
durationChange: EventEmitter<Event>;
|
|
67
|
+
onLoadedData: EventEmitter<Event>;
|
|
68
|
+
onLoadedMetadata: EventEmitter<Event>;
|
|
69
|
+
onLoadStart: EventEmitter<Event>;
|
|
70
|
+
onPlay: EventEmitter<Event>;
|
|
71
|
+
onPlaying: EventEmitter<Event>;
|
|
72
|
+
onProgress: EventEmitter<Event>;
|
|
73
|
+
onRateChange: EventEmitter<Event>;
|
|
74
|
+
onSeeked: EventEmitter<Event>;
|
|
75
|
+
onSeeking: EventEmitter<Event>;
|
|
76
|
+
onSuspend: EventEmitter<Event>;
|
|
77
|
+
onTimeUpdate: EventEmitter<Event>;
|
|
78
|
+
onVolumeChange: EventEmitter<Event>;
|
|
79
|
+
onWaiting: EventEmitter<Event>;
|
|
80
|
+
readonly MIME_TYPE: typeof MIME_TYPE;
|
|
81
|
+
readonly MODE: typeof MODE;
|
|
82
|
+
readonly BACKWARD_SECONDS = -15;
|
|
83
|
+
readonly FORWARD_SECONDS = 15;
|
|
84
|
+
_duration: number;
|
|
85
|
+
_currentTime: number;
|
|
86
|
+
_paused: boolean;
|
|
87
|
+
_mode: MODE;
|
|
57
88
|
_audioURL: string | null;
|
|
58
|
-
_ready: boolean;
|
|
59
89
|
_playbackRate: number;
|
|
60
|
-
|
|
90
|
+
_loading: boolean;
|
|
91
|
+
get duration(): number;
|
|
92
|
+
get currentTime(): number;
|
|
93
|
+
get paused(): boolean;
|
|
94
|
+
set audioURL(audioURL: string);
|
|
95
|
+
set mode(mode: MODE);
|
|
96
|
+
ngAfterViewInit(): void;
|
|
97
|
+
getNativeElement: () => any;
|
|
98
|
+
play(): Promise<void>;
|
|
99
|
+
pause(): Promise<void>;
|
|
100
|
+
stop(): Promise<void>;
|
|
101
|
+
seekTo(seconds: number): void;
|
|
61
102
|
_onTrackPlayerRate(): void;
|
|
62
103
|
_onDownload(): void;
|
|
63
|
-
getNativeElement: () => any;
|
|
64
104
|
ngOnDestroy(): void;
|
|
65
105
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyAudioPlayerComponent, never>;
|
|
66
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BizyAudioPlayerComponent, "bizy-audio-player", never, { "id": { "alias": "id"; "required": false; }; "
|
|
106
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BizyAudioPlayerComponent, "bizy-audio-player", never, { "id": { "alias": "id"; "required": false; }; "enableLogs": { "alias": "enableLogs"; "required": false; }; "audioPlayerError": { "alias": "audioPlayerError"; "required": false; }; "showDownload": { "alias": "showDownload"; "required": false; }; "autoplay": { "alias": "autoplay"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "downloadURL": { "alias": "downloadURL"; "required": false; }; "downloadFileName": { "alias": "downloadFileName"; "required": false; }; "audioURL": { "alias": "audioURL"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; }, { "onTrackPlayerRate": "onTrackPlayerRate"; "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"; "onRateChange": "onRateChange"; "onSeeked": "onSeeked"; "onSeeking": "onSeeking"; "onSuspend": "onSuspend"; "onTimeUpdate": "onTimeUpdate"; "onVolumeChange": "onVolumeChange"; "onWaiting": "onWaiting"; }, never, never, true, never>;
|
|
67
107
|
}
|
|
68
108
|
|
|
69
109
|
declare class BizyAudioPlayerModule {
|
|
@@ -97,23 +137,28 @@ interface IBizyBarLineChartData {
|
|
|
97
137
|
declare class BizyBarLineChartComponent implements OnDestroy, AfterViewInit {
|
|
98
138
|
#private;
|
|
99
139
|
resizeRef: HTMLElement | null;
|
|
100
|
-
tooltip:
|
|
140
|
+
tooltip: {
|
|
141
|
+
show?: boolean;
|
|
142
|
+
formatter?: (item: any) => string;
|
|
143
|
+
} | null;
|
|
101
144
|
download: {
|
|
145
|
+
show?: boolean;
|
|
102
146
|
label?: string;
|
|
103
147
|
name?: string;
|
|
104
148
|
} | null;
|
|
105
149
|
axisPointer: 'line' | 'cross';
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
150
|
+
xAxis: {
|
|
151
|
+
labels?: Array<string>;
|
|
152
|
+
formatter?: (item: any) => string;
|
|
153
|
+
} | null;
|
|
109
154
|
onDownload: EventEmitter<void>;
|
|
110
155
|
onSelect: EventEmitter<string>;
|
|
111
156
|
ngAfterViewInit(): void;
|
|
112
157
|
getNativeElement: () => any;
|
|
113
|
-
set data(data: Array<IBizyBarLineChartData>);
|
|
158
|
+
set data(data: Array<IBizyBarLineChartData> | null);
|
|
114
159
|
ngOnDestroy(): void;
|
|
115
160
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyBarLineChartComponent, never>;
|
|
116
|
-
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; }; "axisPointer": { "alias": "axisPointer"; "required": false; }; "
|
|
161
|
+
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; }; "axisPointer": { "alias": "axisPointer"; "required": false; }; "xAxis": { "alias": "xAxis"; "required": false; }; "data": { "alias": "data"; "required": false; }; }, { "onDownload": "onDownload"; "onSelect": "onSelect"; }, never, never, true, never>;
|
|
117
162
|
}
|
|
118
163
|
|
|
119
164
|
declare class BizyBarLineChartModule {
|
|
@@ -802,25 +847,32 @@ interface IBizyHeatMapChartRange {
|
|
|
802
847
|
declare class BizyHeatMapChartComponent implements OnDestroy, AfterViewInit {
|
|
803
848
|
#private;
|
|
804
849
|
resizeRef: HTMLElement | null;
|
|
805
|
-
tooltip:
|
|
806
|
-
|
|
850
|
+
tooltip: {
|
|
851
|
+
show?: boolean;
|
|
852
|
+
formatter?: (item: any) => string;
|
|
853
|
+
} | null;
|
|
807
854
|
download: {
|
|
855
|
+
show?: boolean;
|
|
808
856
|
label?: string;
|
|
809
857
|
name?: string;
|
|
810
858
|
} | null;
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
859
|
+
ranges: Array<IBizyHeatMapChartRange>;
|
|
860
|
+
xAxis: {
|
|
861
|
+
labels?: Array<string>;
|
|
862
|
+
formatter?: (item: any) => string;
|
|
863
|
+
} | null;
|
|
864
|
+
yAxis: {
|
|
865
|
+
labels?: Array<string>;
|
|
866
|
+
formatter?: (item: any) => string;
|
|
867
|
+
} | null;
|
|
816
868
|
onDownload: EventEmitter<void>;
|
|
817
869
|
onSelect: EventEmitter<string>;
|
|
818
870
|
ngAfterViewInit(): void;
|
|
819
871
|
getNativeElement: () => any;
|
|
820
|
-
set data(data: Array<IBizyHeatMapChartData>);
|
|
872
|
+
set data(data: Array<IBizyHeatMapChartData> | null);
|
|
821
873
|
ngOnDestroy(): void;
|
|
822
874
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyHeatMapChartComponent, never>;
|
|
823
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BizyHeatMapChartComponent, "bizy-heat-map-chart", never, { "resizeRef": { "alias": "resizeRef"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "
|
|
875
|
+
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>;
|
|
824
876
|
}
|
|
825
877
|
|
|
826
878
|
declare class BizyHeatMapChartModule {
|
|
@@ -920,7 +972,6 @@ interface IBizyPieChartData {
|
|
|
920
972
|
declare class BizyPieChartComponent {
|
|
921
973
|
#private;
|
|
922
974
|
resizeRef: HTMLElement | null;
|
|
923
|
-
tooltip: boolean;
|
|
924
975
|
centerLabel: string | null;
|
|
925
976
|
type: 'pie' | 'donut';
|
|
926
977
|
legend: {
|
|
@@ -932,19 +983,28 @@ declare class BizyPieChartComponent {
|
|
|
932
983
|
};
|
|
933
984
|
} | null;
|
|
934
985
|
download: {
|
|
986
|
+
show?: boolean;
|
|
935
987
|
label?: string;
|
|
936
988
|
name?: string;
|
|
937
989
|
} | null;
|
|
938
|
-
|
|
939
|
-
|
|
990
|
+
label: {
|
|
991
|
+
show?: boolean;
|
|
992
|
+
overflow?: 'break' | 'truncate';
|
|
993
|
+
line: boolean;
|
|
994
|
+
formatter?: (item: any) => string;
|
|
995
|
+
} | null;
|
|
996
|
+
tooltip: {
|
|
997
|
+
show?: boolean;
|
|
998
|
+
formatter?: (item: any) => string;
|
|
999
|
+
} | null;
|
|
940
1000
|
onSelect: EventEmitter<string>;
|
|
941
1001
|
onDownload: EventEmitter<void>;
|
|
942
1002
|
ngAfterViewInit(): void;
|
|
943
1003
|
getNativeElement: () => any;
|
|
944
|
-
set data(data: Array<IBizyPieChartData>);
|
|
1004
|
+
set data(data: Array<IBizyPieChartData> | null);
|
|
945
1005
|
ngOnDestroy(): void;
|
|
946
1006
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyPieChartComponent, never>;
|
|
947
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BizyPieChartComponent, "bizy-pie-chart", never, { "resizeRef": { "alias": "resizeRef"; "required": false; }; "
|
|
1007
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BizyPieChartComponent, "bizy-pie-chart", never, { "resizeRef": { "alias": "resizeRef"; "required": false; }; "centerLabel": { "alias": "centerLabel"; "required": false; }; "type": { "alias": "type"; "required": false; }; "legend": { "alias": "legend"; "required": false; }; "download": { "alias": "download"; "required": false; }; "label": { "alias": "label"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "data": { "alias": "data"; "required": false; }; }, { "onSelect": "onSelect"; "onDownload": "onDownload"; }, never, never, true, never>;
|
|
948
1008
|
}
|
|
949
1009
|
|
|
950
1010
|
declare class BizyPieChartModule {
|
|
@@ -2147,5 +2207,5 @@ declare class BizyDirectivesModule {
|
|
|
2147
2207
|
static ɵinj: i0.ɵɵInjectorDeclaration<BizyDirectivesModule>;
|
|
2148
2208
|
}
|
|
2149
2209
|
|
|
2150
|
-
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, 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 };
|
|
2210
|
+
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, 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 };
|
|
2151
2211
|
export type { IBizyBarLineChartData, IBizyBreadcrumb, IBizyCalendarEvent, IBizyHeatMapChartData, IBizyHeatMapChartRange, IBizyPieChartData, IBizyPopupResponse, IBizySearchPipeOptions, ILocale, LabelPosition };
|
package/package.json
CHANGED
package/styles/variables.css
CHANGED
|
@@ -32,8 +32,10 @@
|
|
|
32
32
|
|
|
33
33
|
--bizy-animation-timeout: 500ms;
|
|
34
34
|
|
|
35
|
-
--bizy-audio-player-
|
|
36
|
-
--bizy-audio-player-
|
|
35
|
+
--bizy-audio-player-min-width: 20rem;
|
|
36
|
+
--bizy-audio-player-max-width: 100%;
|
|
37
|
+
--bizy-audio-player-rate-button-background-color: var(--bizy-default-color);
|
|
38
|
+
--bizy-audio-player-rate-button-color: #fff;
|
|
37
39
|
--bizy-audio-player-download-button-background-color: var(--bizy-accent-color);
|
|
38
40
|
--bizy-audio-player-download-button-color: #fff;
|
|
39
41
|
|
|
@@ -72,6 +74,7 @@
|
|
|
72
74
|
--bizy-card-header-background-color: transparent;
|
|
73
75
|
--bizy-card-content-background-color: transparent;
|
|
74
76
|
--bizy-card-footer-background-color: transparent;
|
|
77
|
+
--bizy-card-row-gap: 0.3rem;
|
|
75
78
|
|
|
76
79
|
--bizy-calendar-event-color: var(--bizy-dark-default-color);
|
|
77
80
|
--bizy-calendar-event-delete-action-color: var(--bizy-danger-color);
|