dce-reactkit 3.2.2-beta.48 → 3.2.2-beta.49

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.
package/dist/esm/index.js CHANGED
@@ -3414,7 +3414,10 @@ const LogReviewer = (props) => {
3414
3414
  initDateFilterState,
3415
3415
  initTagFilterState,
3416
3416
  });
3417
- } }, "Reset"))));
3417
+ } },
3418
+ React.createElement(FontAwesomeIcon, { icon: faTimes }),
3419
+ ' ',
3420
+ "Reset"))));
3418
3421
  // Filter drawer
3419
3422
  let filterDrawer;
3420
3423
  if (expandedFilterDrawer) {
@@ -3574,7 +3577,7 @@ const LogReviewer = (props) => {
3574
3577
  (actionErrorFilterState.type === undefined
3575
3578
  || actionErrorFilterState.type === LogType$1.Action) && (React.createElement(TabBox, { title: "Action Log Details" },
3576
3579
  React.createElement(ButtonInputGroup, { label: "Action", className: "mb-2" },
3577
- React.createElement("div", { className: "grid gap-1" }, Object.keys(LogAction$1)
3580
+ React.createElement("div", { className: "d-flex gap-1 flex-wrap" }, Object.keys(LogAction$1)
3578
3581
  .map((action) => {
3579
3582
  const description = genHumanReadableName(action);
3580
3583
  return (React.createElement(CheckboxButton, { key: action, id: `LogReviewer-action-${action}-checkbox`, text: description, ariaLabel: `include logs with action type "${description}" in results`, noMarginOnRight: true, checked: actionErrorFilterState.action[action], onChanged: (checked) => {
@@ -3587,7 +3590,7 @@ const LogReviewer = (props) => {
3587
3590
  } }));
3588
3591
  }))),
3589
3592
  React.createElement(ButtonInputGroup, { label: "Target" },
3590
- React.createElement("div", { className: "grid gap-1" }, Object.keys(targetMap)
3593
+ React.createElement("div", { className: "d-flex gap-1 flex-wrap" }, Object.keys(targetMap)
3591
3594
  .map((target) => {
3592
3595
  const description = genHumanReadableName(target);
3593
3596
  return (React.createElement(CheckboxButton, { key: target, id: `LogReviewer-target-${target}-checkbox`, text: description, ariaLabel: `include logs with target "${description}" in results`, checked: actionErrorFilterState.target[target], onChanged: (checked) => {