@bizy/core 20.4.3 → 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 +561 -161
- package/fesm2022/bizy-core.mjs.map +1 -1
- package/index.d.ts +94 -37
- 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,24 +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: {
|
|
102
145
|
show?: boolean;
|
|
103
|
-
label
|
|
104
|
-
name
|
|
105
|
-
};
|
|
146
|
+
label?: string;
|
|
147
|
+
name?: string;
|
|
148
|
+
} | null;
|
|
106
149
|
axisPointer: 'line' | 'cross';
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
150
|
+
xAxis: {
|
|
151
|
+
labels?: Array<string>;
|
|
152
|
+
formatter?: (item: any) => string;
|
|
153
|
+
} | null;
|
|
110
154
|
onDownload: EventEmitter<void>;
|
|
111
155
|
onSelect: EventEmitter<string>;
|
|
112
156
|
ngAfterViewInit(): void;
|
|
113
157
|
getNativeElement: () => any;
|
|
114
|
-
set data(data: Array<IBizyBarLineChartData>);
|
|
158
|
+
set data(data: Array<IBizyBarLineChartData> | null);
|
|
115
159
|
ngOnDestroy(): void;
|
|
116
160
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyBarLineChartComponent, never>;
|
|
117
|
-
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>;
|
|
118
162
|
}
|
|
119
163
|
|
|
120
164
|
declare class BizyBarLineChartModule {
|
|
@@ -803,26 +847,32 @@ interface IBizyHeatMapChartRange {
|
|
|
803
847
|
declare class BizyHeatMapChartComponent implements OnDestroy, AfterViewInit {
|
|
804
848
|
#private;
|
|
805
849
|
resizeRef: HTMLElement | null;
|
|
806
|
-
tooltip:
|
|
807
|
-
|
|
850
|
+
tooltip: {
|
|
851
|
+
show?: boolean;
|
|
852
|
+
formatter?: (item: any) => string;
|
|
853
|
+
} | null;
|
|
808
854
|
download: {
|
|
809
855
|
show?: boolean;
|
|
810
|
-
label
|
|
811
|
-
name
|
|
812
|
-
};
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
856
|
+
label?: string;
|
|
857
|
+
name?: string;
|
|
858
|
+
} | null;
|
|
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;
|
|
818
868
|
onDownload: EventEmitter<void>;
|
|
819
869
|
onSelect: EventEmitter<string>;
|
|
820
870
|
ngAfterViewInit(): void;
|
|
821
871
|
getNativeElement: () => any;
|
|
822
|
-
set data(data: Array<IBizyHeatMapChartData>);
|
|
872
|
+
set data(data: Array<IBizyHeatMapChartData> | null);
|
|
823
873
|
ngOnDestroy(): void;
|
|
824
874
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyHeatMapChartComponent, never>;
|
|
825
|
-
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>;
|
|
826
876
|
}
|
|
827
877
|
|
|
828
878
|
declare class BizyHeatMapChartModule {
|
|
@@ -922,7 +972,6 @@ interface IBizyPieChartData {
|
|
|
922
972
|
declare class BizyPieChartComponent {
|
|
923
973
|
#private;
|
|
924
974
|
resizeRef: HTMLElement | null;
|
|
925
|
-
tooltip: boolean;
|
|
926
975
|
centerLabel: string | null;
|
|
927
976
|
type: 'pie' | 'donut';
|
|
928
977
|
legend: {
|
|
@@ -935,19 +984,27 @@ declare class BizyPieChartComponent {
|
|
|
935
984
|
} | null;
|
|
936
985
|
download: {
|
|
937
986
|
show?: boolean;
|
|
938
|
-
label
|
|
939
|
-
name
|
|
940
|
-
};
|
|
941
|
-
|
|
942
|
-
|
|
987
|
+
label?: string;
|
|
988
|
+
name?: string;
|
|
989
|
+
} | null;
|
|
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;
|
|
943
1000
|
onSelect: EventEmitter<string>;
|
|
944
1001
|
onDownload: EventEmitter<void>;
|
|
945
1002
|
ngAfterViewInit(): void;
|
|
946
1003
|
getNativeElement: () => any;
|
|
947
|
-
set data(data: Array<IBizyPieChartData>);
|
|
1004
|
+
set data(data: Array<IBizyPieChartData> | null);
|
|
948
1005
|
ngOnDestroy(): void;
|
|
949
1006
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyPieChartComponent, never>;
|
|
950
|
-
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>;
|
|
951
1008
|
}
|
|
952
1009
|
|
|
953
1010
|
declare class BizyPieChartModule {
|
|
@@ -2150,5 +2207,5 @@ declare class BizyDirectivesModule {
|
|
|
2150
2207
|
static ɵinj: i0.ɵɵInjectorDeclaration<BizyDirectivesModule>;
|
|
2151
2208
|
}
|
|
2152
2209
|
|
|
2153
|
-
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 };
|
|
2154
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);
|