Skip to content

Commit

Permalink
feat(FEC-13728): Add 'MiniAudioPreset handling (#877)
Browse files Browse the repository at this point in the history
### Description of the Changes

Add 'MiniAudioPreset handling

#### Resolves FEC-13728

#### Related PR
kaltura/playkit-js-audio-player#18
kaltura/playkit-js-downloads#48

---------

Co-authored-by: JonathanTGold <jonathan.gold@86@gmail.com>
  • Loading branch information
JonathanTGold and JonathanTGold committed Apr 17, 2024
1 parent 60b7fca commit da9bbc3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/reducers/engine.ts
Expand Up @@ -59,7 +59,7 @@ export const types = {
export const initialState = {
isIdle: false,
isPlaying: false,
isPaused: false,
isPaused: true,
isSeeking: false,
isEnded: false,
isPlaybackStarted: false,
Expand Down
3 changes: 2 additions & 1 deletion src/reducers/shell.ts
Expand Up @@ -47,7 +47,8 @@ export const ReservedPresetNames = {
Error: 'Error',
Idle: 'Idle',
Img: 'Img',
Document: 'Document'
Document: 'Document',
MiniAudioUI: 'MiniAudioUI'
};

export const ReservedPresetAreas = {
Expand Down
4 changes: 4 additions & 0 deletions src/styles/exported.scss
Expand Up @@ -43,3 +43,7 @@ $tab-focus-color: var(--playkit-tab-focus-color);
$tooltip-background-color: var(--playkit-tooltip-background-color);
$tooltip-color: var(--playkit-tooltip-color);
$ads-color: var(--playkit-ads-color);
$playkit-background-color: var(--playkit-background-color);
$elevated-color: var(--playkit-elevated-color);
$paper-color: var(--playkit-paper-color);
$protection-color: var(--playkit-protection-color);

0 comments on commit da9bbc3

Please sign in to comment.