dce-reactkit 3.2.2-beta.36 → 3.2.2-beta.38

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/cjs/index.js CHANGED
@@ -3266,6 +3266,7 @@ const LogReviewer = (props) => {
3266
3266
  const description = genHumanReadableName(action);
3267
3267
  return (React__default["default"].createElement(CheckboxButton, { id: `LogReviewer-action-${action}-checkbox`, text: description, ariaLabel: `include logs with action type "${description}" in results`, noMarginOnRight: i === Object.keys(LogAction$1).length - 1, checked: actionErrorFilterState.action[action], onChanged: (checked) => {
3268
3268
  actionErrorFilterState.action[action] = checked;
3269
+ console.log(actionErrorFilterState, action, checked);
3269
3270
  dispatch({
3270
3271
  type: ActionType.UpdateActionErrorFilterState,
3271
3272
  actionErrorFilterState,
@@ -3280,6 +3281,7 @@ const LogReviewer = (props) => {
3280
3281
  const description = genHumanReadableName(target);
3281
3282
  return (React__default["default"].createElement(CheckboxButton, { id: `LogReviewer-target-${target}-checkbox`, text: description, ariaLabel: `include logs with target "${description}" in results`, checked: actionErrorFilterState.target[target], onChanged: (checked) => {
3282
3283
  actionErrorFilterState.target[target] = checked;
3284
+ console.log(actionErrorFilterState, target, checked);
3283
3285
  dispatch({
3284
3286
  type: ActionType.UpdateActionErrorFilterState,
3285
3287
  actionErrorFilterState,