bigbluebutton-html-plugin-sdk 0.0.22 → 0.0.24
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 +20 -7
- package/dist/cjs/core/api/BbbPluginSdk.d.ts +36 -0
- package/dist/cjs/core/api/BbbPluginSdk.js +90 -0
- package/dist/cjs/core/api/BbbPluginSdk.js.map +1 -0
- package/dist/cjs/core/api/types.d.ts +106 -0
- package/dist/cjs/core/api/types.js.map +1 -0
- package/dist/cjs/core/auxiliar/join-url/getter.d.ts +1 -0
- package/dist/cjs/core/auxiliar/join-url/getter.js +70 -0
- package/dist/cjs/core/auxiliar/join-url/getter.js.map +1 -0
- package/dist/cjs/core/auxiliar/join-url/types.d.ts +1 -0
- package/dist/cjs/{data-consumption/types/presentation.js → core/auxiliar/join-url/types.js} +1 -1
- package/dist/cjs/core/auxiliar/join-url/types.js.map +1 -0
- package/dist/cjs/core/auxiliar/session-token/getter.d.ts +1 -0
- package/dist/cjs/core/auxiliar/session-token/getter.js +9 -0
- package/dist/cjs/core/auxiliar/session-token/getter.js.map +1 -0
- package/dist/cjs/core/auxiliar/session-token/types.d.ts +1 -0
- package/dist/cjs/core/auxiliar/session-token/types.js +3 -0
- package/dist/cjs/core/auxiliar/session-token/types.js.map +1 -0
- package/dist/cjs/core/enum.d.ts +12 -0
- package/dist/cjs/core/enum.js +18 -0
- package/dist/cjs/core/enum.js.map +1 -0
- package/dist/cjs/core/index.d.ts +3 -1
- package/dist/cjs/core/index.js +3 -15
- package/dist/cjs/core/index.js.map +1 -1
- package/dist/cjs/core/types.d.ts +33 -0
- package/dist/cjs/core/types.js +3 -0
- package/dist/cjs/core/types.js.map +1 -0
- package/dist/cjs/data-channel/enums.d.ts +10 -0
- package/dist/cjs/data-channel/enums.js +16 -0
- package/dist/cjs/data-channel/enums.js.map +1 -0
- package/dist/cjs/data-channel/hooks.d.ts +3 -0
- package/dist/cjs/data-channel/{useDatachannel.js → hooks.js} +13 -13
- package/dist/cjs/data-channel/hooks.js.map +1 -0
- package/dist/cjs/data-channel/index.d.ts +2 -2
- package/dist/cjs/data-channel/index.js +3 -16
- package/dist/cjs/data-channel/index.js.map +1 -1
- package/dist/cjs/data-channel/types.d.ts +15 -5
- package/dist/cjs/data-consumption/domain/presentations/current-presentation/hooks.d.ts +2 -0
- package/dist/cjs/data-consumption/domain/presentations/current-presentation/hooks.js +8 -0
- package/dist/cjs/data-consumption/domain/presentations/current-presentation/hooks.js.map +1 -0
- package/dist/cjs/data-consumption/{types/presentation.d.ts → domain/presentations/current-presentation/types.d.ts} +3 -1
- package/dist/cjs/data-consumption/domain/presentations/current-presentation/types.js +3 -0
- package/dist/cjs/data-consumption/domain/presentations/current-presentation/types.js.map +1 -0
- package/dist/cjs/data-consumption/domain/presentations/index.d.ts +1 -0
- package/dist/cjs/data-consumption/domain/presentations/index.js +3 -0
- package/dist/cjs/data-consumption/domain/presentations/index.js.map +1 -0
- package/dist/cjs/data-consumption/domain/shared/custom-subscription/hooks.d.ts +2 -0
- package/dist/cjs/data-consumption/domain/shared/custom-subscription/hooks.js +11 -0
- package/dist/cjs/data-consumption/domain/shared/custom-subscription/hooks.js.map +1 -0
- package/dist/cjs/data-consumption/domain/shared/custom-subscription/types.d.ts +9 -0
- package/dist/cjs/data-consumption/domain/shared/custom-subscription/types.js +3 -0
- package/dist/cjs/data-consumption/domain/shared/custom-subscription/types.js.map +1 -0
- package/dist/cjs/data-consumption/domain/shared/index.d.ts +1 -0
- package/dist/cjs/data-consumption/domain/shared/index.js +3 -0
- package/dist/cjs/data-consumption/domain/shared/index.js.map +1 -0
- package/dist/cjs/data-consumption/domain/users/current-user/hooks.d.ts +2 -0
- package/dist/cjs/data-consumption/domain/users/current-user/hooks.js +8 -0
- package/dist/cjs/data-consumption/domain/users/current-user/hooks.js.map +1 -0
- package/dist/cjs/data-consumption/domain/users/current-user/types.d.ts +8 -0
- package/dist/cjs/data-consumption/domain/users/current-user/types.js +3 -0
- package/dist/cjs/data-consumption/domain/users/current-user/types.js.map +1 -0
- package/dist/cjs/data-consumption/domain/users/index.d.ts +3 -0
- package/dist/cjs/data-consumption/domain/users/index.js +3 -0
- package/dist/cjs/data-consumption/domain/users/index.js.map +1 -0
- package/dist/cjs/data-consumption/domain/users/loaded-user-list/hooks.d.ts +2 -0
- package/dist/cjs/data-consumption/domain/users/loaded-user-list/hooks.js +8 -0
- package/dist/cjs/data-consumption/domain/users/loaded-user-list/hooks.js.map +1 -0
- package/dist/cjs/data-consumption/domain/users/loaded-user-list/types.d.ts +7 -0
- package/dist/cjs/data-consumption/domain/users/loaded-user-list/types.js +3 -0
- package/dist/cjs/data-consumption/domain/users/loaded-user-list/types.js.map +1 -0
- package/dist/cjs/data-consumption/domain/users/users-basic-info/hooks.d.ts +2 -0
- package/dist/cjs/data-consumption/domain/users/users-basic-info/hooks.js +8 -0
- package/dist/cjs/data-consumption/domain/users/users-basic-info/hooks.js.map +1 -0
- package/dist/cjs/data-consumption/domain/users/users-basic-info/queries.d.ts +1 -0
- package/dist/cjs/data-consumption/domain/users/users-basic-info/queries.js +5 -0
- package/dist/cjs/data-consumption/domain/users/users-basic-info/queries.js.map +1 -0
- package/dist/cjs/data-consumption/domain/users/users-basic-info/types.d.ts +10 -0
- package/dist/cjs/data-consumption/domain/users/users-basic-info/types.js +3 -0
- package/dist/cjs/data-consumption/domain/users/users-basic-info/types.js.map +1 -0
- package/dist/cjs/data-consumption/factory/hookCreator.d.ts +4 -0
- package/dist/cjs/data-consumption/factory/hookCreator.js +84 -0
- package/dist/cjs/data-consumption/factory/hookCreator.js.map +1 -0
- package/dist/cjs/data-consumption/index.d.ts +3 -0
- package/dist/cjs/data-consumption/{hooks/index.js → index.js} +3 -3
- package/dist/cjs/data-consumption/index.js.map +1 -0
- package/dist/cjs/data-consumption/utils.d.ts +6 -0
- package/dist/cjs/data-consumption/utils.js +25 -0
- package/dist/cjs/data-consumption/utils.js.map +1 -0
- package/dist/cjs/extensible-areas/action-button-dropdown-item/component.d.ts +30 -0
- package/dist/cjs/extensible-areas/action-button-dropdown-item/component.js +47 -0
- package/dist/cjs/extensible-areas/action-button-dropdown-item/component.js.map +1 -0
- package/dist/cjs/extensible-areas/action-button-dropdown-item/enums.d.ts +4 -0
- package/dist/cjs/extensible-areas/action-button-dropdown-item/enums.js +10 -0
- package/dist/cjs/extensible-areas/action-button-dropdown-item/enums.js.map +1 -0
- package/dist/cjs/extensible-areas/action-button-dropdown-item/index.d.ts +2 -0
- package/dist/cjs/extensible-areas/action-button-dropdown-item/index.js +7 -0
- package/dist/cjs/extensible-areas/action-button-dropdown-item/index.js.map +1 -0
- package/dist/cjs/extensible-areas/action-button-dropdown-item/types.d.ts +13 -0
- package/dist/cjs/extensible-areas/action-button-dropdown-item/types.js +3 -0
- package/dist/cjs/extensible-areas/action-button-dropdown-item/types.js.map +1 -0
- package/dist/cjs/extensible-areas/actions-bar-item/component.d.ts +38 -0
- package/dist/cjs/extensible-areas/actions-bar-item/component.js +56 -0
- package/dist/cjs/extensible-areas/actions-bar-item/component.js.map +1 -0
- package/dist/cjs/extensible-areas/actions-bar-item/enums.d.ts +11 -0
- package/dist/cjs/extensible-areas/actions-bar-item/enums.js +18 -0
- package/dist/cjs/extensible-areas/actions-bar-item/enums.js.map +1 -0
- package/dist/cjs/extensible-areas/actions-bar-item/index.d.ts +3 -0
- package/dist/cjs/extensible-areas/actions-bar-item/index.js +9 -0
- package/dist/cjs/extensible-areas/actions-bar-item/index.js.map +1 -0
- package/dist/cjs/extensible-areas/actions-bar-item/types.d.ts +17 -0
- package/dist/cjs/extensible-areas/actions-bar-item/types.js +3 -0
- package/dist/cjs/extensible-areas/actions-bar-item/types.js.map +1 -0
- package/dist/cjs/extensible-areas/audio-settings-dropdown-item/component.d.ts +36 -0
- package/dist/cjs/extensible-areas/audio-settings-dropdown-item/component.js +53 -0
- package/dist/cjs/extensible-areas/audio-settings-dropdown-item/component.js.map +1 -0
- package/dist/cjs/extensible-areas/audio-settings-dropdown-item/enums.d.ts +4 -0
- package/dist/cjs/extensible-areas/audio-settings-dropdown-item/enums.js +10 -0
- package/dist/cjs/extensible-areas/audio-settings-dropdown-item/enums.js.map +1 -0
- package/dist/cjs/extensible-areas/audio-settings-dropdown-item/index.d.ts +2 -0
- package/dist/cjs/extensible-areas/audio-settings-dropdown-item/index.js +7 -0
- package/dist/cjs/extensible-areas/audio-settings-dropdown-item/index.js.map +1 -0
- package/dist/cjs/extensible-areas/audio-settings-dropdown-item/types.d.ts +15 -0
- package/dist/cjs/extensible-areas/audio-settings-dropdown-item/types.js +3 -0
- package/dist/cjs/extensible-areas/audio-settings-dropdown-item/types.js.map +1 -0
- package/dist/cjs/extensible-areas/base.d.ts +19 -0
- package/dist/cjs/{data-consumption/types/user.js → extensible-areas/base.js} +1 -1
- package/dist/cjs/extensible-areas/base.js.map +1 -0
- package/dist/cjs/extensible-areas/camera-settings-dropdown-item/component.d.ts +36 -0
- package/dist/cjs/extensible-areas/camera-settings-dropdown-item/component.js +53 -0
- package/dist/cjs/extensible-areas/camera-settings-dropdown-item/component.js.map +1 -0
- package/dist/cjs/extensible-areas/camera-settings-dropdown-item/enums.d.ts +4 -0
- package/dist/cjs/extensible-areas/camera-settings-dropdown-item/enums.js +10 -0
- package/dist/cjs/extensible-areas/camera-settings-dropdown-item/enums.js.map +1 -0
- package/dist/cjs/extensible-areas/camera-settings-dropdown-item/index.d.ts +2 -0
- package/dist/cjs/extensible-areas/camera-settings-dropdown-item/index.js +7 -0
- package/dist/cjs/extensible-areas/camera-settings-dropdown-item/index.js.map +1 -0
- package/dist/cjs/extensible-areas/camera-settings-dropdown-item/types.d.ts +15 -0
- package/dist/cjs/extensible-areas/camera-settings-dropdown-item/types.js +3 -0
- package/dist/cjs/extensible-areas/camera-settings-dropdown-item/types.js.map +1 -0
- package/dist/cjs/extensible-areas/index.d.ts +11 -0
- package/dist/cjs/{types → extensible-areas}/index.js +11 -3
- package/dist/cjs/extensible-areas/index.js.map +1 -0
- package/dist/cjs/extensible-areas/nav-bar-item/component.d.ts +52 -0
- package/dist/cjs/extensible-areas/nav-bar-item/component.js +70 -0
- package/dist/cjs/extensible-areas/nav-bar-item/component.js.map +1 -0
- package/dist/cjs/extensible-areas/nav-bar-item/enums.d.ts +12 -0
- package/dist/cjs/extensible-areas/nav-bar-item/enums.js +19 -0
- package/dist/cjs/extensible-areas/nav-bar-item/enums.js.map +1 -0
- package/dist/cjs/extensible-areas/nav-bar-item/index.d.ts +3 -0
- package/dist/cjs/extensible-areas/nav-bar-item/index.js +9 -0
- package/dist/cjs/extensible-areas/nav-bar-item/index.js.map +1 -0
- package/dist/cjs/extensible-areas/nav-bar-item/types.d.ts +20 -0
- package/dist/cjs/extensible-areas/nav-bar-item/types.js +3 -0
- package/dist/cjs/extensible-areas/nav-bar-item/types.js.map +1 -0
- package/dist/cjs/extensible-areas/options-dropdown-item/component.d.ts +33 -0
- package/dist/cjs/extensible-areas/options-dropdown-item/component.js +50 -0
- package/dist/cjs/extensible-areas/options-dropdown-item/component.js.map +1 -0
- package/dist/cjs/extensible-areas/options-dropdown-item/enums.d.ts +4 -0
- package/dist/cjs/extensible-areas/options-dropdown-item/enums.js +10 -0
- package/dist/cjs/extensible-areas/options-dropdown-item/enums.js.map +1 -0
- package/dist/cjs/extensible-areas/options-dropdown-item/index.d.ts +2 -0
- package/dist/cjs/extensible-areas/options-dropdown-item/index.js +7 -0
- package/dist/cjs/extensible-areas/options-dropdown-item/index.js.map +1 -0
- package/dist/cjs/extensible-areas/options-dropdown-item/types.d.ts +15 -0
- package/dist/cjs/extensible-areas/options-dropdown-item/types.js +3 -0
- package/dist/cjs/extensible-areas/options-dropdown-item/types.js.map +1 -0
- package/dist/cjs/extensible-areas/presentation-dropdown-item/component.d.ts +34 -0
- package/dist/cjs/extensible-areas/presentation-dropdown-item/component.js +51 -0
- package/dist/cjs/extensible-areas/presentation-dropdown-item/component.js.map +1 -0
- package/dist/cjs/extensible-areas/presentation-dropdown-item/enums.d.ts +4 -0
- package/dist/cjs/extensible-areas/presentation-dropdown-item/enums.js +10 -0
- package/dist/cjs/extensible-areas/presentation-dropdown-item/enums.js.map +1 -0
- package/dist/cjs/extensible-areas/presentation-dropdown-item/index.d.ts +2 -0
- package/dist/cjs/extensible-areas/presentation-dropdown-item/index.js +7 -0
- package/dist/cjs/extensible-areas/presentation-dropdown-item/index.js.map +1 -0
- package/dist/cjs/extensible-areas/presentation-dropdown-item/types.d.ts +15 -0
- package/dist/cjs/extensible-areas/presentation-dropdown-item/types.js +3 -0
- package/dist/cjs/extensible-areas/presentation-dropdown-item/types.js.map +1 -0
- package/dist/cjs/extensible-areas/presentation-toolbar-item/component.d.ts +45 -0
- package/dist/cjs/extensible-areas/presentation-toolbar-item/component.js +68 -0
- package/dist/cjs/extensible-areas/presentation-toolbar-item/component.js.map +1 -0
- package/dist/cjs/extensible-areas/presentation-toolbar-item/enums.d.ts +5 -0
- package/dist/cjs/extensible-areas/presentation-toolbar-item/enums.js +11 -0
- package/dist/cjs/extensible-areas/presentation-toolbar-item/enums.js.map +1 -0
- package/dist/cjs/extensible-areas/presentation-toolbar-item/index.d.ts +2 -0
- package/dist/cjs/extensible-areas/presentation-toolbar-item/index.js +8 -0
- package/dist/cjs/extensible-areas/presentation-toolbar-item/index.js.map +1 -0
- package/dist/cjs/extensible-areas/presentation-toolbar-item/types.d.ts +11 -0
- package/dist/cjs/extensible-areas/presentation-toolbar-item/types.js +3 -0
- package/dist/cjs/extensible-areas/presentation-toolbar-item/types.js.map +1 -0
- package/dist/cjs/extensible-areas/user-camera-dropdown-item/component.d.ts +33 -0
- package/dist/cjs/extensible-areas/user-camera-dropdown-item/component.js +50 -0
- package/dist/cjs/extensible-areas/user-camera-dropdown-item/component.js.map +1 -0
- package/dist/cjs/extensible-areas/user-camera-dropdown-item/enums.d.ts +4 -0
- package/dist/cjs/extensible-areas/user-camera-dropdown-item/enums.js +10 -0
- package/dist/cjs/extensible-areas/user-camera-dropdown-item/enums.js.map +1 -0
- package/dist/cjs/extensible-areas/user-camera-dropdown-item/index.d.ts +2 -0
- package/dist/cjs/extensible-areas/user-camera-dropdown-item/index.js +7 -0
- package/dist/cjs/extensible-areas/user-camera-dropdown-item/index.js.map +1 -0
- package/dist/cjs/extensible-areas/user-camera-dropdown-item/types.d.ts +14 -0
- package/dist/cjs/extensible-areas/user-camera-dropdown-item/types.js +3 -0
- package/dist/cjs/extensible-areas/user-camera-dropdown-item/types.js.map +1 -0
- package/dist/cjs/extensible-areas/user-list-dropdown-item/component.d.ts +72 -0
- package/dist/cjs/extensible-areas/user-list-dropdown-item/component.js +97 -0
- package/dist/cjs/extensible-areas/user-list-dropdown-item/component.js.map +1 -0
- package/dist/cjs/extensible-areas/user-list-dropdown-item/enums.d.ts +5 -0
- package/dist/cjs/extensible-areas/user-list-dropdown-item/enums.js +11 -0
- package/dist/cjs/extensible-areas/user-list-dropdown-item/enums.js.map +1 -0
- package/dist/cjs/extensible-areas/user-list-dropdown-item/index.d.ts +2 -0
- package/dist/cjs/extensible-areas/user-list-dropdown-item/index.js +8 -0
- package/dist/cjs/extensible-areas/user-list-dropdown-item/index.js.map +1 -0
- package/dist/cjs/extensible-areas/user-list-dropdown-item/types.d.ts +30 -0
- package/dist/cjs/extensible-areas/user-list-dropdown-item/types.js +3 -0
- package/dist/cjs/extensible-areas/user-list-dropdown-item/types.js.map +1 -0
- package/dist/cjs/extensible-areas/user-list-item-additional-information/component.d.ts +42 -0
- package/dist/cjs/extensible-areas/user-list-item-additional-information/component.js +60 -0
- package/dist/cjs/extensible-areas/user-list-item-additional-information/component.js.map +1 -0
- package/dist/cjs/extensible-areas/user-list-item-additional-information/enums.d.ts +4 -0
- package/dist/cjs/extensible-areas/user-list-item-additional-information/enums.js +10 -0
- package/dist/cjs/extensible-areas/user-list-item-additional-information/enums.js.map +1 -0
- package/dist/cjs/extensible-areas/user-list-item-additional-information/index.d.ts +2 -0
- package/dist/cjs/extensible-areas/user-list-item-additional-information/index.js +7 -0
- package/dist/cjs/extensible-areas/user-list-item-additional-information/index.js.map +1 -0
- package/dist/cjs/extensible-areas/user-list-item-additional-information/types.d.ts +21 -0
- package/dist/cjs/extensible-areas/user-list-item-additional-information/types.js +3 -0
- package/dist/cjs/extensible-areas/user-list-item-additional-information/types.js.map +1 -0
- package/dist/cjs/index.d.ts +2 -3
- package/dist/cjs/index.js +2 -3
- package/dist/cjs/index.js.map +1 -1
- package/package.json +6 -3
- package/dist/cjs/core/getPluginApi.d.ts +0 -4
- package/dist/cjs/core/getPluginApi.js +0 -40
- package/dist/cjs/core/getPluginApi.js.map +0 -1
- package/dist/cjs/data-channel/useDatachannel.d.ts +0 -4
- package/dist/cjs/data-channel/useDatachannel.js.map +0 -1
- package/dist/cjs/data-consumption/hooks/index.d.ts +0 -3
- package/dist/cjs/data-consumption/hooks/index.js.map +0 -1
- package/dist/cjs/data-consumption/hooks/presentation.d.ts +0 -3
- package/dist/cjs/data-consumption/hooks/presentation.js +0 -28
- package/dist/cjs/data-consumption/hooks/presentation.js.map +0 -1
- package/dist/cjs/data-consumption/hooks/useUsersOverview/index.d.ts +0 -2
- package/dist/cjs/data-consumption/hooks/useUsersOverview/index.js +0 -19
- package/dist/cjs/data-consumption/hooks/useUsersOverview/index.js.map +0 -1
- package/dist/cjs/data-consumption/hooks/useUsersOverview/types.d.ts +0 -5
- package/dist/cjs/data-consumption/hooks/useUsersOverview/types.js.map +0 -1
- package/dist/cjs/data-consumption/hooks/useUsersOverview/useUsersOverview.d.ts +0 -2
- package/dist/cjs/data-consumption/hooks/useUsersOverview/useUsersOverview.js +0 -28
- package/dist/cjs/data-consumption/hooks/useUsersOverview/useUsersOverview.js.map +0 -1
- package/dist/cjs/data-consumption/hooks/user.d.ts +0 -4
- package/dist/cjs/data-consumption/hooks/user.js +0 -50
- package/dist/cjs/data-consumption/hooks/user.js.map +0 -1
- package/dist/cjs/data-consumption/types/presentation.js.map +0 -1
- package/dist/cjs/data-consumption/types/user.d.ts +0 -62
- package/dist/cjs/data-consumption/types/user.js.map +0 -1
- package/dist/cjs/enums.d.ts +0 -80
- package/dist/cjs/enums.js +0 -112
- package/dist/cjs/enums.js.map +0 -1
- package/dist/cjs/types/common.d.ts +0 -392
- package/dist/cjs/types/common.js +0 -372
- package/dist/cjs/types/common.js.map +0 -1
- package/dist/cjs/types/index.d.ts +0 -3
- package/dist/cjs/types/index.js.map +0 -1
- /package/dist/cjs/{data-consumption/hooks/useUsersOverview → core/api}/types.js +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../../src/extensible-areas/action-button-dropdown-item/types.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { ActionsBarPosition, ActionsBarItemType } from './enums';
|
|
2
|
+
import { ActionsBarItem, ActionsBarButtonProps, ActionsBarSeparatorProps } from './types';
|
|
3
|
+
export declare class ActionsBarButton implements ActionsBarItem {
|
|
4
|
+
id: string;
|
|
5
|
+
type: ActionsBarItemType;
|
|
6
|
+
icon: string;
|
|
7
|
+
tooltip: string;
|
|
8
|
+
position: ActionsBarPosition;
|
|
9
|
+
onClick: () => void;
|
|
10
|
+
/**
|
|
11
|
+
* Returns object to be used in the setter for action bar. In this case,
|
|
12
|
+
* a button.
|
|
13
|
+
*
|
|
14
|
+
* @param icon - icon to be used in the button for the action bar
|
|
15
|
+
* @param tooltip - tooltip to be displayed when hovering the button
|
|
16
|
+
* @param onClick - function to be called when clicking the button
|
|
17
|
+
* @param position - position that this button will be displayed, see {@link ActionsBarPosition}
|
|
18
|
+
*
|
|
19
|
+
* @returns Object that will be interpreted by the core of Bigbluebutton (HTML5)
|
|
20
|
+
*/
|
|
21
|
+
constructor({ icon, tooltip, onClick, position, }: ActionsBarButtonProps);
|
|
22
|
+
setItemId: (id: string) => void;
|
|
23
|
+
}
|
|
24
|
+
export declare class ActionsBarSeparator implements ActionsBarItem {
|
|
25
|
+
position: ActionsBarPosition;
|
|
26
|
+
id: string;
|
|
27
|
+
type: ActionsBarItemType;
|
|
28
|
+
/**
|
|
29
|
+
* Returns object to be used in the setter for action bar. In this case,
|
|
30
|
+
* a separator.
|
|
31
|
+
*
|
|
32
|
+
* @param position - position that this button will be displayed, see {@link ActionsBarPosition}
|
|
33
|
+
*
|
|
34
|
+
* @returns Object that will be interpreted by the core of Bigbluebutton (HTML5)
|
|
35
|
+
*/
|
|
36
|
+
constructor({ position, }: ActionsBarSeparatorProps);
|
|
37
|
+
setItemId: (id: string) => void;
|
|
38
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ActionsBarSeparator = exports.ActionsBarButton = void 0;
|
|
4
|
+
var enums_1 = require("./enums");
|
|
5
|
+
// ActionsBarItem Extensible Area
|
|
6
|
+
var ActionsBarButton = /** @class */ (function () {
|
|
7
|
+
/**
|
|
8
|
+
* Returns object to be used in the setter for action bar. In this case,
|
|
9
|
+
* a button.
|
|
10
|
+
*
|
|
11
|
+
* @param icon - icon to be used in the button for the action bar
|
|
12
|
+
* @param tooltip - tooltip to be displayed when hovering the button
|
|
13
|
+
* @param onClick - function to be called when clicking the button
|
|
14
|
+
* @param position - position that this button will be displayed, see {@link ActionsBarPosition}
|
|
15
|
+
*
|
|
16
|
+
* @returns Object that will be interpreted by the core of Bigbluebutton (HTML5)
|
|
17
|
+
*/
|
|
18
|
+
function ActionsBarButton(_a) {
|
|
19
|
+
var _b = _a.icon, icon = _b === void 0 ? '' : _b, _c = _a.tooltip, tooltip = _c === void 0 ? '' : _c, _d = _a.onClick, onClick = _d === void 0 ? function () { } : _d, _e = _a.position, position = _e === void 0 ? enums_1.ActionsBarPosition.RIGHT : _e;
|
|
20
|
+
var _this = this;
|
|
21
|
+
this.id = '';
|
|
22
|
+
this.setItemId = function (id) {
|
|
23
|
+
_this.id = "ActionsBarButton_".concat(id);
|
|
24
|
+
};
|
|
25
|
+
this.icon = icon;
|
|
26
|
+
this.tooltip = tooltip;
|
|
27
|
+
this.onClick = onClick;
|
|
28
|
+
this.position = position;
|
|
29
|
+
this.type = enums_1.ActionsBarItemType.BUTTON;
|
|
30
|
+
}
|
|
31
|
+
return ActionsBarButton;
|
|
32
|
+
}());
|
|
33
|
+
exports.ActionsBarButton = ActionsBarButton;
|
|
34
|
+
var ActionsBarSeparator = /** @class */ (function () {
|
|
35
|
+
/**
|
|
36
|
+
* Returns object to be used in the setter for action bar. In this case,
|
|
37
|
+
* a separator.
|
|
38
|
+
*
|
|
39
|
+
* @param position - position that this button will be displayed, see {@link ActionsBarPosition}
|
|
40
|
+
*
|
|
41
|
+
* @returns Object that will be interpreted by the core of Bigbluebutton (HTML5)
|
|
42
|
+
*/
|
|
43
|
+
function ActionsBarSeparator(_a) {
|
|
44
|
+
var _b = _a.position, position = _b === void 0 ? enums_1.ActionsBarPosition.RIGHT : _b;
|
|
45
|
+
var _this = this;
|
|
46
|
+
this.id = '';
|
|
47
|
+
this.setItemId = function (id) {
|
|
48
|
+
_this.id = "ActionsBarSeparator_".concat(id);
|
|
49
|
+
};
|
|
50
|
+
this.position = position;
|
|
51
|
+
this.type = enums_1.ActionsBarItemType.SEPARATOR;
|
|
52
|
+
}
|
|
53
|
+
return ActionsBarSeparator;
|
|
54
|
+
}());
|
|
55
|
+
exports.ActionsBarSeparator = ActionsBarSeparator;
|
|
56
|
+
//# sourceMappingURL=component.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"component.js","sourceRoot":"","sources":["../../../../src/extensible-areas/actions-bar-item/component.ts"],"names":[],"mappings":";;;AAAA,iCAAiE;AAKjE,iCAAiC;AAEjC;IAaE;;;;;;;;;;OAUG;IACH,0BAAY,EAEY;YADtB,YAAS,EAAT,IAAI,mBAAG,EAAE,KAAA,EAAE,eAAY,EAAZ,OAAO,mBAAG,EAAE,KAAA,EAAE,eAAkB,EAAlB,OAAO,mBAAG,cAAO,CAAC,KAAA,EAAE,gBAAmC,EAAnC,QAAQ,mBAAG,0BAAkB,CAAC,KAAK,KAAA;QADlF,iBAQC;QA/BD,OAAE,GAAW,EAAE,CAAC;QAiChB,cAAS,GAAyB,UAAC,EAAU;YAC3C,KAAI,CAAC,EAAE,GAAG,2BAAoB,EAAE,CAAE,CAAC;QACrC,CAAC,CAAC;QATA,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;QACjB,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;QACvB,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;QACvB,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;QACzB,IAAI,CAAC,IAAI,GAAG,0BAAkB,CAAC,MAAM,CAAC;IACxC,CAAC;IAKH,uBAAC;AAAD,CAAC,AArCD,IAqCC;AArCY,4CAAgB;AAuC7B;IAOE;;;;;;;OAOG;IACH,6BAAY,EAEe;YADzB,gBAAmC,EAAnC,QAAQ,mBAAG,0BAAkB,CAAC,KAAK,KAAA;QADrC,iBAKC;QAjBD,OAAE,GAAW,EAAE,CAAC;QAmBhB,cAAS,GAAyB,UAAC,EAAU;YAC3C,KAAI,CAAC,EAAE,GAAG,8BAAuB,EAAE,CAAE,CAAC;QACxC,CAAC,CAAC;QANA,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;QACzB,IAAI,CAAC,IAAI,GAAG,0BAAkB,CAAC,SAAS,CAAC;IAC3C,CAAC;IAKH,0BAAC;AAAD,CAAC,AAzBD,IAyBC;AAzBY,kDAAmB"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export declare enum ActionsBarItemType {
|
|
2
|
+
BUTTON = "ACTIONS_BAR_BUTTON",
|
|
3
|
+
SEPARATOR = "ACTIONS_BAR_SEPARATOR"
|
|
4
|
+
}
|
|
5
|
+
/**
|
|
6
|
+
* Enum with the position to insert the actions bar item (Separator or Button)
|
|
7
|
+
*/
|
|
8
|
+
export declare enum ActionsBarPosition {
|
|
9
|
+
LEFT = "left",
|
|
10
|
+
RIGHT = "right"
|
|
11
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ActionsBarPosition = exports.ActionsBarItemType = void 0;
|
|
4
|
+
// Action bar items types:
|
|
5
|
+
var ActionsBarItemType;
|
|
6
|
+
(function (ActionsBarItemType) {
|
|
7
|
+
ActionsBarItemType["BUTTON"] = "ACTIONS_BAR_BUTTON";
|
|
8
|
+
ActionsBarItemType["SEPARATOR"] = "ACTIONS_BAR_SEPARATOR";
|
|
9
|
+
})(ActionsBarItemType || (exports.ActionsBarItemType = ActionsBarItemType = {}));
|
|
10
|
+
/**
|
|
11
|
+
* Enum with the position to insert the actions bar item (Separator or Button)
|
|
12
|
+
*/
|
|
13
|
+
var ActionsBarPosition;
|
|
14
|
+
(function (ActionsBarPosition) {
|
|
15
|
+
ActionsBarPosition["LEFT"] = "left";
|
|
16
|
+
ActionsBarPosition["RIGHT"] = "right";
|
|
17
|
+
})(ActionsBarPosition || (exports.ActionsBarPosition = ActionsBarPosition = {}));
|
|
18
|
+
//# sourceMappingURL=enums.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"enums.js","sourceRoot":"","sources":["../../../../src/extensible-areas/actions-bar-item/enums.ts"],"names":[],"mappings":";;;AAAA,0BAA0B;AAC1B,IAAY,kBAGX;AAHD,WAAY,kBAAkB;IAC5B,mDAA6B,CAAA;IAC7B,yDAAmC,CAAA;AACrC,CAAC,EAHW,kBAAkB,kCAAlB,kBAAkB,QAG7B;AAED;;GAEG;AACH,IAAY,kBAGX;AAHD,WAAY,kBAAkB;IAC5B,mCAAa,CAAA;IACb,qCAAe,CAAA;AACjB,CAAC,EAHW,kBAAkB,kCAAlB,kBAAkB,QAG7B"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ActionsBarPosition = exports.ActionsBarSeparator = exports.ActionsBarButton = void 0;
|
|
4
|
+
var component_1 = require("./component");
|
|
5
|
+
Object.defineProperty(exports, "ActionsBarButton", { enumerable: true, get: function () { return component_1.ActionsBarButton; } });
|
|
6
|
+
Object.defineProperty(exports, "ActionsBarSeparator", { enumerable: true, get: function () { return component_1.ActionsBarSeparator; } });
|
|
7
|
+
var enums_1 = require("./enums");
|
|
8
|
+
Object.defineProperty(exports, "ActionsBarPosition", { enumerable: true, get: function () { return enums_1.ActionsBarPosition; } });
|
|
9
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/extensible-areas/actions-bar-item/index.ts"],"names":[],"mappings":";;;AAAA,yCAGqB;AAFnB,6GAAA,gBAAgB,OAAA;AAChB,gHAAA,mBAAmB,OAAA;AAKrB,iCAEiB;AADf,2GAAA,kBAAkB,OAAA"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { PluginProvidedUiItemDescriptor } from '../base';
|
|
2
|
+
import { ActionsBarPosition } from './enums';
|
|
3
|
+
/**
|
|
4
|
+
* Interface for the generic Actions bar item. (`position` is mandatory)
|
|
5
|
+
*/
|
|
6
|
+
export interface ActionsBarItem extends PluginProvidedUiItemDescriptor {
|
|
7
|
+
position: ActionsBarPosition;
|
|
8
|
+
}
|
|
9
|
+
export interface ActionsBarButtonProps {
|
|
10
|
+
icon: string;
|
|
11
|
+
tooltip: string;
|
|
12
|
+
position: ActionsBarPosition;
|
|
13
|
+
onClick: () => void;
|
|
14
|
+
}
|
|
15
|
+
export interface ActionsBarSeparatorProps {
|
|
16
|
+
position: ActionsBarPosition;
|
|
17
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../../src/extensible-areas/actions-bar-item/types.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { AudioSettingsDropdownItemType } from './enums';
|
|
2
|
+
import { AudioSettingsDropdownItem, AudioSettingsDropdownOptionProps } from './types';
|
|
3
|
+
export declare class AudioSettingsDropdownOption implements AudioSettingsDropdownItem {
|
|
4
|
+
id: string;
|
|
5
|
+
type: AudioSettingsDropdownItemType;
|
|
6
|
+
label: string;
|
|
7
|
+
icon: string;
|
|
8
|
+
onClick: () => void;
|
|
9
|
+
/**
|
|
10
|
+
* Returns object to be used in the setter for the audio settings dropdown. In this case,
|
|
11
|
+
* an option.
|
|
12
|
+
*
|
|
13
|
+
* @param label - label to be displayed in audio settings dropdown option
|
|
14
|
+
* @param icon - icon to be used in the option for the dropdown. It goes in the left side of it
|
|
15
|
+
* @param onClick - function to be called when clicking the button
|
|
16
|
+
*
|
|
17
|
+
* @returns Object that will be interpreted by the core of Bigbluebutton (HTML5)
|
|
18
|
+
*/
|
|
19
|
+
constructor({ label, icon, onClick, }: AudioSettingsDropdownOptionProps);
|
|
20
|
+
setItemId: (id: string) => void;
|
|
21
|
+
}
|
|
22
|
+
export declare class AudioSettingsDropdownSeparator implements AudioSettingsDropdownItem {
|
|
23
|
+
id: string;
|
|
24
|
+
type: AudioSettingsDropdownItemType;
|
|
25
|
+
/**
|
|
26
|
+
* Returns object to be used in the setter for the audio settings dropdown. In this case,
|
|
27
|
+
* a separator.
|
|
28
|
+
*
|
|
29
|
+
* @remarks
|
|
30
|
+
* It will display a horizontal thin black line inside the dropdown.
|
|
31
|
+
*
|
|
32
|
+
* @returns Object that will be interpreted by the core of Bigbluebutton (HTML5)
|
|
33
|
+
*/
|
|
34
|
+
constructor();
|
|
35
|
+
setItemId: (id: string) => void;
|
|
36
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AudioSettingsDropdownSeparator = exports.AudioSettingsDropdownOption = void 0;
|
|
4
|
+
var enums_1 = require("./enums");
|
|
5
|
+
// AudioSettingsDropdownItem Extensible Area
|
|
6
|
+
var AudioSettingsDropdownOption = /** @class */ (function () {
|
|
7
|
+
/**
|
|
8
|
+
* Returns object to be used in the setter for the audio settings dropdown. In this case,
|
|
9
|
+
* an option.
|
|
10
|
+
*
|
|
11
|
+
* @param label - label to be displayed in audio settings dropdown option
|
|
12
|
+
* @param icon - icon to be used in the option for the dropdown. It goes in the left side of it
|
|
13
|
+
* @param onClick - function to be called when clicking the button
|
|
14
|
+
*
|
|
15
|
+
* @returns Object that will be interpreted by the core of Bigbluebutton (HTML5)
|
|
16
|
+
*/
|
|
17
|
+
function AudioSettingsDropdownOption(_a) {
|
|
18
|
+
var _b = _a.label, label = _b === void 0 ? '' : _b, _c = _a.icon, icon = _c === void 0 ? '' : _c, _d = _a.onClick, onClick = _d === void 0 ? function () { } : _d;
|
|
19
|
+
var _this = this;
|
|
20
|
+
this.id = '';
|
|
21
|
+
this.setItemId = function (id) {
|
|
22
|
+
_this.id = "AudioSettingsDropdownOption_".concat(id);
|
|
23
|
+
};
|
|
24
|
+
this.label = label;
|
|
25
|
+
this.icon = icon;
|
|
26
|
+
this.onClick = onClick;
|
|
27
|
+
this.type = enums_1.AudioSettingsDropdownItemType.OPTION;
|
|
28
|
+
}
|
|
29
|
+
return AudioSettingsDropdownOption;
|
|
30
|
+
}());
|
|
31
|
+
exports.AudioSettingsDropdownOption = AudioSettingsDropdownOption;
|
|
32
|
+
var AudioSettingsDropdownSeparator = /** @class */ (function () {
|
|
33
|
+
/**
|
|
34
|
+
* Returns object to be used in the setter for the audio settings dropdown. In this case,
|
|
35
|
+
* a separator.
|
|
36
|
+
*
|
|
37
|
+
* @remarks
|
|
38
|
+
* It will display a horizontal thin black line inside the dropdown.
|
|
39
|
+
*
|
|
40
|
+
* @returns Object that will be interpreted by the core of Bigbluebutton (HTML5)
|
|
41
|
+
*/
|
|
42
|
+
function AudioSettingsDropdownSeparator() {
|
|
43
|
+
var _this = this;
|
|
44
|
+
this.id = '';
|
|
45
|
+
this.setItemId = function (id) {
|
|
46
|
+
_this.id = "AudioSettingsDropdownSeparator_".concat(id);
|
|
47
|
+
};
|
|
48
|
+
this.type = enums_1.AudioSettingsDropdownItemType.SEPARATOR;
|
|
49
|
+
}
|
|
50
|
+
return AudioSettingsDropdownSeparator;
|
|
51
|
+
}());
|
|
52
|
+
exports.AudioSettingsDropdownSeparator = AudioSettingsDropdownSeparator;
|
|
53
|
+
//# sourceMappingURL=component.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"component.js","sourceRoot":"","sources":["../../../../src/extensible-areas/audio-settings-dropdown-item/component.ts"],"names":[],"mappings":";;;AAAA,iCAAwD;AAKxD,4CAA4C;AAE5C;IAWE;;;;;;;;;OASG;IACH,qCAAY,EAEuB;YADjC,aAAU,EAAV,KAAK,mBAAG,EAAE,KAAA,EAAE,YAAS,EAAT,IAAI,mBAAG,EAAE,KAAA,EAAE,eAAkB,EAAlB,OAAO,mBAAG,cAAO,CAAC,KAAA;QAD3C,iBAOC;QA3BD,OAAE,GAAW,EAAE,CAAC;QA6BhB,cAAS,GAAyB,UAAC,EAAU;YAC3C,KAAI,CAAC,EAAE,GAAG,sCAA+B,EAAE,CAAE,CAAC;QAChD,CAAC,CAAC;QARA,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;QACnB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;QACjB,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;QACvB,IAAI,CAAC,IAAI,GAAG,qCAA6B,CAAC,MAAM,CAAC;IACnD,CAAC;IAKH,kCAAC;AAAD,CAAC,AAjCD,IAiCC;AAjCY,kEAA2B;AAmCxC;IAKE;;;;;;;;OAQG;IACH;QAAA,iBAEC;QAfD,OAAE,GAAW,EAAE,CAAC;QAiBhB,cAAS,GAAyB,UAAC,EAAU;YAC3C,KAAI,CAAC,EAAE,GAAG,yCAAkC,EAAE,CAAE,CAAC;QACnD,CAAC,CAAC;QALA,IAAI,CAAC,IAAI,GAAG,qCAA6B,CAAC,SAAS,CAAC;IACtD,CAAC;IAKH,qCAAC;AAAD,CAAC,AArBD,IAqBC;AArBY,wEAA8B"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AudioSettingsDropdownItemType = void 0;
|
|
4
|
+
// AudioSettings dropdown items types:
|
|
5
|
+
var AudioSettingsDropdownItemType;
|
|
6
|
+
(function (AudioSettingsDropdownItemType) {
|
|
7
|
+
AudioSettingsDropdownItemType["OPTION"] = "AUDIO_SETTINGS_DROPDOWN_OPTION";
|
|
8
|
+
AudioSettingsDropdownItemType["SEPARATOR"] = "AUDIO_SETTINGS_DROPDOWN_SEPARATOR";
|
|
9
|
+
})(AudioSettingsDropdownItemType || (exports.AudioSettingsDropdownItemType = AudioSettingsDropdownItemType = {}));
|
|
10
|
+
//# sourceMappingURL=enums.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"enums.js","sourceRoot":"","sources":["../../../../src/extensible-areas/audio-settings-dropdown-item/enums.ts"],"names":[],"mappings":";;;AAAA,sCAAsC;AACtC,IAAY,6BAGX;AAHD,WAAY,6BAA6B;IACvC,0EAAyC,CAAA;IACzC,gFAA+C,CAAA;AACjD,CAAC,EAHW,6BAA6B,6CAA7B,6BAA6B,QAGxC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AudioSettingsDropdownSeparator = exports.AudioSettingsDropdownOption = void 0;
|
|
4
|
+
var component_1 = require("./component");
|
|
5
|
+
Object.defineProperty(exports, "AudioSettingsDropdownOption", { enumerable: true, get: function () { return component_1.AudioSettingsDropdownOption; } });
|
|
6
|
+
Object.defineProperty(exports, "AudioSettingsDropdownSeparator", { enumerable: true, get: function () { return component_1.AudioSettingsDropdownSeparator; } });
|
|
7
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/extensible-areas/audio-settings-dropdown-item/index.ts"],"names":[],"mappings":";;;AAAA,yCAGqB;AAFnB,wHAAA,2BAA2B,OAAA;AAC3B,2HAAA,8BAA8B,OAAA"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { PluginProvidedUiItemDescriptor } from '../base';
|
|
2
|
+
/**
|
|
3
|
+
* Audio Settings Dropdown Item - The general Audio settings extensible area
|
|
4
|
+
*
|
|
5
|
+
* @remarks
|
|
6
|
+
* To make this dropdown appear, the user needs to enter with audio, either listen only
|
|
7
|
+
* or microphone. This will make a small downward arrow appear (chevron).
|
|
8
|
+
*/
|
|
9
|
+
export interface AudioSettingsDropdownItem extends PluginProvidedUiItemDescriptor {
|
|
10
|
+
}
|
|
11
|
+
export interface AudioSettingsDropdownOptionProps {
|
|
12
|
+
label: string;
|
|
13
|
+
icon: string;
|
|
14
|
+
onClick: () => void;
|
|
15
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../../src/extensible-areas/audio-settings-dropdown-item/types.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { ActionButtonDropdownItemType } from './action-button-dropdown-item/enums';
|
|
2
|
+
import { ActionsBarItemType } from './actions-bar-item/enums';
|
|
3
|
+
import { AudioSettingsDropdownItemType } from './audio-settings-dropdown-item/enums';
|
|
4
|
+
import { CameraSettingsDropdownItemType } from './camera-settings-dropdown-item/enums';
|
|
5
|
+
import { NavBarItemType } from './nav-bar-item/enums';
|
|
6
|
+
import { OptionsDropdownItemType } from './options-dropdown-item/enums';
|
|
7
|
+
import { PresentationDropdownItemType } from './presentation-dropdown-item/enums';
|
|
8
|
+
import { PresentationToolbarItemType } from './presentation-toolbar-item/enums';
|
|
9
|
+
import { UserCameraDropdownItemType } from './user-camera-dropdown-item/enums';
|
|
10
|
+
import { UserListDropdownItemType } from './user-list-dropdown-item/enums';
|
|
11
|
+
import { UserListItemAdditionalInformationType } from './user-list-item-additional-information/enums';
|
|
12
|
+
type PluginProvidedUiItemType = PresentationToolbarItemType | UserListDropdownItemType | ActionButtonDropdownItemType | ActionsBarItemType | AudioSettingsDropdownItemType | PresentationDropdownItemType | NavBarItemType | OptionsDropdownItemType | CameraSettingsDropdownItemType | UserCameraDropdownItemType | UserListItemAdditionalInformationType;
|
|
13
|
+
export interface PluginProvidedUiItemDescriptor {
|
|
14
|
+
/** Defined by BigBlueButton Plugin Engine. */
|
|
15
|
+
id: string;
|
|
16
|
+
type: PluginProvidedUiItemType;
|
|
17
|
+
setItemId: (id: string) => void;
|
|
18
|
+
}
|
|
19
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"base.js","sourceRoot":"","sources":["../../../src/extensible-areas/base.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { CameraSettingsDropdownItemType } from './enums';
|
|
2
|
+
import { CameraSettingsDropdownItem, CameraSettingsDropdownOptionProps } from './types';
|
|
3
|
+
export declare class CameraSettingsDropdownOption implements CameraSettingsDropdownItem {
|
|
4
|
+
id: string;
|
|
5
|
+
type: CameraSettingsDropdownItemType;
|
|
6
|
+
label: string;
|
|
7
|
+
icon: string;
|
|
8
|
+
onClick: () => void;
|
|
9
|
+
/**
|
|
10
|
+
* Returns object to be used in the setter for the camera settings dropdown. In this case,
|
|
11
|
+
* an option.
|
|
12
|
+
*
|
|
13
|
+
* @param label - label to be displayed in camera settings dropdown option.
|
|
14
|
+
* @param icon - icon to be used in the option for the dropdown. It goes in the left side of it.
|
|
15
|
+
* @param onClick - function to be called when clicking the button.
|
|
16
|
+
*
|
|
17
|
+
* @returns Object that will be interpreted by the core of Bigbluebutton (HTML5).
|
|
18
|
+
*/
|
|
19
|
+
constructor({ label, icon, onClick, }: CameraSettingsDropdownOptionProps);
|
|
20
|
+
setItemId: (id: string) => void;
|
|
21
|
+
}
|
|
22
|
+
export declare class CameraSettingsDropdownSeparator implements CameraSettingsDropdownItem {
|
|
23
|
+
id: string;
|
|
24
|
+
type: CameraSettingsDropdownItemType;
|
|
25
|
+
/**
|
|
26
|
+
* Returns object to be used in the setter for the camera settings dropdown. In this case,
|
|
27
|
+
* a separator.
|
|
28
|
+
*
|
|
29
|
+
* @remarks
|
|
30
|
+
* It will display a horizontal thin black line inside the dropdown.
|
|
31
|
+
*
|
|
32
|
+
* @returns Object that will be interpreted by the core of Bigbluebutton (HTML5)
|
|
33
|
+
*/
|
|
34
|
+
constructor();
|
|
35
|
+
setItemId: (id: string) => void;
|
|
36
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CameraSettingsDropdownSeparator = exports.CameraSettingsDropdownOption = void 0;
|
|
4
|
+
var enums_1 = require("./enums");
|
|
5
|
+
// CameraSettingsDropdownItem Extensible Area
|
|
6
|
+
var CameraSettingsDropdownOption = /** @class */ (function () {
|
|
7
|
+
/**
|
|
8
|
+
* Returns object to be used in the setter for the camera settings dropdown. In this case,
|
|
9
|
+
* an option.
|
|
10
|
+
*
|
|
11
|
+
* @param label - label to be displayed in camera settings dropdown option.
|
|
12
|
+
* @param icon - icon to be used in the option for the dropdown. It goes in the left side of it.
|
|
13
|
+
* @param onClick - function to be called when clicking the button.
|
|
14
|
+
*
|
|
15
|
+
* @returns Object that will be interpreted by the core of Bigbluebutton (HTML5).
|
|
16
|
+
*/
|
|
17
|
+
function CameraSettingsDropdownOption(_a) {
|
|
18
|
+
var _b = _a.label, label = _b === void 0 ? '' : _b, _c = _a.icon, icon = _c === void 0 ? '' : _c, _d = _a.onClick, onClick = _d === void 0 ? function () { } : _d;
|
|
19
|
+
var _this = this;
|
|
20
|
+
this.id = '';
|
|
21
|
+
this.setItemId = function (id) {
|
|
22
|
+
_this.id = "CameraSettingsDropdownOption_".concat(id);
|
|
23
|
+
};
|
|
24
|
+
this.label = label;
|
|
25
|
+
this.icon = icon;
|
|
26
|
+
this.onClick = onClick;
|
|
27
|
+
this.type = enums_1.CameraSettingsDropdownItemType.OPTION;
|
|
28
|
+
}
|
|
29
|
+
return CameraSettingsDropdownOption;
|
|
30
|
+
}());
|
|
31
|
+
exports.CameraSettingsDropdownOption = CameraSettingsDropdownOption;
|
|
32
|
+
var CameraSettingsDropdownSeparator = /** @class */ (function () {
|
|
33
|
+
/**
|
|
34
|
+
* Returns object to be used in the setter for the camera settings dropdown. In this case,
|
|
35
|
+
* a separator.
|
|
36
|
+
*
|
|
37
|
+
* @remarks
|
|
38
|
+
* It will display a horizontal thin black line inside the dropdown.
|
|
39
|
+
*
|
|
40
|
+
* @returns Object that will be interpreted by the core of Bigbluebutton (HTML5)
|
|
41
|
+
*/
|
|
42
|
+
function CameraSettingsDropdownSeparator() {
|
|
43
|
+
var _this = this;
|
|
44
|
+
this.id = '';
|
|
45
|
+
this.setItemId = function (id) {
|
|
46
|
+
_this.id = "CameraSettingsDropdownSeparator_".concat(id);
|
|
47
|
+
};
|
|
48
|
+
this.type = enums_1.CameraSettingsDropdownItemType.SEPARATOR;
|
|
49
|
+
}
|
|
50
|
+
return CameraSettingsDropdownSeparator;
|
|
51
|
+
}());
|
|
52
|
+
exports.CameraSettingsDropdownSeparator = CameraSettingsDropdownSeparator;
|
|
53
|
+
//# sourceMappingURL=component.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"component.js","sourceRoot":"","sources":["../../../../src/extensible-areas/camera-settings-dropdown-item/component.ts"],"names":[],"mappings":";;;AAAA,iCAAyD;AAKzD,6CAA6C;AAE7C;IAWE;;;;;;;;;OASG;IACH,sCAAY,EAEwB;YADlC,aAAU,EAAV,KAAK,mBAAG,EAAE,KAAA,EAAE,YAAS,EAAT,IAAI,mBAAG,EAAE,KAAA,EAAE,eAAkB,EAAlB,OAAO,mBAAG,cAAO,CAAC,KAAA;QAD3C,iBAOC;QA3BD,OAAE,GAAW,EAAE,CAAC;QA6BhB,cAAS,GAAyB,UAAC,EAAU;YAC3C,KAAI,CAAC,EAAE,GAAG,uCAAgC,EAAE,CAAE,CAAC;QACjD,CAAC,CAAC;QARA,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;QACnB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;QACjB,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;QACvB,IAAI,CAAC,IAAI,GAAG,sCAA8B,CAAC,MAAM,CAAC;IACpD,CAAC;IAKH,mCAAC;AAAD,CAAC,AAjCD,IAiCC;AAjCY,oEAA4B;AAmCzC;IAKE;;;;;;;;OAQG;IACH;QAAA,iBAEC;QAfD,OAAE,GAAW,EAAE,CAAC;QAiBhB,cAAS,GAAyB,UAAC,EAAU;YAC3C,KAAI,CAAC,EAAE,GAAG,0CAAmC,EAAE,CAAE,CAAC;QACpD,CAAC,CAAC;QALA,IAAI,CAAC,IAAI,GAAG,sCAA8B,CAAC,SAAS,CAAC;IACvD,CAAC;IAKH,sCAAC;AAAD,CAAC,AArBD,IAqBC;AArBY,0EAA+B"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CameraSettingsDropdownItemType = void 0;
|
|
4
|
+
// Camera settings dropdown items types:
|
|
5
|
+
var CameraSettingsDropdownItemType;
|
|
6
|
+
(function (CameraSettingsDropdownItemType) {
|
|
7
|
+
CameraSettingsDropdownItemType["OPTION"] = "CAMERA_SETTINGS_DROPDOWN_OPTION";
|
|
8
|
+
CameraSettingsDropdownItemType["SEPARATOR"] = "CAMERA_SETTINGS_DROPDOWN_SEPARATOR";
|
|
9
|
+
})(CameraSettingsDropdownItemType || (exports.CameraSettingsDropdownItemType = CameraSettingsDropdownItemType = {}));
|
|
10
|
+
//# sourceMappingURL=enums.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"enums.js","sourceRoot":"","sources":["../../../../src/extensible-areas/camera-settings-dropdown-item/enums.ts"],"names":[],"mappings":";;;AAAA,wCAAwC;AACxC,IAAY,8BAGX;AAHD,WAAY,8BAA8B;IACxC,4EAA0C,CAAA;IAC1C,kFAAgD,CAAA;AAClD,CAAC,EAHW,8BAA8B,8CAA9B,8BAA8B,QAGzC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CameraSettingsDropdownSeparator = exports.CameraSettingsDropdownOption = void 0;
|
|
4
|
+
var component_1 = require("./component");
|
|
5
|
+
Object.defineProperty(exports, "CameraSettingsDropdownOption", { enumerable: true, get: function () { return component_1.CameraSettingsDropdownOption; } });
|
|
6
|
+
Object.defineProperty(exports, "CameraSettingsDropdownSeparator", { enumerable: true, get: function () { return component_1.CameraSettingsDropdownSeparator; } });
|
|
7
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/extensible-areas/camera-settings-dropdown-item/index.ts"],"names":[],"mappings":";;;AAAA,yCAGqB;AAFnB,yHAAA,4BAA4B,OAAA;AAC5B,4HAAA,+BAA+B,OAAA"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { PluginProvidedUiItemDescriptor } from '../base';
|
|
2
|
+
/**
|
|
3
|
+
* Camera Settings Dropdown Item - The general Camera settings extensible area
|
|
4
|
+
*
|
|
5
|
+
* @remarks
|
|
6
|
+
* To make this dropdown appear, the user needs to enter with webcam.
|
|
7
|
+
* This will make a small downward arrow appear in the camera icon (the chevron).
|
|
8
|
+
*/
|
|
9
|
+
export interface CameraSettingsDropdownItem extends PluginProvidedUiItemDescriptor {
|
|
10
|
+
}
|
|
11
|
+
export interface CameraSettingsDropdownOptionProps {
|
|
12
|
+
label: string;
|
|
13
|
+
icon: string;
|
|
14
|
+
onClick: () => void;
|
|
15
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../../src/extensible-areas/camera-settings-dropdown-item/types.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export * from './presentation-toolbar-item';
|
|
2
|
+
export * from './user-list-dropdown-item';
|
|
3
|
+
export * from './action-button-dropdown-item';
|
|
4
|
+
export * from './actions-bar-item';
|
|
5
|
+
export * from './audio-settings-dropdown-item';
|
|
6
|
+
export * from './presentation-dropdown-item';
|
|
7
|
+
export * from './nav-bar-item';
|
|
8
|
+
export * from './options-dropdown-item';
|
|
9
|
+
export * from './camera-settings-dropdown-item';
|
|
10
|
+
export * from './user-camera-dropdown-item';
|
|
11
|
+
export * from './user-list-item-additional-information';
|
|
@@ -14,7 +14,15 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./
|
|
18
|
-
__exportStar(require("
|
|
19
|
-
__exportStar(require("
|
|
17
|
+
__exportStar(require("./presentation-toolbar-item"), exports);
|
|
18
|
+
__exportStar(require("./user-list-dropdown-item"), exports);
|
|
19
|
+
__exportStar(require("./action-button-dropdown-item"), exports);
|
|
20
|
+
__exportStar(require("./actions-bar-item"), exports);
|
|
21
|
+
__exportStar(require("./audio-settings-dropdown-item"), exports);
|
|
22
|
+
__exportStar(require("./presentation-dropdown-item"), exports);
|
|
23
|
+
__exportStar(require("./nav-bar-item"), exports);
|
|
24
|
+
__exportStar(require("./options-dropdown-item"), exports);
|
|
25
|
+
__exportStar(require("./camera-settings-dropdown-item"), exports);
|
|
26
|
+
__exportStar(require("./user-camera-dropdown-item"), exports);
|
|
27
|
+
__exportStar(require("./user-list-item-additional-information"), exports);
|
|
20
28
|
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/extensible-areas/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8DAA4C;AAC5C,4DAA0C;AAC1C,gEAA8C;AAC9C,qDAAmC;AACnC,iEAA+C;AAC/C,+DAA6C;AAC7C,iDAA+B;AAC/B,0DAAwC;AACxC,kEAAgD;AAChD,8DAA4C;AAC5C,0EAAwD"}
|