@snapcall/stream-ui 1.6.0 → 1.7.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/README.md CHANGED
@@ -65,7 +65,7 @@ Send a notification (tooltip), see [NotificationOptions](#notificationoptions) f
65
65
  element: HTMLElement;
66
66
  sharedURL?: string;
67
67
  audioTiles?: boolean;
68
- settingsShortcuts?: string[];
68
+ settingsShortcuts?: { id: string, displayType: 'icon' | 'full' }[];
69
69
  controls?: {
70
70
  microphone?: ControlSettings;
71
71
  camera?: ControlSettings;
@@ -98,7 +98,8 @@ Enable audio-only tiles.
98
98
  ##### Default value: `[]`
99
99
 
100
100
  Specified options are added as a small shortcut next to the menu button.
101
- Possible values are: `openNewTab`, `copyLink`, `quickConnect`, `settings` and `pip`.
101
+ Type are `full` or `icon`.
102
+ Possible id values are: `openNewTab`, `copyLink`, `quickConnect`, `settings` and `pip`.
102
103
 
103
104
  #### `controls`
104
105