@azure/communication-react 1.14.0-alpha-202403010014 → 1.14.0-alpha-202403020011

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.
Files changed (28) hide show
  1. package/dist/communication-react.d.ts +7 -1
  2. package/dist/dist-cjs/communication-react/index.js +86 -108
  3. package/dist/dist-cjs/communication-react/index.js.map +1 -1
  4. package/dist/dist-esm/acs-ui-common/src/telemetryVersion.js +1 -1
  5. package/dist/dist-esm/acs-ui-common/src/telemetryVersion.js.map +1 -1
  6. package/dist/dist-esm/calling-component-bindings/src/utils/videoGalleryUtils.d.ts +1 -1
  7. package/dist/dist-esm/calling-component-bindings/src/utils/videoGalleryUtils.js +25 -6
  8. package/dist/dist-esm/calling-component-bindings/src/utils/videoGalleryUtils.js.map +1 -1
  9. package/dist/dist-esm/calling-component-bindings/src/videoGallerySelector.d.ts +1 -1
  10. package/dist/dist-esm/calling-component-bindings/src/videoGallerySelector.js.map +1 -1
  11. package/dist/dist-esm/calling-stateful-client/src/CallClientState.d.ts +6 -0
  12. package/dist/dist-esm/calling-stateful-client/src/CallClientState.js.map +1 -1
  13. package/dist/dist-esm/react-components/src/components/RTE/RTEInputBoxComponent.d.ts +2 -1
  14. package/dist/dist-esm/react-components/src/components/RTE/RTEInputBoxComponent.js +11 -3
  15. package/dist/dist-esm/react-components/src/components/RTE/RTEInputBoxComponent.js.map +1 -1
  16. package/dist/dist-esm/react-components/src/components/RTE/RTERibbonButtons.js +1 -1
  17. package/dist/dist-esm/react-components/src/components/RTE/RTERibbonButtons.js.map +1 -1
  18. package/dist/dist-esm/react-components/src/components/RTE/RTESendBox.js +4 -9
  19. package/dist/dist-esm/react-components/src/components/RTE/RTESendBox.js.map +1 -1
  20. package/dist/dist-esm/react-components/src/components/RTE/RTESendBoxErrors.js +6 -0
  21. package/dist/dist-esm/react-components/src/components/RTE/RTESendBoxErrors.js.map +1 -1
  22. package/dist/dist-esm/react-components/src/components/RTE/RichTextEditor.d.ts +1 -1
  23. package/dist/dist-esm/react-components/src/components/RTE/RichTextEditor.js +12 -18
  24. package/dist/dist-esm/react-components/src/components/RTE/RichTextEditor.js.map +1 -1
  25. package/dist/dist-esm/react-components/src/components/styles/RichTextEditor.styles.d.ts +5 -1
  26. package/dist/dist-esm/react-components/src/components/styles/RichTextEditor.styles.js +49 -84
  27. package/dist/dist-esm/react-components/src/components/styles/RichTextEditor.styles.js.map +1 -1
  28. package/package.json +6 -5
@@ -2739,6 +2739,8 @@ export declare interface CallState {
2739
2739
  recording: RecordingCallFeature;
2740
2740
  /**
2741
2741
  * Proxy of {@link @azure/communication-calling#PPTLiveCallFeature}.
2742
+ *
2743
+ *@beta
2742
2744
  */
2743
2745
  pptLive: PPTLiveCallFeatureState;
2744
2746
  /**
@@ -2769,6 +2771,8 @@ export declare interface CallState {
2769
2771
  * Note this only applies to PPTLive in RemoteParticipant.
2770
2772
  *
2771
2773
  * This property is added by the stateful layer and is not a proxy of SDK state
2774
+ *
2775
+ *@beta
2772
2776
  */
2773
2777
  contentSharingRemoteParticipant?: string;
2774
2778
  /**
@@ -9438,6 +9442,8 @@ export declare interface RemoteParticipantState {
9438
9442
  raisedHand?: RaisedHandState;
9439
9443
  /**
9440
9444
  * Proxy of {@link @azure/communication-calling#Call.PPTLive.target}.
9445
+ *
9446
+ * @beta
9441
9447
  */
9442
9448
  contentSharingStream?: HTMLElement;
9443
9449
  /**
@@ -11271,7 +11277,7 @@ export declare interface VideoGalleryRemoteParticipant extends VideoGalleryParti
11271
11277
  * @public
11272
11278
  */
11273
11279
  export declare type VideoGallerySelector = (state: CallClientState, props: CallingBaseSelectorProps) => {
11274
- screenShareParticipant: VideoGalleryRemoteParticipant | undefined;
11280
+ screenShareParticipant?: VideoGalleryRemoteParticipant;
11275
11281
  localParticipant: VideoGalleryLocalParticipant;
11276
11282
  remoteParticipants: VideoGalleryRemoteParticipant[];
11277
11283
  dominantSpeakers?: string[];
@@ -17,6 +17,7 @@ var reactFileTypeIcons = require('@fluentui/react-file-type-icons');
17
17
  var roosterjsEditorPlugins = require('roosterjs-editor-plugins');
18
18
  var roosterjsEditorCore = require('roosterjs-editor-core');
19
19
  var roosterjsReact = require('roosterjs-react');
20
+ var roosterjsEditorApi = require('roosterjs-editor-api');
20
21
  var uuid = require('uuid');
21
22
  var reactChat = require('@fluentui-contrib/react-chat');
22
23
  var react$1 = require('@griffel/react');
@@ -173,7 +174,7 @@ function getDefaultExportFromCjs (x) {
173
174
  // Copyright (c) Microsoft Corporation.
174
175
  // Licensed under the MIT License.
175
176
  // GENERATED FILE. DO NOT EDIT MANUALLY.
176
- var telemetryVersion = '1.14.0-alpha-202403010014';
177
+ var telemetryVersion = '1.14.0-alpha-202403020011';
177
178
 
178
179
 
179
180
  var telemetryVersion$1 = /*@__PURE__*/getDefaultExportFromCjs(telemetryVersion);
@@ -9172,97 +9173,62 @@ const richTextEditorStyle = react.mergeStyles({
9172
9173
  /**
9173
9174
  * @private
9174
9175
  */
9175
- const ribbonButtonStyle = (theme) => {
9176
+ const ribbonOverflowButtonStyle = (theme) => {
9176
9177
  return {
9177
- icon: { color: theme.palette.neutralPrimary, height: 'auto' },
9178
- menuIcon: { color: theme.palette.neutralPrimary, height: 'auto' },
9179
- root: { minWidth: 'auto', backgroundColor: 'transparent' },
9180
- rootChecked: {
9181
- backgroundColor: 'transparent',
9182
- selectors: {
9183
- // Icon's color doesn't work here because of the specificity
9184
- '.ms-Button-icon': {
9185
- color: theme.palette.themePrimary
9186
- },
9187
- '.ms-Button-menuIcon': {
9188
- color: theme.palette.themePrimary
9189
- }
9190
- }
9191
- },
9192
- rootHovered: {
9193
- backgroundColor: 'transparent',
9194
- selectors: {
9195
- // Icon's color doesn't work here because of the specificity
9196
- '.ms-Button-icon': {
9197
- color: theme.palette.themePrimary
9198
- },
9199
- '.ms-Button-menuIcon': {
9200
- color: theme.palette.themePrimary
9201
- }
9202
- }
9203
- },
9204
- rootCheckedHovered: {
9205
- backgroundColor: 'transparent',
9206
- selectors: {
9207
- // Icon's color doesn't work here because of the specificity
9208
- '.ms-Button-icon': {
9209
- color: theme.palette.themePrimary
9210
- },
9211
- '.ms-Button-menuIcon': {
9212
- color: theme.palette.themePrimary
9213
- }
9214
- }
9215
- },
9216
- rootCheckedPressed: {
9217
- backgroundColor: 'transparent',
9218
- selectors: {
9219
- // Icon's color doesn't work here because of the specificity
9220
- '.ms-Button-icon': {
9221
- color: theme.palette.themePrimary
9222
- },
9223
- '.ms-Button-menuIcon': {
9224
- color: theme.palette.themePrimary
9225
- }
9226
- }
9227
- },
9228
- rootPressed: {
9229
- backgroundColor: 'transparent',
9230
- selectors: {
9231
- // Icon's color doesn't work here because of the specificity
9232
- '.ms-Button-icon': {
9233
- color: theme.palette.themePrimary
9234
- },
9235
- '.ms-Button-menuIcon': {
9236
- color: theme.palette.themePrimary
9237
- }
9238
- }
9239
- },
9240
- rootExpanded: {
9241
- backgroundColor: 'transparent',
9242
- selectors: {
9243
- // Icon's color doesn't work here because of the specificity
9244
- '.ms-Button-icon': {
9245
- color: theme.palette.themePrimary
9246
- },
9247
- '.ms-Button-menuIcon': {
9248
- color: theme.palette.themePrimary
9178
+ subComponentStyles: {
9179
+ menuItem: {
9180
+ icon: { color: theme.palette.neutralPrimary, paddingTop: '0.5rem' },
9181
+ root: ribbonOverflowButtonRootStyles(theme)
9182
+ },
9183
+ callout: {}
9184
+ }
9185
+ };
9186
+ };
9187
+ const ribbonOverflowButtonRootStyles = (theme) => {
9188
+ return {
9189
+ selectors: {
9190
+ // Icon's color doesn't work here because of the specificity
9191
+ '&:hover': {
9192
+ selectors: {
9193
+ '.ms-ContextualMenu-icon': {
9194
+ color: theme.palette.neutralPrimary
9195
+ }
9249
9196
  }
9250
9197
  }
9251
- },
9252
- rootExpandedHovered: {
9253
- backgroundColor: 'transparent',
9254
- selectors: {
9255
- //icon color is not working here because of the specificity
9256
- '.ms-Button-icon': {
9257
- color: theme.palette.themePrimary
9258
- },
9259
- '.ms-Button-menuIcon': {
9260
- color: theme.palette.themePrimary
9261
- }
9198
+ }
9199
+ };
9200
+ };
9201
+ const ribbonButtonRootStyles = (theme) => {
9202
+ return {
9203
+ backgroundColor: 'transparent',
9204
+ selectors: {
9205
+ // Icon's color doesn't work here because of the specificity
9206
+ '.ms-Button-icon': {
9207
+ color: theme.palette.themePrimary
9208
+ },
9209
+ '.ms-Button-menuIcon': {
9210
+ color: theme.palette.themePrimary
9262
9211
  }
9263
9212
  }
9264
9213
  };
9265
9214
  };
9215
+ /**
9216
+ * @private
9217
+ */
9218
+ const ribbonButtonStyle = (theme) => {
9219
+ return {
9220
+ icon: { color: theme.palette.neutralPrimary, height: 'auto' },
9221
+ menuIcon: { color: theme.palette.neutralPrimary, height: 'auto' },
9222
+ root: { minWidth: 'auto', backgroundColor: 'transparent' },
9223
+ rootChecked: ribbonButtonRootStyles(theme),
9224
+ rootHovered: ribbonButtonRootStyles(theme),
9225
+ rootCheckedHovered: ribbonButtonRootStyles(theme),
9226
+ rootCheckedPressed: ribbonButtonRootStyles(theme),
9227
+ rootPressed: ribbonButtonRootStyles(theme),
9228
+ rootExpanded: ribbonButtonRootStyles(theme),
9229
+ rootExpandedHovered: ribbonButtonRootStyles(theme)
9230
+ };
9231
+ };
9266
9232
  /**
9267
9233
  * @private
9268
9234
  */
@@ -9325,7 +9291,7 @@ const createKnownRibbonButton = (key, theme, icon) => {
9325
9291
  // AllButtonStringKeys is a union of all the string keys of all the buttons
9326
9292
  const result = buttons[0];
9327
9293
  button.iconName = icon;
9328
- button.commandBarProperties = Object.assign(Object.assign({}, button.commandBarProperties), { buttonStyles: Object.assign(Object.assign({}, (_a = button.commandBarProperties) === null || _a === void 0 ? void 0 : _a.buttonStyles), ribbonButtonStyle(theme)) });
9294
+ button.commandBarProperties = Object.assign(Object.assign({}, button.commandBarProperties), { buttonStyles: Object.assign(Object.assign({}, (_a = button.commandBarProperties) === null || _a === void 0 ? void 0 : _a.buttonStyles), ribbonButtonStyle(theme)), canCheck: false });
9329
9295
  return result;
9330
9296
  }
9331
9297
  return undefined;
@@ -9374,10 +9340,9 @@ const ribbonButtonsStrings = (strings) => {
9374
9340
  * @beta
9375
9341
  */
9376
9342
  React.forwardRef((props, ref) => {
9377
- const { content, onChange, placeholderText, strings } = props;
9343
+ const { initialContent, onChange, placeholderText, strings } = props;
9378
9344
  const editor = React.useRef(null);
9379
- const [divComponent, setDivComponent] = React.useState(null);
9380
- const theme = react.useTheme();
9345
+ const theme = useTheme();
9381
9346
  React.useImperativeHandle(ref, () => {
9382
9347
  return {
9383
9348
  focus() {
@@ -9388,26 +9353,19 @@ React.forwardRef((props, ref) => {
9388
9353
  };
9389
9354
  }, []);
9390
9355
  React.useEffect(() => {
9391
- var _a, _b;
9392
- if (content !== ((_a = editor.current) === null || _a === void 0 ? void 0 : _a.getContent())) {
9393
- (_b = editor.current) === null || _b === void 0 ? void 0 : _b.setContent(content || '');
9394
- }
9395
- }, [content]);
9396
- React.useEffect(() => {
9397
- if (divComponent !== null && theme.palette.neutralPrimary !== undefined) {
9356
+ if (editor.current !== null) {
9398
9357
  // Adjust color prop for the div component when theme is updated
9399
9358
  // because doNotAdjustEditorColor is set for Rooster
9400
- divComponent.style.color = theme.palette.neutralPrimary;
9359
+ roosterjsEditorApi.setTextColor(editor.current, theme.palette.neutralPrimary);
9401
9360
  }
9402
- }, [divComponent, theme]);
9361
+ }, [theme]);
9403
9362
  const ribbonPlugin = React.useMemo(() => {
9404
9363
  return roosterjsReact.createRibbonPlugin();
9405
9364
  }, []);
9406
9365
  const editorCreator = React.useCallback((div, options) => {
9407
9366
  editor.current = new roosterjsEditorCore.Editor(div, options);
9408
- setDivComponent(div);
9409
9367
  // Remove the background color of the editor
9410
- div.style.backgroundColor = 'transparent';
9368
+ roosterjsEditorApi.setBackgroundColor(editor.current, 'transparent');
9411
9369
  return editor.current;
9412
9370
  }, []);
9413
9371
  const plugins = React.useMemo(() => {
@@ -9426,13 +9384,14 @@ React.forwardRef((props, ref) => {
9426
9384
  styles: ribbonButtonStyle(theme),
9427
9385
  menuProps: {
9428
9386
  items: [], // CommandBar will determine items rendered in overflow
9429
- isBeakVisible: false
9387
+ isBeakVisible: false,
9388
+ styles: ribbonOverflowButtonStyle(theme)
9430
9389
  }
9431
9390
  }, strings: ribbonButtonsStrings(strings) }));
9432
9391
  }, [strings, ribbonPlugin, theme]);
9433
9392
  return (React.createElement("div", null,
9434
9393
  ribbon,
9435
- React.createElement(roosterjsReact.Rooster, { inDarkMode: isDarkThemed(theme), plugins: plugins, className: richTextEditorStyle, editorCreator: editorCreator,
9394
+ React.createElement(roosterjsReact.Rooster, { initialContent: initialContent, inDarkMode: isDarkThemed(theme), plugins: plugins, className: richTextEditorStyle, editorCreator: editorCreator,
9436
9395
  // TODO: confirm the color during inline images implementation
9437
9396
  imageSelectionBorderColor: 'blue',
9438
9397
  // doNotAdjustEditorColor is used to fix the default background color for Rooster component
@@ -20599,7 +20558,9 @@ const _videoGalleryRemoteParticipantsMemo = (remoteParticipants, isHideAttendeeN
20599
20558
  /* @conditional-compile-remove(reaction) */
20600
20559
  remoteParticipantReaction,
20601
20560
  /* @conditional-compile-remove(spotlight) */
20602
- participant.spotlight);
20561
+ participant.spotlight,
20562
+ /* @conditional-compile-remove(ppt-live) */
20563
+ participant.contentSharingStream);
20603
20564
  }));
20604
20565
  });
20605
20566
  };
@@ -20609,15 +20570,18 @@ raisedHand, // temp unknown type to build stable
20609
20570
  /* @conditional-compile-remove(reaction) */
20610
20571
  reaction, // temp unknown type to build stable
20611
20572
  /* @conditional-compile-remove(spotlight) */
20612
- spotlight // temp unknown type to build stable
20613
- ) => {
20573
+ spotlight, // temp unknown type to build stable
20574
+ /* @conditional-compile-remove(ppt-live) */
20575
+ contentSharingStream) => {
20614
20576
  return convertRemoteParticipantToVideoGalleryRemoteParticipant(userId, isMuted, isSpeaking, videoStreams, state, displayName,
20615
20577
  /* @conditional-compile-remove(raise-hand) */
20616
20578
  raisedHand,
20617
20579
  /* @conditional-compile-remove(reaction) */
20618
20580
  reaction,
20619
20581
  /* @conditional-compile-remove(spotlight) */
20620
- spotlight);
20582
+ spotlight,
20583
+ /* @conditional-compile-remove(ppt-live) */
20584
+ contentSharingStream);
20621
20585
  });
20622
20586
  /** @private */
20623
20587
  const convertRemoteParticipantToVideoGalleryRemoteParticipant = (userId, isMuted, isSpeaking, videoStreams, state, displayName,
@@ -20626,8 +20590,9 @@ raisedHand, // temp unknown type to build stable
20626
20590
  /* @conditional-compile-remove(reaction) */
20627
20591
  reaction, // temp unknown type to build stable
20628
20592
  /* @conditional-compile-remove(spotlight) */
20629
- spotlight // temp unknown type to build stable
20630
- ) => {
20593
+ spotlight, // temp unknown type to build stable
20594
+ /* @conditional-compile-remove(ppt-live) */
20595
+ contentSharingStream) => {
20631
20596
  const rawVideoStreamsArray = Object.values(videoStreams);
20632
20597
  let videoStream = undefined;
20633
20598
  let screenShareStream = undefined;
@@ -20641,6 +20606,10 @@ spotlight // temp unknown type to build stable
20641
20606
  if (sdkScreenShareStream) {
20642
20607
  screenShareStream = convertRemoteVideoStreamToVideoGalleryStream(sdkScreenShareStream);
20643
20608
  }
20609
+ /* @conditional-compile-remove(ppt-live) */
20610
+ if (contentSharingStream) {
20611
+ screenShareStream = convertRemoteContentSharingStreamToVideoGalleryStream(contentSharingStream);
20612
+ }
20644
20613
  return {
20645
20614
  userId,
20646
20615
  displayName,
@@ -20673,6 +20642,15 @@ const convertRemoteVideoStreamToVideoGalleryStream = (stream) => {
20673
20642
  streamSize: stream.streamSize
20674
20643
  };
20675
20644
  };
20645
+ /* @conditional-compile-remove(ppt-live) */
20646
+ const convertRemoteContentSharingStreamToVideoGalleryStream = (stream) => {
20647
+ return {
20648
+ isAvailable: !!stream,
20649
+ isReceiving: true,
20650
+ isMirrored: false,
20651
+ renderElement: stream
20652
+ };
20653
+ };
20676
20654
  /** @private */
20677
20655
  const memoizeLocalParticipant = memoizeOne((identifier, displayName, isMuted, isScreenSharingOn, localVideoStream,
20678
20656
  /* @conditional-compile-remove(rooms) */ role,