@azure/communication-react 1.9.0-alpha-202310250012 → 1.9.0-alpha-202310260012

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.
@@ -4490,8 +4490,6 @@ export declare type CommonCallControlOptions = {
4490
4490
  };
4491
4491
  /**
4492
4492
  * Inject custom buttons in the call controls.
4493
- *
4494
- * @beta
4495
4493
  */
4496
4494
  onFetchCustomButtonProps?: CustomCallControlButtonCallback[];
4497
4495
  holdButton?: boolean | {
@@ -177,7 +177,7 @@ const _isValidIdentifier = (identifier) => {
177
177
  // Copyright (c) Microsoft Corporation.
178
178
  // Licensed under the MIT License.
179
179
  // GENERATED FILE. DO NOT EDIT MANUALLY.
180
- var telemetryVersion = '1.9.0-alpha-202310250012';
180
+ var telemetryVersion = '1.9.0-alpha-202310260012';
181
181
 
182
182
  // Copyright (c) Microsoft Corporation.
183
183
  /**
@@ -24216,9 +24216,8 @@ const drawerMenuItemToContextualMenuItem = (item) => (Object.assign(Object.assig
24216
24216
  : undefined }));
24217
24217
  /** @private */
24218
24218
  const onFetchCustomButtonPropsTrampoline = (options) => {
24219
- var _a;
24220
24219
  let response = undefined;
24221
- response = (_a = options) === null || _a === void 0 ? void 0 : _a.onFetchCustomButtonProps;
24220
+ response = options === null || options === void 0 ? void 0 : options.onFetchCustomButtonProps;
24222
24221
  return response;
24223
24222
  };
24224
24223
 
@@ -27186,8 +27185,7 @@ const CallArrangement = (props) => {
27186
27185
  React__default["default"].createElement(_DrawerMenu, { onLightDismiss: () => setDrawerMenuItems([]), items: drawerMenuItems }))))))));
27187
27186
  };
27188
27187
  const isLegacyCallControlEnabled = (options) => {
27189
- var _a;
27190
- return !!options && options !== true && ((_a = options) === null || _a === void 0 ? void 0 : _a.legacyControlBarExperience) === true;
27188
+ return !!options && options !== true && (options === null || options === void 0 ? void 0 : options.legacyControlBarExperience) === true;
27191
27189
  };
27192
27190
  const shouldShowPeopleTabHeaderButton = (callControls) => {
27193
27191
  if (callControls === undefined || callControls === true) {