@carbon/ibm-products 2.43.1-canary.1 → 2.43.1-canary.4

Sign up to get free protection for your applications and to get access to all the features.
@@ -192,6 +192,7 @@ export interface DataGridState<T extends object = any> extends TableCommonProps,
192
192
  onVirtualScroll?: (evt?: boolean) => void;
193
193
  fetchMoreData?: () => void;
194
194
  loadMoreThreshold?: number;
195
+ expandedRowIds?: object;
195
196
  onRowClick?: (row: any, event: any) => void;
196
197
  onSort?: boolean;
197
198
  }
@@ -1,2 +1,9 @@
1
+ /**
2
+ * Copyright IBM Corp. 2020, 2024
3
+ *
4
+ * This source code is licensed under the Apache-2.0 license found in the
5
+ * LICENSE file in the root directory of this source tree.
6
+ */
7
+ import { Hooks } from 'react-table';
8
+ declare const useNestedRows: (hooks: Hooks) => void;
1
9
  export default useNestedRows;
2
- declare function useNestedRows(hooks: any): void;
@@ -15,48 +15,33 @@ var blockClass = "".concat(pkg.prefix, "--datagrid");
15
15
  var useNestedRows = function useNestedRows(hooks) {
16
16
  useNestedRowExpander(hooks);
17
17
  var useInstance = function useInstance(instance) {
18
- useEffect(function () {
19
- var rows = instance.rows;
20
- var defaultExpandedRows = rows.filter(function (row) {
21
- var _row$original;
22
- return row === null || row === void 0 || (_row$original = row.original) === null || _row$original === void 0 ? void 0 : _row$original.defaultExpanded;
23
- });
24
- if (defaultExpandedRows !== null && defaultExpandedRows !== void 0 && defaultExpandedRows.length) {
25
- defaultExpandedRows.map(function (defaultExpandedRow) {
26
- if (!defaultExpandedRow.isExpanded && !defaultExpandedRow.hasExpanded) {
27
- var _defaultExpandedRow$t;
28
- defaultExpandedRow === null || defaultExpandedRow === void 0 || (_defaultExpandedRow$t = defaultExpandedRow.toggleRowExpanded) === null || _defaultExpandedRow$t === void 0 || _defaultExpandedRow$t.call(defaultExpandedRow);
29
- defaultExpandedRow.hasExpanded = true;
30
- return;
31
- }
32
- });
33
- }
34
- }, [instance, instance.rows]);
35
18
  // This useEffect will expand rows if they exist in the initialState obj
36
19
  useEffect(function () {
37
20
  var rows = instance.rows,
38
21
  initialState = instance.initialState;
39
- var expandedRowIds = initialState.expandedRowIds;
22
+ var _ref = initialState,
23
+ expandedRowIds = _ref.expandedRowIds;
40
24
  if (expandedRowIds) {
41
25
  Object.keys(expandedRowIds).forEach(function (key) {
42
26
  var row = rows.filter(function (r) {
43
27
  return r.id.toString() === key.toString();
44
28
  });
45
- if (row.length && key.toString() === row[0].id.toString()) {
46
- row[0].toggleRowExpanded();
29
+ if (row !== null && row !== void 0 && row.length && key.toString() === row[0].id.toString()) {
30
+ var _row$;
31
+ (_row$ = row[0]) === null || _row$ === void 0 || _row$.toggleRowExpanded();
47
32
  }
48
33
  });
49
34
  }
50
35
  }, [instance]);
51
36
  var marginLeft = 24;
52
- var getRowProps = function getRowProps(props, _ref) {
53
- var row = _ref.row;
37
+ var getRowProps = function getRowProps(props, _ref2) {
38
+ var row = _ref2.row;
54
39
  return [props, {
55
40
  className: cx(_defineProperty(_defineProperty({}, "".concat(blockClass, "__carbon-nested-row"), row.depth > 0), "".concat(blockClass, "__carbon-row-expanded"), row.isExpanded))
56
41
  }];
57
42
  };
58
- var getRowStyles = function getRowStyles(props, _ref2) {
59
- var row = _ref2.row;
43
+ var getRowStyles = function getRowStyles(props, _ref3) {
44
+ var row = _ref3.row;
60
45
  return [props, {
61
46
  style: {
62
47
  paddingLeft: "".concat(row.depth > 1 ? marginLeft * 2 + (row.depth - 1) * (marginLeft + marginLeft / 3) : row.depth === 1 ? marginLeft * 2 : 0, "px")
@@ -66,9 +51,9 @@ var useNestedRows = function useNestedRows(hooks) {
66
51
  var getIndentation = function getIndentation(depth) {
67
52
  return 32 * depth + 16;
68
53
  }; // row indentation padding
69
- var getCellProps = function getCellProps(props, _ref3) {
70
- var cell = _ref3.cell,
71
- instance = _ref3.instance;
54
+ var getCellProps = function getCellProps(props, _ref4) {
55
+ var cell = _ref4.cell,
56
+ instance = _ref4.instance;
72
57
  // we add a dynamic -ve margin right only if the cell is resized below minimum width i.e 50px, else we set the width based on indentation at different levels
73
58
  var isFirstCell = instance.columns.findIndex(function (c) {
74
59
  return c.id === cell.column.id;
@@ -1,7 +1,82 @@
1
- export const FormContext: React.Context<null>;
2
- export const FormNumberContext: React.Context<number>;
1
+ /**
2
+ * Copyright IBM Corp. 2022, 2023
3
+ *
4
+ * This source code is licensed under the Apache-2.0 license found in the
5
+ * LICENSE file in the root directory of this source tree.
6
+ */
7
+ import React, { ReactNode, PropsWithChildren } from 'react';
8
+ export declare const FormContext: React.Context<null>;
9
+ export declare const FormNumberContext: React.Context<number>;
10
+ interface EditTearsheetProps extends PropsWithChildren {
11
+ /**
12
+ * The cancel button text
13
+ */
14
+ cancelButtonText?: string;
15
+ /**
16
+ * The main content of the tearsheet
17
+ */
18
+ children?: ReactNode;
19
+ /**
20
+ * An optional class or classes to be added to the outermost element.
21
+ */
22
+ className?: string;
23
+ /**
24
+ * A description of the flow, displayed in the header area of the tearsheet.
25
+ */
26
+ description?: ReactNode;
27
+ /**
28
+ * Used to set the size of the influencer
29
+ */
30
+ influencerWidth?: 'narrow' | 'wide';
31
+ /**
32
+ * A label for the tearsheet, displayed in the header area of the tearsheet
33
+ * to maintain context for the tearsheet (e.g. as the title changes from page
34
+ * to page of a multi-page task).
35
+ */
36
+ label?: ReactNode;
37
+ /**
38
+ * An optional handler that is called when the user closes the tearsheet (by
39
+ * clicking the close button, if enabled, or clicking outside, if enabled).
40
+ * Returning `false` here prevents the modal from closing.
41
+ */
42
+ onClose?: () => boolean | void;
43
+ /**
44
+ * An optional handler that is called when a user changes forms via clicking
45
+ * an influencer nav item.
46
+ * Returns the index of the selected form.
47
+ */
48
+ onFormChange?: (formIndex: number) => number;
49
+ /**
50
+ * Specify a handler for submitting the tearsheet.
51
+ */
52
+ onRequestSubmit: () => void;
53
+ /**
54
+ * Specifies whether the tearsheet is currently open.
55
+ */
56
+ open?: boolean;
57
+ /**
58
+ * Specifies the aria label for the SideNav from Carbon UIShell
59
+ */
60
+ sideNavAriaLabel?: string;
61
+ /**
62
+ * The submit button text
63
+ */
64
+ submitButtonText?: string;
65
+ /**
66
+ * The main title of the tearsheet, displayed in the header area.
67
+ */
68
+ title?: ReactNode;
69
+ /**
70
+ * The position of the top of tearsheet in the viewport. The 'normal'
71
+ * position (the default) is a short distance down from the top of the
72
+ * viewport, leaving room at the top for a global header bar to show through
73
+ * from below. The 'lower' position provides a little extra room at the top
74
+ * to allow an action bar navigation or breadcrumbs to also show through.
75
+ */
76
+ verticalPosition?: 'normal' | 'lower';
77
+ }
3
78
  /**
4
79
  * Use Tearsheet with medium to complex edits. See usage guidance for further information.
5
80
  */
6
- export let EditTearsheet: React.ForwardRefExoticComponent<React.RefAttributes<any>>;
7
- import React from 'react';
81
+ export declare let EditTearsheet: React.ForwardRefExoticComponent<EditTearsheetProps & React.RefAttributes<HTMLDivElement>>;
82
+ export {};
@@ -5,7 +5,7 @@
5
5
  * LICENSE file in the root directory of this source tree.
6
6
  */
7
7
 
8
- import { objectWithoutProperties as _objectWithoutProperties, slicedToArray as _slicedToArray, extends as _extends } from '../../_virtual/_rollupPluginBabelHelpers.js';
8
+ import { objectWithoutProperties as _objectWithoutProperties, slicedToArray as _slicedToArray, objectSpread2 as _objectSpread2 } from '../../_virtual/_rollupPluginBabelHelpers.js';
9
9
  import React__default, { forwardRef, useState, useRef, createContext } from 'react';
10
10
  import PropTypes from '../../node_modules/prop-types/index.js';
11
11
  import cx from 'classnames';
@@ -13,6 +13,7 @@ import { Form, SideNav, SideNavItems, SideNavMenuItem } from '@carbon/react';
13
13
  import { pkg } from '../../settings.js';
14
14
  import { getDevtoolsProps } from '../../global/js/utils/devtools.js';
15
15
  import { TearsheetShell } from '../Tearsheet/TearsheetShell.js';
16
+ import { prepareProps } from '../../global/js/utils/props-helper.js';
16
17
 
17
18
  var _excluded = ["cancelButtonText", "children", "className", "description", "influencerWidth", "label", "onClose", "open", "submitButtonText", "title", "verticalPosition", "onRequestSubmit", "onFormChange", "sideNavAriaLabel"];
18
19
  var componentName = 'EditTearsheet';
@@ -34,6 +35,9 @@ var defaults = {
34
35
  sideNavAriaLabel: 'Side navigation'
35
36
  };
36
37
 
38
+ // Note that the descriptions here should be kept in sync with those for the
39
+ // corresponding props for TearsheetNarrow and TearsheetShell components.
40
+
37
41
  /**
38
42
  * Use Tearsheet with medium to complex edits. See usage guidance for further information.
39
43
  */
@@ -56,6 +60,17 @@ var EditTearsheet = /*#__PURE__*/forwardRef(function (_ref, ref) {
56
60
  _ref$sideNavAriaLabel = _ref.sideNavAriaLabel,
57
61
  sideNavAriaLabel = _ref$sideNavAriaLabel === void 0 ? defaults.sideNavAriaLabel : _ref$sideNavAriaLabel,
58
62
  rest = _objectWithoutProperties(_ref, _excluded);
63
+ var actions = [{
64
+ key: 'edit-action-button-submit',
65
+ label: submitButtonText,
66
+ onClick: onRequestSubmit,
67
+ kind: 'primary'
68
+ }, {
69
+ key: 'edit-action-button-cancel',
70
+ label: cancelButtonText,
71
+ onClick: onClose,
72
+ kind: 'ghost'
73
+ }];
59
74
  var _useState = useState(0),
60
75
  _useState2 = _slicedToArray(_useState, 2),
61
76
  currentForm = _useState2[0],
@@ -64,7 +79,7 @@ var EditTearsheet = /*#__PURE__*/forwardRef(function (_ref, ref) {
64
79
  _useState4 = _slicedToArray(_useState3, 2),
65
80
  formTitles = _useState4[0],
66
81
  setFormTitles = _useState4[1];
67
- var contentRef = useRef();
82
+ var contentRef = useRef(null);
68
83
  var handleCurrentForm = function handleCurrentForm(formIndex) {
69
84
  setCurrentForm(formIndex);
70
85
  if (onFormChange) {
@@ -89,30 +104,22 @@ var EditTearsheet = /*#__PURE__*/forwardRef(function (_ref, ref) {
89
104
  }, title);
90
105
  }))));
91
106
  }
92
- return /*#__PURE__*/React__default.createElement(TearsheetShell, _extends({}, rest, getDevtoolsProps(componentName), {
93
- actions: [{
94
- key: 'edit-action-button-submit',
95
- label: submitButtonText,
96
- onClick: onRequestSubmit,
97
- kind: 'primary'
98
- }, {
99
- key: 'edit-action-button-cancel',
100
- label: cancelButtonText,
101
- onClick: onClose,
102
- kind: 'ghost'
103
- }],
107
+ return /*#__PURE__*/React__default.createElement(TearsheetShell, _objectSpread2(_objectSpread2(_objectSpread2(_objectSpread2({}, getDevtoolsProps(componentName)), prepareProps(rest)), {}, {
108
+ actions: actions,
109
+ children: children,
104
110
  className: cx(blockClass, className),
105
111
  description: description,
106
- hasCloseIcon: false,
107
- influencer: defaultInfluencer(),
108
- influencerPosition: "left",
112
+ influencerPosition: 'left',
109
113
  influencerWidth: influencerWidth,
110
114
  label: label,
111
115
  onClose: onClose,
112
116
  open: open,
113
- size: "wide",
117
+ size: 'wide',
114
118
  title: title,
115
- verticalPosition: verticalPosition,
119
+ verticalPosition: verticalPosition
120
+ }, rest), {}, {
121
+ hasCloseIcon: false,
122
+ influencer: defaultInfluencer(),
116
123
  ref: ref
117
124
  }), /*#__PURE__*/React__default.createElement("div", {
118
125
  className: "".concat(blockClass, "__content"),
@@ -81,7 +81,8 @@ var ScrollGradient = /*#__PURE__*/React__default.forwardRef(function (_ref, ref)
81
81
  }, getDevtoolsProps(componentName)), /*#__PURE__*/React__default.createElement("div", {
82
82
  onScroll: scrollHandler,
83
83
  ref: setRefs,
84
- className: cx("".concat(blockClass, "__content"), scrollElementClassName)
84
+ className: cx("".concat(blockClass, "__content"), scrollElementClassName),
85
+ tabIndex: 0
85
86
  }, /*#__PURE__*/React__default.createElement("div", {
86
87
  ref: contentChildrenContainer,
87
88
  className: "".concat(blockClass, "__content-children")
@@ -192,6 +192,7 @@ export interface DataGridState<T extends object = any> extends TableCommonProps,
192
192
  onVirtualScroll?: (evt?: boolean) => void;
193
193
  fetchMoreData?: () => void;
194
194
  loadMoreThreshold?: number;
195
+ expandedRowIds?: object;
195
196
  onRowClick?: (row: any, event: any) => void;
196
197
  onSort?: boolean;
197
198
  }
@@ -1,2 +1,9 @@
1
+ /**
2
+ * Copyright IBM Corp. 2020, 2024
3
+ *
4
+ * This source code is licensed under the Apache-2.0 license found in the
5
+ * LICENSE file in the root directory of this source tree.
6
+ */
7
+ import { Hooks } from 'react-table';
8
+ declare const useNestedRows: (hooks: Hooks) => void;
1
9
  export default useNestedRows;
2
- declare function useNestedRows(hooks: any): void;
@@ -23,48 +23,33 @@ var blockClass = "".concat(settings.pkg.prefix, "--datagrid");
23
23
  var useNestedRows = function useNestedRows(hooks) {
24
24
  useNestedRowExpander["default"](hooks);
25
25
  var useInstance = function useInstance(instance) {
26
- React.useEffect(function () {
27
- var rows = instance.rows;
28
- var defaultExpandedRows = rows.filter(function (row) {
29
- var _row$original;
30
- return row === null || row === void 0 || (_row$original = row.original) === null || _row$original === void 0 ? void 0 : _row$original.defaultExpanded;
31
- });
32
- if (defaultExpandedRows !== null && defaultExpandedRows !== void 0 && defaultExpandedRows.length) {
33
- defaultExpandedRows.map(function (defaultExpandedRow) {
34
- if (!defaultExpandedRow.isExpanded && !defaultExpandedRow.hasExpanded) {
35
- var _defaultExpandedRow$t;
36
- defaultExpandedRow === null || defaultExpandedRow === void 0 || (_defaultExpandedRow$t = defaultExpandedRow.toggleRowExpanded) === null || _defaultExpandedRow$t === void 0 || _defaultExpandedRow$t.call(defaultExpandedRow);
37
- defaultExpandedRow.hasExpanded = true;
38
- return;
39
- }
40
- });
41
- }
42
- }, [instance, instance.rows]);
43
26
  // This useEffect will expand rows if they exist in the initialState obj
44
27
  React.useEffect(function () {
45
28
  var rows = instance.rows,
46
29
  initialState = instance.initialState;
47
- var expandedRowIds = initialState.expandedRowIds;
30
+ var _ref = initialState,
31
+ expandedRowIds = _ref.expandedRowIds;
48
32
  if (expandedRowIds) {
49
33
  Object.keys(expandedRowIds).forEach(function (key) {
50
34
  var row = rows.filter(function (r) {
51
35
  return r.id.toString() === key.toString();
52
36
  });
53
- if (row.length && key.toString() === row[0].id.toString()) {
54
- row[0].toggleRowExpanded();
37
+ if (row !== null && row !== void 0 && row.length && key.toString() === row[0].id.toString()) {
38
+ var _row$;
39
+ (_row$ = row[0]) === null || _row$ === void 0 || _row$.toggleRowExpanded();
55
40
  }
56
41
  });
57
42
  }
58
43
  }, [instance]);
59
44
  var marginLeft = 24;
60
- var getRowProps = function getRowProps(props, _ref) {
61
- var row = _ref.row;
45
+ var getRowProps = function getRowProps(props, _ref2) {
46
+ var row = _ref2.row;
62
47
  return [props, {
63
48
  className: cx__default["default"](_rollupPluginBabelHelpers.defineProperty(_rollupPluginBabelHelpers.defineProperty({}, "".concat(blockClass, "__carbon-nested-row"), row.depth > 0), "".concat(blockClass, "__carbon-row-expanded"), row.isExpanded))
64
49
  }];
65
50
  };
66
- var getRowStyles = function getRowStyles(props, _ref2) {
67
- var row = _ref2.row;
51
+ var getRowStyles = function getRowStyles(props, _ref3) {
52
+ var row = _ref3.row;
68
53
  return [props, {
69
54
  style: {
70
55
  paddingLeft: "".concat(row.depth > 1 ? marginLeft * 2 + (row.depth - 1) * (marginLeft + marginLeft / 3) : row.depth === 1 ? marginLeft * 2 : 0, "px")
@@ -74,9 +59,9 @@ var useNestedRows = function useNestedRows(hooks) {
74
59
  var getIndentation = function getIndentation(depth) {
75
60
  return 32 * depth + 16;
76
61
  }; // row indentation padding
77
- var getCellProps = function getCellProps(props, _ref3) {
78
- var cell = _ref3.cell,
79
- instance = _ref3.instance;
62
+ var getCellProps = function getCellProps(props, _ref4) {
63
+ var cell = _ref4.cell,
64
+ instance = _ref4.instance;
80
65
  // we add a dynamic -ve margin right only if the cell is resized below minimum width i.e 50px, else we set the width based on indentation at different levels
81
66
  var isFirstCell = instance.columns.findIndex(function (c) {
82
67
  return c.id === cell.column.id;
@@ -1,7 +1,82 @@
1
- export const FormContext: React.Context<null>;
2
- export const FormNumberContext: React.Context<number>;
1
+ /**
2
+ * Copyright IBM Corp. 2022, 2023
3
+ *
4
+ * This source code is licensed under the Apache-2.0 license found in the
5
+ * LICENSE file in the root directory of this source tree.
6
+ */
7
+ import React, { ReactNode, PropsWithChildren } from 'react';
8
+ export declare const FormContext: React.Context<null>;
9
+ export declare const FormNumberContext: React.Context<number>;
10
+ interface EditTearsheetProps extends PropsWithChildren {
11
+ /**
12
+ * The cancel button text
13
+ */
14
+ cancelButtonText?: string;
15
+ /**
16
+ * The main content of the tearsheet
17
+ */
18
+ children?: ReactNode;
19
+ /**
20
+ * An optional class or classes to be added to the outermost element.
21
+ */
22
+ className?: string;
23
+ /**
24
+ * A description of the flow, displayed in the header area of the tearsheet.
25
+ */
26
+ description?: ReactNode;
27
+ /**
28
+ * Used to set the size of the influencer
29
+ */
30
+ influencerWidth?: 'narrow' | 'wide';
31
+ /**
32
+ * A label for the tearsheet, displayed in the header area of the tearsheet
33
+ * to maintain context for the tearsheet (e.g. as the title changes from page
34
+ * to page of a multi-page task).
35
+ */
36
+ label?: ReactNode;
37
+ /**
38
+ * An optional handler that is called when the user closes the tearsheet (by
39
+ * clicking the close button, if enabled, or clicking outside, if enabled).
40
+ * Returning `false` here prevents the modal from closing.
41
+ */
42
+ onClose?: () => boolean | void;
43
+ /**
44
+ * An optional handler that is called when a user changes forms via clicking
45
+ * an influencer nav item.
46
+ * Returns the index of the selected form.
47
+ */
48
+ onFormChange?: (formIndex: number) => number;
49
+ /**
50
+ * Specify a handler for submitting the tearsheet.
51
+ */
52
+ onRequestSubmit: () => void;
53
+ /**
54
+ * Specifies whether the tearsheet is currently open.
55
+ */
56
+ open?: boolean;
57
+ /**
58
+ * Specifies the aria label for the SideNav from Carbon UIShell
59
+ */
60
+ sideNavAriaLabel?: string;
61
+ /**
62
+ * The submit button text
63
+ */
64
+ submitButtonText?: string;
65
+ /**
66
+ * The main title of the tearsheet, displayed in the header area.
67
+ */
68
+ title?: ReactNode;
69
+ /**
70
+ * The position of the top of tearsheet in the viewport. The 'normal'
71
+ * position (the default) is a short distance down from the top of the
72
+ * viewport, leaving room at the top for a global header bar to show through
73
+ * from below. The 'lower' position provides a little extra room at the top
74
+ * to allow an action bar navigation or breadcrumbs to also show through.
75
+ */
76
+ verticalPosition?: 'normal' | 'lower';
77
+ }
3
78
  /**
4
79
  * Use Tearsheet with medium to complex edits. See usage guidance for further information.
5
80
  */
6
- export let EditTearsheet: React.ForwardRefExoticComponent<React.RefAttributes<any>>;
7
- import React from 'react';
81
+ export declare let EditTearsheet: React.ForwardRefExoticComponent<EditTearsheetProps & React.RefAttributes<HTMLDivElement>>;
82
+ export {};
@@ -17,6 +17,7 @@ var react = require('@carbon/react');
17
17
  var settings = require('../../settings.js');
18
18
  var devtools = require('../../global/js/utils/devtools.js');
19
19
  var TearsheetShell = require('../Tearsheet/TearsheetShell.js');
20
+ var propsHelper = require('../../global/js/utils/props-helper.js');
20
21
 
21
22
  function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
22
23
 
@@ -43,6 +44,9 @@ var defaults = {
43
44
  sideNavAriaLabel: 'Side navigation'
44
45
  };
45
46
 
47
+ // Note that the descriptions here should be kept in sync with those for the
48
+ // corresponding props for TearsheetNarrow and TearsheetShell components.
49
+
46
50
  /**
47
51
  * Use Tearsheet with medium to complex edits. See usage guidance for further information.
48
52
  */
@@ -65,6 +69,17 @@ exports.EditTearsheet = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
65
69
  _ref$sideNavAriaLabel = _ref.sideNavAriaLabel,
66
70
  sideNavAriaLabel = _ref$sideNavAriaLabel === void 0 ? defaults.sideNavAriaLabel : _ref$sideNavAriaLabel,
67
71
  rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref, _excluded);
72
+ var actions = [{
73
+ key: 'edit-action-button-submit',
74
+ label: submitButtonText,
75
+ onClick: onRequestSubmit,
76
+ kind: 'primary'
77
+ }, {
78
+ key: 'edit-action-button-cancel',
79
+ label: cancelButtonText,
80
+ onClick: onClose,
81
+ kind: 'ghost'
82
+ }];
68
83
  var _useState = React.useState(0),
69
84
  _useState2 = _rollupPluginBabelHelpers.slicedToArray(_useState, 2),
70
85
  currentForm = _useState2[0],
@@ -73,7 +88,7 @@ exports.EditTearsheet = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
73
88
  _useState4 = _rollupPluginBabelHelpers.slicedToArray(_useState3, 2),
74
89
  formTitles = _useState4[0],
75
90
  setFormTitles = _useState4[1];
76
- var contentRef = React.useRef();
91
+ var contentRef = React.useRef(null);
77
92
  var handleCurrentForm = function handleCurrentForm(formIndex) {
78
93
  setCurrentForm(formIndex);
79
94
  if (onFormChange) {
@@ -98,30 +113,22 @@ exports.EditTearsheet = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
98
113
  }, title);
99
114
  }))));
100
115
  }
101
- return /*#__PURE__*/React__default["default"].createElement(TearsheetShell.TearsheetShell, _rollupPluginBabelHelpers["extends"]({}, rest, devtools.getDevtoolsProps(componentName), {
102
- actions: [{
103
- key: 'edit-action-button-submit',
104
- label: submitButtonText,
105
- onClick: onRequestSubmit,
106
- kind: 'primary'
107
- }, {
108
- key: 'edit-action-button-cancel',
109
- label: cancelButtonText,
110
- onClick: onClose,
111
- kind: 'ghost'
112
- }],
116
+ return /*#__PURE__*/React__default["default"].createElement(TearsheetShell.TearsheetShell, _rollupPluginBabelHelpers.objectSpread2(_rollupPluginBabelHelpers.objectSpread2(_rollupPluginBabelHelpers.objectSpread2(_rollupPluginBabelHelpers.objectSpread2({}, devtools.getDevtoolsProps(componentName)), propsHelper.prepareProps(rest)), {}, {
117
+ actions: actions,
118
+ children: children,
113
119
  className: cx__default["default"](blockClass, className),
114
120
  description: description,
115
- hasCloseIcon: false,
116
- influencer: defaultInfluencer(),
117
- influencerPosition: "left",
121
+ influencerPosition: 'left',
118
122
  influencerWidth: influencerWidth,
119
123
  label: label,
120
124
  onClose: onClose,
121
125
  open: open,
122
- size: "wide",
126
+ size: 'wide',
123
127
  title: title,
124
- verticalPosition: verticalPosition,
128
+ verticalPosition: verticalPosition
129
+ }, rest), {}, {
130
+ hasCloseIcon: false,
131
+ influencer: defaultInfluencer(),
125
132
  ref: ref
126
133
  }), /*#__PURE__*/React__default["default"].createElement("div", {
127
134
  className: "".concat(blockClass, "__content"),
@@ -90,7 +90,8 @@ exports.ScrollGradient = /*#__PURE__*/React__default["default"].forwardRef(funct
90
90
  }, devtools.getDevtoolsProps(componentName)), /*#__PURE__*/React__default["default"].createElement("div", {
91
91
  onScroll: scrollHandler,
92
92
  ref: setRefs,
93
- className: cx__default["default"]("".concat(blockClass, "__content"), scrollElementClassName)
93
+ className: cx__default["default"]("".concat(blockClass, "__content"), scrollElementClassName),
94
+ tabIndex: 0
94
95
  }, /*#__PURE__*/React__default["default"].createElement("div", {
95
96
  ref: contentChildrenContainer,
96
97
  className: "".concat(blockClass, "__content-children")
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@carbon/ibm-products",
3
3
  "description": "Carbon for IBM Products",
4
- "version": "2.43.1-canary.1+2f1e993c3",
4
+ "version": "2.43.1-canary.4+3b3c48743",
5
5
  "license": "Apache-2.0",
6
6
  "main": "lib/index.js",
7
7
  "module": "es/index.js",
@@ -121,5 +121,5 @@
121
121
  "react": "^16.8.6 || ^17.0.1 || ^18.2.0",
122
122
  "react-dom": "^16.8.6 || ^17.0.1 || ^18.2.0"
123
123
  },
124
- "gitHead": "2f1e993c3f547c4e7ca0f2f79b4d94232b979f8b"
124
+ "gitHead": "3b3c4874302df3cb3d4498e61d93a63e72e65166"
125
125
  }