@carbon/ibm-products 2.43.2-canary.9 → 2.44.0-rc.1

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 (185) hide show
  1. package/css/index-full-carbon.css +51 -3
  2. package/css/index-full-carbon.css.map +1 -1
  3. package/css/index-full-carbon.min.css +1 -1
  4. package/css/index-full-carbon.min.css.map +1 -1
  5. package/css/index-without-carbon-released-only.css +12 -0
  6. package/css/index-without-carbon-released-only.css.map +1 -1
  7. package/css/index-without-carbon-released-only.min.css +1 -1
  8. package/css/index-without-carbon-released-only.min.css.map +1 -1
  9. package/css/index-without-carbon.css +51 -3
  10. package/css/index-without-carbon.css.map +1 -1
  11. package/css/index-without-carbon.min.css +1 -1
  12. package/css/index-without-carbon.min.css.map +1 -1
  13. package/css/index.css +51 -3
  14. package/css/index.css.map +1 -1
  15. package/css/index.min.css +1 -1
  16. package/css/index.min.css.map +1 -1
  17. package/es/components/ConditionBuilder/ConditionBlock/ConditionBlock.js +23 -21
  18. package/es/components/ConditionBuilder/ConditionBuilder.js +67 -20
  19. package/es/components/ConditionBuilder/ConditionBuilderActions/ConditionBuilderActions.d.ts +15 -0
  20. package/es/components/ConditionBuilder/ConditionBuilderActions/ConditionBuilderActions.js +129 -0
  21. package/es/components/ConditionBuilder/ConditionBuilderAdd/ConditionBuilderAdd.js +6 -4
  22. package/es/components/ConditionBuilder/ConditionBuilderButton/ConditionBuilderButton.d.ts +5 -1
  23. package/es/components/ConditionBuilder/ConditionBuilderButton/ConditionBuilderButton.js +16 -4
  24. package/es/components/ConditionBuilder/ConditionBuilderConnector/ConditionConnector.js +2 -2
  25. package/es/components/ConditionBuilder/ConditionBuilderConnector/GroupConnector.js +2 -2
  26. package/es/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.d.ts +9 -11
  27. package/es/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.js +36 -32
  28. package/es/components/ConditionBuilder/ConditionBuilderContext/ConditionBuilderProvider.d.ts +0 -1
  29. package/es/components/ConditionBuilder/ConditionBuilderContext/ConditionBuilderProvider.js +7 -2
  30. package/es/components/ConditionBuilder/ConditionBuilderContext/DataConfigs.d.ts +6 -1
  31. package/es/components/ConditionBuilder/ConditionBuilderContext/DataConfigs.js +18 -10
  32. package/es/components/ConditionBuilder/ConditionBuilderContext/translationObject.d.ts +39 -36
  33. package/es/components/ConditionBuilder/ConditionBuilderContext/translationObject.js +12 -10
  34. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItem.d.ts +1 -1
  35. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItem.js +24 -16
  36. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemNumber/ConditionBuilderItemNumber.js +19 -4
  37. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOption.d.ts +13 -0
  38. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOption.js +109 -0
  39. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/{ConditionBuilderItemOption.d.ts → ItemOptionForValueField.d.ts} +2 -2
  40. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/{ConditionBuilderItemOption.js → ItemOptionForValueField.js} +58 -33
  41. package/es/components/ConditionBuilder/ConditionGroupBuilder/ConditionGroupBuilder.js +4 -6
  42. package/es/components/ConditionBuilder/ConditionPreview/ConditionPreview.js +14 -5
  43. package/es/components/ConditionBuilder/utils/handleKeyboardEvents.js +1 -2
  44. package/es/components/ConditionBuilder/utils/util.d.ts +1 -0
  45. package/es/components/ConditionBuilder/utils/util.js +16 -1
  46. package/es/components/DataSpreadsheet/DataSpreadsheet.d.ts +12 -0
  47. package/es/components/DataSpreadsheet/DataSpreadsheet.js +29 -7
  48. package/es/components/DataSpreadsheet/DataSpreadsheetBody.d.ts +12 -0
  49. package/es/components/DataSpreadsheet/DataSpreadsheetBody.js +22 -6
  50. package/es/components/DataSpreadsheet/DataSpreadsheetHeader.js +3 -0
  51. package/es/components/Datagrid/Datagrid/Datagrid.js +2 -1
  52. package/es/components/Datagrid/Datagrid/DatagridContent.js +1 -1
  53. package/es/components/Datagrid/Datagrid/DatagridHeaderRow.js +11 -1
  54. package/es/components/Datagrid/Datagrid/DatagridRow.js +13 -2
  55. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.js +6 -1
  56. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterPanel.js +6 -1
  57. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterProvider.d.ts +3 -1
  58. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterProvider.js +6 -3
  59. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.d.ts +1 -1
  60. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.js +21 -16
  61. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditButton/InlineEditButton.js +1 -1
  62. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/InlineEditCell.js +74 -11
  63. package/es/components/Datagrid/Datagrid/addons/InlineEdit/handleGridKeyPress.js +10 -2
  64. package/es/components/Datagrid/types/index.d.ts +18 -4
  65. package/es/components/Datagrid/useActionsColumn.d.ts +8 -1
  66. package/es/components/Datagrid/useActionsColumn.js +7 -6
  67. package/es/components/Datagrid/useColumnRightAlign.d.ts +8 -1
  68. package/es/components/Datagrid/useColumnRightAlign.js +4 -3
  69. package/es/components/Datagrid/useInlineEdit.js +12 -2
  70. package/es/components/Datagrid/useNestedRows.js +32 -13
  71. package/es/components/Decorator/Decorator.js +2 -1
  72. package/es/components/DecoratorBase/DecoratorBase.js +3 -5
  73. package/es/components/DecoratorDualButton/DecoratorDualButton.js +2 -1
  74. package/es/components/DecoratorLink/DecoratorLink.js +2 -1
  75. package/es/components/DecoratorSingleButton/DecoratorSingleButton.js +2 -1
  76. package/es/components/EditTearsheet/EditTearsheet.d.ts +5 -1
  77. package/es/components/EditTearsheet/EditTearsheet.js +0 -1
  78. package/es/components/EditTearsheet/EditTearsheetForm.d.ts +45 -2
  79. package/es/components/EditTearsheet/EditTearsheetForm.js +3 -0
  80. package/es/components/HTTPErrors/HTTPError403/HTTPError403.js +6 -0
  81. package/es/components/HTTPErrors/HTTPError404/HTTPError404.js +6 -0
  82. package/es/components/HTTPErrors/HTTPErrorOther/HTTPErrorOther.js +6 -0
  83. package/es/components/RemoveModal/RemoveModal.d.ts +4 -0
  84. package/es/components/RemoveModal/RemoveModal.js +7 -1
  85. package/es/components/StatusIndicator/StatusIndicatorStep.js +87 -0
  86. package/es/components/Tearsheet/Tearsheet.d.ts +8 -1
  87. package/es/components/Tearsheet/Tearsheet.js +9 -1
  88. package/es/components/Tearsheet/TearsheetNarrow.d.ts +11 -0
  89. package/es/components/Tearsheet/TearsheetNarrow.js +12 -0
  90. package/es/components/Tearsheet/TearsheetShell.d.ts +10 -0
  91. package/es/components/Tearsheet/TearsheetShell.js +17 -3
  92. package/es/components/Toolbar/ToolbarButton.js +1 -1
  93. package/es/components/index.d.ts +1 -1
  94. package/es/index.js +1 -0
  95. package/lib/components/ConditionBuilder/ConditionBlock/ConditionBlock.js +23 -21
  96. package/lib/components/ConditionBuilder/ConditionBuilder.js +67 -20
  97. package/lib/components/ConditionBuilder/ConditionBuilderActions/ConditionBuilderActions.d.ts +15 -0
  98. package/lib/components/ConditionBuilder/ConditionBuilderActions/ConditionBuilderActions.js +137 -0
  99. package/lib/components/ConditionBuilder/ConditionBuilderAdd/ConditionBuilderAdd.js +6 -3
  100. package/lib/components/ConditionBuilder/ConditionBuilderButton/ConditionBuilderButton.d.ts +5 -1
  101. package/lib/components/ConditionBuilder/ConditionBuilderButton/ConditionBuilderButton.js +16 -4
  102. package/lib/components/ConditionBuilder/ConditionBuilderConnector/ConditionConnector.js +2 -2
  103. package/lib/components/ConditionBuilder/ConditionBuilderConnector/GroupConnector.js +2 -2
  104. package/lib/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.d.ts +9 -11
  105. package/lib/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.js +36 -32
  106. package/lib/components/ConditionBuilder/ConditionBuilderContext/ConditionBuilderProvider.d.ts +0 -1
  107. package/lib/components/ConditionBuilder/ConditionBuilderContext/ConditionBuilderProvider.js +7 -2
  108. package/lib/components/ConditionBuilder/ConditionBuilderContext/DataConfigs.d.ts +6 -1
  109. package/lib/components/ConditionBuilder/ConditionBuilderContext/DataConfigs.js +18 -10
  110. package/lib/components/ConditionBuilder/ConditionBuilderContext/translationObject.d.ts +39 -36
  111. package/lib/components/ConditionBuilder/ConditionBuilderContext/translationObject.js +12 -10
  112. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItem.d.ts +1 -1
  113. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItem.js +23 -15
  114. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemNumber/ConditionBuilderItemNumber.js +20 -5
  115. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOption.d.ts +13 -0
  116. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOption.js +117 -0
  117. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/{ConditionBuilderItemOption.d.ts → ItemOptionForValueField.d.ts} +2 -2
  118. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/{ConditionBuilderItemOption.js → ItemOptionForValueField.js} +56 -31
  119. package/lib/components/ConditionBuilder/ConditionGroupBuilder/ConditionGroupBuilder.js +4 -6
  120. package/lib/components/ConditionBuilder/ConditionPreview/ConditionPreview.js +14 -4
  121. package/lib/components/ConditionBuilder/utils/handleKeyboardEvents.js +1 -2
  122. package/lib/components/ConditionBuilder/utils/util.d.ts +1 -0
  123. package/lib/components/ConditionBuilder/utils/util.js +17 -0
  124. package/lib/components/DataSpreadsheet/DataSpreadsheet.d.ts +12 -0
  125. package/lib/components/DataSpreadsheet/DataSpreadsheet.js +29 -7
  126. package/lib/components/DataSpreadsheet/DataSpreadsheetBody.d.ts +12 -0
  127. package/lib/components/DataSpreadsheet/DataSpreadsheetBody.js +22 -6
  128. package/lib/components/DataSpreadsheet/DataSpreadsheetHeader.js +3 -0
  129. package/lib/components/Datagrid/Datagrid/Datagrid.js +2 -1
  130. package/lib/components/Datagrid/Datagrid/DatagridContent.js +1 -1
  131. package/lib/components/Datagrid/Datagrid/DatagridHeaderRow.js +11 -1
  132. package/lib/components/Datagrid/Datagrid/DatagridRow.js +13 -2
  133. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.js +6 -1
  134. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterPanel.js +6 -1
  135. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterProvider.d.ts +3 -1
  136. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterProvider.js +6 -3
  137. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.d.ts +1 -1
  138. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.js +21 -16
  139. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditButton/InlineEditButton.js +1 -1
  140. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/InlineEditCell.js +73 -10
  141. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleGridKeyPress.js +10 -2
  142. package/lib/components/Datagrid/types/index.d.ts +18 -4
  143. package/lib/components/Datagrid/useActionsColumn.d.ts +8 -1
  144. package/lib/components/Datagrid/useActionsColumn.js +7 -6
  145. package/lib/components/Datagrid/useColumnRightAlign.d.ts +8 -1
  146. package/lib/components/Datagrid/useColumnRightAlign.js +4 -3
  147. package/lib/components/Datagrid/useInlineEdit.js +12 -2
  148. package/lib/components/Datagrid/useNestedRows.js +32 -13
  149. package/lib/components/Decorator/Decorator.js +2 -1
  150. package/lib/components/DecoratorBase/DecoratorBase.js +3 -5
  151. package/lib/components/DecoratorDualButton/DecoratorDualButton.js +2 -1
  152. package/lib/components/DecoratorLink/DecoratorLink.js +2 -1
  153. package/lib/components/DecoratorSingleButton/DecoratorSingleButton.js +2 -1
  154. package/lib/components/EditTearsheet/EditTearsheet.d.ts +5 -1
  155. package/lib/components/EditTearsheet/EditTearsheet.js +0 -1
  156. package/lib/components/EditTearsheet/EditTearsheetForm.d.ts +45 -2
  157. package/lib/components/EditTearsheet/EditTearsheetForm.js +3 -0
  158. package/lib/components/HTTPErrors/HTTPError403/HTTPError403.js +6 -0
  159. package/lib/components/HTTPErrors/HTTPError404/HTTPError404.js +6 -0
  160. package/lib/components/HTTPErrors/HTTPErrorOther/HTTPErrorOther.js +6 -0
  161. package/lib/components/RemoveModal/RemoveModal.d.ts +4 -0
  162. package/lib/components/RemoveModal/RemoveModal.js +7 -1
  163. package/lib/components/StatusIndicator/StatusIndicatorStep.js +94 -0
  164. package/lib/components/Tearsheet/Tearsheet.d.ts +8 -1
  165. package/lib/components/Tearsheet/Tearsheet.js +9 -1
  166. package/lib/components/Tearsheet/TearsheetNarrow.d.ts +11 -0
  167. package/lib/components/Tearsheet/TearsheetNarrow.js +12 -0
  168. package/lib/components/Tearsheet/TearsheetShell.d.ts +10 -0
  169. package/lib/components/Tearsheet/TearsheetShell.js +16 -2
  170. package/lib/components/Toolbar/ToolbarButton.js +1 -1
  171. package/lib/components/index.d.ts +1 -1
  172. package/lib/index.js +5 -0
  173. package/package.json +7 -6
  174. package/scss/components/ConditionBuilder/styles/_conditionBuilderCondition.scss +9 -1
  175. package/scss/components/ConditionBuilder/styles/_conditionBuilderItem.scss +26 -1
  176. package/scss/components/DataSpreadsheet/_data-spreadsheet.scss +7 -0
  177. package/scss/components/Datagrid/styles/_useInlineEdit.scss +13 -0
  178. package/scss/components/StatusIcon/_status-icon.scss +4 -4
  179. package/scss/components/StringFormatter/_string-formatter.scss +2 -2
  180. package/scss/components/UserProfileImage/_user-profile-image.scss +6 -2
  181. package/telemetry.yml +15 -3
  182. package/es/components/ConditionBuilder/utils/checkForHoldingKey.d.ts +0 -1
  183. package/es/components/ConditionBuilder/utils/checkForHoldingKey.js +0 -16
  184. package/lib/components/ConditionBuilder/utils/checkForHoldingKey.d.ts +0 -1
  185. package/lib/components/ConditionBuilder/utils/checkForHoldingKey.js +0 -20
@@ -29,7 +29,7 @@ function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'defau
29
29
  var React__default = /*#__PURE__*/_interopDefaultLegacy(React);
30
30
  var cx__default = /*#__PURE__*/_interopDefaultLegacy(cx);
31
31
 
32
- var _excluded = ["actions", "ariaLabel", "children", "className", "closeIconDescription", "description", "hasCloseIcon", "headerActions", "influencer", "influencerPosition", "influencerWidth", "label", "navigation", "onClose", "open", "portalTarget", "selectorPrimaryFocus", "size", "slug", "title", "verticalPosition", "launcherButtonRef"];
32
+ var _excluded = ["actions", "ariaLabel", "children", "className", "closeIconDescription", "description", "hasCloseIcon", "headerActions", "influencer", "influencerPosition", "influencerWidth", "label", "navigation", "onClose", "open", "portalTarget", "selectorPrimaryFocus", "selectorsFloatingMenus", "size", "slug", "title", "verticalPosition", "launcherButtonRef"];
33
33
 
34
34
  // The block part of our conventional BEM class names (bc__E--M).
35
35
  var bc = "".concat(settings.pkg.prefix, "--tearsheet");
@@ -88,6 +88,8 @@ var TearsheetShell = /*#__PURE__*/React__default["default"].forwardRef(function
88
88
  open = _ref.open,
89
89
  portalTargetIn = _ref.portalTarget,
90
90
  selectorPrimaryFocus = _ref.selectorPrimaryFocus,
91
+ _ref$selectorsFloatin = _ref.selectorsFloatingMenus,
92
+ selectorsFloatingMenus = _ref$selectorsFloatin === void 0 ? [] : _ref$selectorsFloatin,
91
93
  size = _ref.size,
92
94
  slug = _ref.slug,
93
95
  title = _ref.title,
@@ -258,7 +260,7 @@ var TearsheetShell = /*#__PURE__*/React__default["default"].forwardRef(function
258
260
  onKeyDown: keyDownListener,
259
261
  preventCloseOnClickOutside: !isPassive,
260
262
  ref: modalRef,
261
- selectorsFloatingMenus: [".".concat(carbonPrefix, "--overflow-menu-options"), ".".concat(carbonPrefix, "--tooltip"), '.flatpickr-calendar', ".".concat(bc, "__container")],
263
+ selectorsFloatingMenus: [".".concat(carbonPrefix, "--overflow-menu-options"), ".".concat(carbonPrefix, "--tooltip"), '.flatpickr-calendar', ".".concat(bc, "__container")].concat(_rollupPluginBabelHelpers.toConsumableArray(selectorsFloatingMenus)),
262
264
  size: "sm"
263
265
  }), includeHeader && /*#__PURE__*/React__default["default"].createElement(react.ModalHeader, {
264
266
  className: cx__default["default"]("".concat(bc, "__header"), _rollupPluginBabelHelpers.defineProperty(_rollupPluginBabelHelpers.defineProperty({}, "".concat(bc, "__header--with-close-icon"), effectiveHasCloseIcon), "".concat(bc, "__header--with-nav"), navigation)),
@@ -454,6 +456,18 @@ TearsheetShell.propTypes = _rollupPluginBabelHelpers.objectSpread2({
454
456
  */
455
457
  /**@ts-ignore*/
456
458
  portalTarget: portalType,
459
+ /**
460
+ * Specify a CSS selector that matches the DOM element that should be
461
+ * focused when the Modal opens.
462
+ */
463
+ selectorPrimaryFocus: index["default"].string,
464
+ /**
465
+ * Specify the CSS selectors that match the floating menus.
466
+ *
467
+ * See https://react.carbondesignsystem.com/?path=/docs/components-composedmodal--overview#focus-management
468
+ */
469
+ /**@ts-ignore*/
470
+ selectorsFloatingMenus: index["default"].arrayOf(index["default"].string),
457
471
  /**
458
472
  * Specifies the width of the tearsheet, 'narrow' or 'wide'.
459
473
  */
@@ -37,7 +37,7 @@ exports.ToolbarButton = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
37
37
  rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref, _excluded);
38
38
  var Icon = renderIcon;
39
39
  return /*#__PURE__*/React__default["default"].createElement(react.IconButton, _rollupPluginBabelHelpers["extends"]({
40
- align: ((_useContext = React.useContext(Toolbar.ToolbarContext)) === null || _useContext === void 0 ? void 0 : _useContext.vertical) && 'right'
40
+ align: (_useContext = React.useContext(Toolbar.ToolbarContext)) !== null && _useContext !== void 0 && _useContext.vertical ? 'right' : 'top'
41
41
  }, rest, {
42
42
  label: iconDescription,
43
43
  ref: ref,
@@ -50,7 +50,6 @@ export { Nav } from "./Nav";
50
50
  export { StringFormatter } from "./StringFormatter";
51
51
  export { UserAvatar } from "./UserAvatar";
52
52
  export { ScrollGradient } from "./ScrollGradient";
53
- export { StatusIndicator } from "./StatusIndicator";
54
53
  export { TagOverflow } from "./TagOverflow";
55
54
  export { ActionBar } from "./ActionBar";
56
55
  export { ConditionBuilder } from "./ConditionBuilder";
@@ -68,5 +67,6 @@ export { EditTearsheet, EditTearsheetForm } from "./EditTearsheet";
68
67
  export { Guidebanner, GuidebannerElement, GuidebannerElementButton, GuidebannerElementLink } from "./Guidebanner";
69
68
  export { InlineTip, InlineTipButton, InlineTipLink } from "./InlineTip";
70
69
  export { DescriptionList, DescriptionListBody, DescriptionListCell, DescriptionListRow } from "./DescriptionList";
70
+ export { StatusIndicator, StatusIndicatorStep } from "./StatusIndicator";
71
71
  export { FilterPanel, FilterPanelAccordion, FilterPanelAccordionItem, FilterPanelCheckbox, FilterPanelCheckboxWithOverflow, FilterPanelGroup, FilterPanelLabel, FilterPanelSearch } from "./FilterPanel";
72
72
  export { FeatureFlags as unstable_FeatureFlags, useFeatureFlag as unstable_useFeatureFlag, useFeatureFlags as unstable_useFeatureFlags } from "./FeatureFlags";
package/lib/index.js CHANGED
@@ -126,6 +126,7 @@ var StringFormatter = require('./components/StringFormatter/StringFormatter.js')
126
126
  var UserAvatar = require('./components/UserAvatar/UserAvatar.js');
127
127
  var ScrollGradient = require('./components/ScrollGradient/ScrollGradient.js');
128
128
  var StatusIndicator = require('./components/StatusIndicator/StatusIndicator.js');
129
+ var StatusIndicatorStep = require('./components/StatusIndicator/StatusIndicatorStep.js');
129
130
  var TagOverflow = require('./components/TagOverflow/TagOverflow.js');
130
131
  var ActionBar = require('./components/ActionBar/ActionBar.js');
131
132
  var FilterPanel = require('./components/FilterPanel/FilterPanel.js');
@@ -535,6 +536,10 @@ Object.defineProperty(exports, 'StatusIndicator', {
535
536
  enumerable: true,
536
537
  get: function () { return StatusIndicator.StatusIndicator; }
537
538
  });
539
+ Object.defineProperty(exports, 'StatusIndicatorStep', {
540
+ enumerable: true,
541
+ get: function () { return StatusIndicatorStep.StatusIndicatorStep; }
542
+ });
538
543
  Object.defineProperty(exports, 'TagOverflow', {
539
544
  enumerable: true,
540
545
  get: function () { return TagOverflow.TagOverflow; }
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.2-canary.9+8a0d1a48a",
4
+ "version": "2.44.0-rc.1",
5
5
  "license": "Apache-2.0",
6
6
  "main": "lib/index.js",
7
7
  "module": "es/index.js",
@@ -26,7 +26,8 @@
26
26
  "lib",
27
27
  "scss",
28
28
  "flags.js",
29
- "telemetry.yml"
29
+ "telemetry.yml",
30
+ ".playwright/INTERNAL_AVT_REPORT_DO_NOT_USE.json"
30
31
  ],
31
32
  "keywords": [
32
33
  "carbon",
@@ -80,7 +81,7 @@
80
81
  "fs-extra": "^11.2.0",
81
82
  "glob": "^10.3.10",
82
83
  "jest": "^29.7.0",
83
- "jest-config-ibm-cloud-cognitive": "^1.2.0",
84
+ "jest-config-ibm-cloud-cognitive": "^1.3.0-rc.0",
84
85
  "jest-environment-jsdom": "^29.7.0",
85
86
  "namor": "^1.1.2",
86
87
  "npm-check-updates": "^16.14.12",
@@ -88,14 +89,14 @@
88
89
  "rimraf": "^5.0.5",
89
90
  "rollup": "^2.79.1",
90
91
  "rollup-plugin-strip-banner": "^3.0.0",
91
- "sass": "^1.70.0",
92
+ "sass": "^1.77.2",
92
93
  "typescript-config-carbon": "^0.2.1",
93
94
  "yargs": "^17.7.2"
94
95
  },
95
96
  "dependencies": {
96
97
  "@babel/runtime": "^7.23.9",
97
98
  "@carbon/feature-flags": "^0.20.0",
98
- "@carbon/ibm-products-styles": "^2.39.1-canary.19+8a0d1a48a",
99
+ "@carbon/ibm-products-styles": "^2.40.0-rc.1",
99
100
  "@carbon/telemetry": "^0.1.0",
100
101
  "@dnd-kit/core": "^6.0.8",
101
102
  "@dnd-kit/modifiers": "^7.0.0",
@@ -119,5 +120,5 @@
119
120
  "react": "^16.8.6 || ^17.0.1 || ^18.2.0",
120
121
  "react-dom": "^16.8.6 || ^17.0.1 || ^18.2.0"
121
122
  },
122
- "gitHead": "8a0d1a48aca63b9f5111c7c10abf0e385151a1ad"
123
+ "gitHead": "e080b44f87ff3170280f8f3149dd9af1eaa2748d"
123
124
  }
@@ -1,6 +1,6 @@
1
1
  @use '@carbon/react/scss/theme' as *;
2
2
  @use '@carbon/react/scss/spacing' as *;
3
- @use '@carbon/react/scss/motion';
3
+ @use '@carbon/react/scss/motion' as *;
4
4
  @use '@carbon/styles/scss/components/tag' as *;
5
5
  @use '@carbon/styles/scss/utilities/focus-outline';
6
6
  @use '../../../global/styles/project-settings' as c4p-settings;
@@ -52,8 +52,16 @@ $block-class: #{c4p-settings.$pkg-prefix}--condition-builder;
52
52
  text-wrap: nowrap;
53
53
  }
54
54
  .#{$block-class}__group-preview {
55
+ height: 0;
56
+ opacity: 0;
57
+ pointer-events: none;
58
+ transition: all $duration-moderate-02 motion(exit, expressive);
59
+ }
60
+ .#{$block-class}__group-preview-animate {
61
+ height: auto;
55
62
  opacity: 0.5;
56
63
  pointer-events: none;
64
+ transition: all $duration-moderate-02 motion(exit, expressive);
57
65
  }
58
66
  .#{$block-class}__connector-disabled {
59
67
  display: flex;
@@ -212,7 +212,12 @@ $colors: (
212
212
  background-color: $layer;
213
213
  }
214
214
  .#{$block-class}__condition-wrapper > :nth-child(1) .#{$block-class}__button,
215
- .#{$block-class}__condition-wrapper > :nth-child(2) .#{$block-class}__button {
215
+ .#{$block-class}__condition-wrapper
216
+ > :nth-child(2)
217
+ .#{$block-class}__button:not(
218
+ .#{$block-class}__add-button,
219
+ .#{$block-class}__add_condition_group
220
+ ) {
216
221
  /* stylelint-disable-next-line carbon/theme-token-use */
217
222
  box-shadow: inset 0 #{$spacing-01} 0 0 var(--#{$block-class}__condition-wrapper-color);
218
223
  }
@@ -229,3 +234,23 @@ $colors: (
229
234
  align-self: center;
230
235
  margin-left: auto;
231
236
  }
237
+ .#{$block-class}__add_condition_group-wrapper {
238
+ z-index: -1;
239
+ margin-left: -50%;
240
+ opacity: 0;
241
+ pointer-events: none;
242
+ // stylelint-disable-next-line carbon/motion-duration-use, carbon/motion-easing-use
243
+ transition: all linear $duration-fast-02;
244
+ }
245
+ .#{$block-class}__add_condition_group-wrapper--show {
246
+ z-index: 0;
247
+ margin-left: 0;
248
+ opacity: 1;
249
+ pointer-events: all;
250
+ // stylelint-disable-next-line carbon/motion-duration-use, carbon/motion-easing-use
251
+ transition: all linear $duration-fast-02;
252
+ }
253
+ .#{$block-class}__invalid-input {
254
+ display: flex;
255
+ color: $support-warning;
256
+ }
@@ -201,6 +201,13 @@ $header-cell-background: $layer-accent-01;
201
201
  outline: 0;
202
202
  }
203
203
  }
204
+
205
+ .#{$block-class}__td-th.#{$block-class}__td_custom {
206
+ align-items: center;
207
+ justify-content: center;
208
+ gap: $spacing-03;
209
+ }
210
+
204
211
  .#{$block-class}__selection-area--element {
205
212
  position: absolute;
206
213
  z-index: 2;
@@ -80,6 +80,19 @@ $row-heights: (
80
80
  align-items: center;
81
81
  }
82
82
 
83
+ .#{variables.$block-class}__inline-edit--outer-cell-checkbox-focus
84
+ .cds--checkbox-label::before {
85
+ outline: $spacing-01 solid $focus;
86
+ outline-offset: 1px;
87
+ }
88
+
89
+ .#{variables.$block-class}__inline-edit--outer-cell-checkbox {
90
+ display: flex;
91
+ height: -webkit-fill-available;
92
+ justify-content: center;
93
+ padding-inline: $spacing-05;
94
+ }
95
+
83
96
  .#{variables.$block-class}__static--outer-cell {
84
97
  display: flex;
85
98
  height: -webkit-fill-available;
@@ -73,7 +73,7 @@ $themes: ('light', 'dark');
73
73
 
74
74
  $block-class: #{$pkg-prefix}--status-icon;
75
75
 
76
- @function --clr($name, $theme: light) {
76
+ @function carbon-clr($name, $theme: light) {
77
77
  // stylelint-disable-next-line carbon/theme-token-use
78
78
  $color: map-get(map-get($colors, $name), $theme);
79
79
  @return $color;
@@ -125,13 +125,13 @@ $block-class: #{$pkg-prefix}--status-icon;
125
125
  // stylelint-disable-next-line carbon/motion-duration-use, carbon/motion-easing-use
126
126
  animation: rotating 8000ms infinite linear;
127
127
  // stylelint-disable-next-line carbon/theme-token-use
128
- fill: --clr($icon, $theme);
128
+ fill: carbon-clr($icon, $theme);
129
129
  } @else if $icon == running {
130
130
  // stylelint-disable-next-line carbon/theme-token-use
131
- fill: --clr($icon, $theme);
131
+ fill: carbon-clr($icon, $theme);
132
132
  } @else {
133
133
  // stylelint-disable-next-line carbon/theme-token-use
134
- fill: --clr($icon, $theme);
134
+ fill: carbon-clr($icon, $theme);
135
135
  @media (prefers-reduced-motion) {
136
136
  .#{$block-class}--#{$theme}.#{$block-class}--#{$theme-key}-in-progress {
137
137
  animation: none;
@@ -79,7 +79,7 @@ $popover-block-class: #{c4p-settings.$carbon-prefix}--popover;
79
79
  .#{$block-class}
80
80
  .#{$popover-block-class}--top-right
81
81
  .#{$popover-block-class}-caret {
82
- /* stylelint-disable-next-line declaration-no-important */
82
+ /* stylelint-disable-next-line */
83
83
  inset-block-start: -1px !important;
84
84
  }
85
85
 
@@ -92,6 +92,6 @@ $popover-block-class: #{c4p-settings.$carbon-prefix}--popover;
92
92
  .#{$block-class}
93
93
  .#{$popover-block-class}--bottom-right
94
94
  .#{$popover-block-class}-caret {
95
- /* stylelint-disable-next-line declaration-no-important */
95
+ /* stylelint-disable-next-line */
96
96
  inset-block-end: -1px !important;
97
97
  }
@@ -44,7 +44,7 @@ $themes: (
44
44
 
45
45
  $theme-keys: map-keys($themes);
46
46
 
47
- @function --get-background-color($color, $key, $contrast-key) {
47
+ @function carbon-get-background-color($color, $key, $contrast-key) {
48
48
  @return map-get(
49
49
  $carbon-colors,
50
50
  #{$color}#{map-get(map-get($themes, $key), #{$contrast-key}-contrast)}
@@ -59,7 +59,11 @@ $theme-keys: map-keys($themes);
59
59
  @each $contrast-key in $theme-keys {
60
60
  .#{$block-class}--#{$key}.#{$block-class}--#{$contrast-key}-#{$color} {
61
61
  // stylelint-disable-next-line carbon/theme-token-use
62
- background-color: --get-background-color($color, $key, $contrast-key);
62
+ background-color: carbon-get-background-color(
63
+ $color,
64
+ $key,
65
+ $contrast-key
66
+ );
63
67
  }
64
68
  }
65
69
  }
package/telemetry.yml CHANGED
@@ -49,6 +49,7 @@ collect:
49
49
  - closeIconDescription
50
50
  - collapseButtonLabel
51
51
  - collapsible
52
+ - column
52
53
  - columnInputPlaceholder
53
54
  - columns
54
55
  - condition
@@ -100,6 +101,7 @@ collect:
100
101
  - formDescription
101
102
  - formTitle
102
103
  - fullHeightDatagrid
104
+ - getActionsState
103
105
  - getConditionState
104
106
  - getFilterFlyoutProps
105
107
  - getOptions
@@ -121,6 +123,7 @@ collect:
121
123
  - handleResize
122
124
  - hasActions
123
125
  - hasCloseIcon
126
+ - hasCustomRowHeader
124
127
  - hasFieldset
125
128
  - headerGroups
126
129
  - HeaderRow
@@ -262,10 +265,13 @@ collect:
262
265
  - radio
263
266
  - reactTableFiltersState
264
267
  - renderIcon
268
+ - renderRowHeader
269
+ - renderRowHeaderDirection
265
270
  - resetToDefaultLabel
266
271
  - resizerAriaLabel
267
272
  - rightAlign
268
273
  - row
274
+ - rowActions
269
275
  - rows
270
276
  - rowSize
271
277
  - score
@@ -284,10 +290,12 @@ collect:
284
290
  - selectAllLabel
285
291
  - selectAllToggle
286
292
  - selected
293
+ - selectedHeaderReorderActive
287
294
  - selectedOption
288
295
  - selectionAreas
289
296
  - selectorPageContent
290
297
  - selectorPrimaryFocus
298
+ - selectorsFloatingMenus
291
299
  - sequence
292
300
  - setActiveCellCoordinates
293
301
  - setAllFilters
@@ -301,6 +309,7 @@ collect:
301
309
  - setMouseOverRowIndex
302
310
  - setMultiSelection
303
311
  - setPopoverOpen
312
+ - setSelectedHeaderReorderActive
304
313
  - setSelectionAreaData
305
314
  - setSelectionAreas
306
315
  - showAllTagsLabel
@@ -520,14 +529,14 @@ collect:
520
529
  - enableSubGroup
521
530
  # ConditionBuilderButton
522
531
  - hideLabel
532
+ - isInvalid
523
533
  - onBlur
524
534
  - onFocus
525
535
  - onMouseEnter
526
536
  - onMouseLeave
527
537
  - tooltipAlign
538
+ - wrapperClassName
528
539
  - wrapperProps
529
- # ConditionBuilderContent
530
- - getActionsState
531
540
  # ConditionBuilderItem
532
541
  - popOverClassName
533
542
  # ConditionConnector
@@ -748,7 +757,6 @@ collect:
748
757
  - warnText
749
758
  # OverflowCheckboxes
750
759
  - applyFilters
751
- - column
752
760
  - components
753
761
  - filtersState
754
762
  - setFiltersState
@@ -779,6 +787,7 @@ collect:
779
787
  - inputInvalidText
780
788
  - inputLabelText
781
789
  - inputPlaceholderText
790
+ - primaryDangerDescription
782
791
  - resourceName
783
792
  - textConfirmation
784
793
  # RowSizeDropdown
@@ -1010,6 +1019,9 @@ collect:
1010
1019
  # General - primaryButtonPlacement
1011
1020
  - bottom
1012
1021
  - top
1022
+ # General - renderRowHeaderDirection
1023
+ - left
1024
+ - right
1013
1025
  # General - rowSize
1014
1026
  - lg
1015
1027
  - md
@@ -1 +0,0 @@
1
- export function checkForHoldingKey(evt: any, key: any): any;
@@ -1,16 +0,0 @@
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
-
8
- var checkForHoldingKey = function checkForHoldingKey(evt, key) {
9
- // possible key inputs: altKey,ctrlKey,metaKey,shiftKey
10
- if (key === 'cmd') {
11
- return evt.metaKey || evt.ctrlKey;
12
- }
13
- return evt[key];
14
- };
15
-
16
- export { checkForHoldingKey };
@@ -1 +0,0 @@
1
- export function checkForHoldingKey(evt: any, key: any): any;
@@ -1,20 +0,0 @@
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
-
8
- 'use strict';
9
-
10
- Object.defineProperty(exports, '__esModule', { value: true });
11
-
12
- var checkForHoldingKey = function checkForHoldingKey(evt, key) {
13
- // possible key inputs: altKey,ctrlKey,metaKey,shiftKey
14
- if (key === 'cmd') {
15
- return evt.metaKey || evt.ctrlKey;
16
- }
17
- return evt[key];
18
- };
19
-
20
- exports.checkForHoldingKey = checkForHoldingKey;