@webex/widgets 1.20.9 → 1.21.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.
@@ -16197,6 +16197,7 @@ function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Re
16197
16197
  * @param {Function} [props.controls] Controls to display
16198
16198
  * @param {number} [props.controlsCollapseRangeStart] Zero-based index of the first collapsible control (can be negative)
16199
16199
  * @param {number} [props.controlsCollapseRangeEnd] Zero-based index before the last collapsible control (can be negative)
16200
+ * @param {string} [props.layout] Layout type for remote video
16200
16201
  * @param {string} [props.style] Custom style to apply
16201
16202
  * @returns {Object} JSX of the component
16202
16203
  */
@@ -16242,6 +16243,7 @@ var WebexMeetingWidget = /*#__PURE__*/function (_Component) {
16242
16243
  className: "webex-meeting-widget__content",
16243
16244
  meetingID: meeting.ID,
16244
16245
  logo: logo,
16246
+ layout: this.props.layout,
16245
16247
  controls: this.props.controls,
16246
16248
  controlsCollapseRangeStart: this.props.controlsCollapseRangeStart,
16247
16249
  controlsCollapseRangeEnd: this.props.controlsCollapseRangeEnd
@@ -16265,13 +16267,15 @@ WebexMeetingWidget.propTypes = {
16265
16267
  controlsCollapseRangeStart: T.number,
16266
16268
  controlsCollapseRangeEnd: T.number,
16267
16269
  meetingDestination: T.string.isRequired,
16268
- style: T.shape()
16270
+ style: T.shape(),
16271
+ layout: T.string
16269
16272
  };
16270
16273
  WebexMeetingWidget.defaultProps = {
16271
16274
  className: '',
16272
16275
  controls: undefined,
16273
16276
  controlsCollapseRangeStart: undefined,
16274
16277
  controlsCollapseRangeEnd: undefined,
16278
+ layout: 'Grid',
16275
16279
  style: {}
16276
16280
  };
16277
16281
  var appName = process.env.NODE_ENV === 'production' ? 'webex-widgets-meeting' : 'webex-widgets-meeting-dev';
@@ -16282,7 +16286,7 @@ var WebexMeeting = ii(ni(WebexMeetingWidget), function (props) {
16282
16286
  },
16283
16287
  config: {
16284
16288
  appName: appName,
16285
- appVersion: "1.20.8"
16289
+ appVersion: "1.20.9"
16286
16290
  }
16287
16291
  });
16288
16292
  return new WebexSDKAdapter(webex);