Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions lib/js/src/manager/file/enums/StaticIconName.js
Original file line number Diff line number Diff line change
Expand Up @@ -122,12 +122,22 @@ class StaticIconName extends Enum {
/**
* Icon Name auxillary audio
* Gets the enum value for AUXILLARY_AUDIO
* @deprecated since version 1.3. Use AUXILIARY_AUDIO instead.
* @returns {String} - The enum value.
*/
static get AUXILLARY_AUDIO () {
return StaticIconName._MAP.AUXILLARY_AUDIO;
}

/**
* Icon Name auxiliary audio
* Gets the enum value for AUXILIARY_AUDIO
* @returns {String} - The enum value.
*/
static get AUXILIARY_AUDIO () {
return StaticIconName._MAP.AUXILIARY_AUDIO;
}

/**
* Icon Name back / return
* Gets the enum value for BACK
Expand Down Expand Up @@ -1659,6 +1669,7 @@ StaticIconName._MAP = Object.freeze({
'AUDIOBOOK_EPISODE': '0x83',
'AUDIOBOOK_NARRATOR': '0x82',
'AUXILLARY_AUDIO': '0x45',
'AUXILIARY_AUDIO': '0x45',
'BACK': '0x86',
'BATTERY_CAPACITY_0_OF_5': '0xF7',
'BATTERY_CAPACITY_1_OF_5': '0xF8',
Expand Down