-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathfeatures.js
83 lines (82 loc) · 3.46 KB
/
features.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/// A list of features recognized by the conditional compilation preprocessing plugin.
///
/// alpha - Features that are in development and not yet ready for general use.
/// These features conditional-compiled out of beta and stable npm packages.
/// beta - Features that are in development and are ready for public preview.
/// These features are conditional-compiled out of stable npm packages.
/// stable - Features that are ready for general use. These features are included in all releases.
///
module.exports = {
alpha: [
// Feature for custom video gallery layouts
// Feature for large gallery layout DO NOT REMOVE UNTIL SDK SUPPORTS 49 VIDEO STREAMS
"large-gallery",
// feature for positioning the overflowGallery at the top of the screen in the composite
"overflow-top-composite",
// feature for gallery layout in the composite
"gallery-layout-composite",
// feature for hiding attendee name in the teams meeting
"hide-attendee-name",
// Demo feature. Used in live-documentation of conditional compilation. Do not use in production code.
"in-progress-beta-feature-demo",
// Feature for remote UFD
"remote-ufd"
],
beta: [
"call-readiness",
// Flag to add API only available in beta calling SDK to mocks and internal types.
// This feature should be stabilized whenever calling SDK is stabilized.
"calling-beta-sdk",
// Flag to add API only available in beta chat SDK to mocks and internal types.
// This feature should be stabilized whenever chat SDK is stabilized.
"chat-beta-sdk",
// Flag to add API only available in the communication-common beta v3
"communication-common-beta-v3",
// Participant pane in the `ChatComposite`.
"chat-composite-participant-pane",
// props to allow Contoso to overwrite timestamp format for chat messages, one in locale and one in message thread component
"date-time-customization",
// Demo feature. Used in live-documentation of conditional compilation.
// Do not use in production code.
"demo",
// dialpad
"dialpad",
// Data loss prevention feature
"data-loss-prevention",
// Mention feature
"mention",
// Block joining calls if the user is on an unsupported browser
"unsupported-browser",
// Feature to show the total number of participants in a call (currently in beta in calling SDK, hence this must be conditionally compiled)
"total-participant-count",
// conditional-compile for new signaling beta
"signaling-beta",
// Image overlay theme
'image-overlay-theme',
// Feature for local recording notification for teams meetings
'local-recording-notification',
// Feature for Rich Text Editor (RTE) support
'rich-text-editor',
// Feature for Rich Text Editor (RTE) composite support
"rich-text-editor-composite-support",
// Feature for Rich Text Editor (RTE) image upload support
"rich-text-editor-image-upload",
// Feature to support file sharing in ACS chats
"file-sharing-acs",
// Beta feature for joining calls using teams token
"teams-identity-support-beta",
// feature for tracking the callParticipantsLocator
"call-participants-locator",
// Feature for RTT
"rtt",
// Feature for together mode
"together-mode"
],
stable: [
// Demo feature. Used in live-documentation of conditional compilation.
// Do not use in production code.
"stabilizedDemo",
// Feature for breakout rooms
"breakout-rooms",
]
}