@indico-data/design-system 2.34.0 → 2.34.2

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/lib/index.css CHANGED
@@ -1012,7 +1012,6 @@ a:hover, .link:hover {
1012
1012
  .table .highlighted {
1013
1013
  box-shadow: var(--pf-table-highlighted-box-shadow);
1014
1014
  transform: translateY(-2px);
1015
- z-index: 1;
1016
1015
  border-bottom: var(--pf-border-md) solid var(--pf-table-highlighted-color);
1017
1016
  }
1018
1017
  .table .highlighted .rdt_TableCell {
package/lib/index.esm.css CHANGED
@@ -1012,7 +1012,6 @@ a:hover, .link:hover {
1012
1012
  .table .highlighted {
1013
1013
  box-shadow: var(--pf-table-highlighted-box-shadow);
1014
1014
  transform: translateY(-2px);
1015
- z-index: 1;
1016
1015
  border-bottom: var(--pf-border-md) solid var(--pf-table-highlighted-color);
1017
1016
  }
1018
1017
  .table .highlighted .rdt_TableCell {
package/lib/index.esm.js CHANGED
@@ -20984,7 +20984,7 @@ const Radio$2 = React__default.forwardRef((_a, ref) => {
20984
20984
 
20985
20985
  const Checkbox = React__default.forwardRef((_a, ref) => {
20986
20986
  var { id, label, name, value, onChange, isDisabled, isChecked = false } = _a, rest = __rest$1(_a, ["id", "label", "name", "value", "onChange", "isDisabled", "isChecked"]);
20987
- return (jsx("div", { className: "form-control", children: jsxs("div", { className: "checkbox-wrapper", children: [jsx("input", Object.assign({ "data-testid": `form-checkbox-input-${name}`, className: "checkbox-input", type: "checkbox", id: id, name: name, value: value, disabled: isDisabled, ref: ref, onChange: onChange, tabIndex: 0, "aria-describedby": id, "aria-label": label }, rest)), jsx("label", { htmlFor: id, className: "checkbox-input-label", "data-testid": `label-checkbox-input-${name}`, children: label })] }) }));
20987
+ return (jsx("div", { className: "form-control", children: jsxs("div", { className: "checkbox-wrapper", children: [jsx("input", Object.assign({ "data-testid": `form-checkbox-input-${name}`, className: "checkbox-input", type: "checkbox", id: id, name: name, value: value, checked: isChecked, disabled: isDisabled, ref: ref, onChange: onChange, tabIndex: 0, "aria-describedby": id, "aria-label": label }, rest)), jsx("label", { htmlFor: id, className: "checkbox-input-label", "data-testid": `label-checkbox-input-${name}`, children: label })] }) }));
20988
20988
  });
20989
20989
 
20990
20990
  const Toggle$1 = React__default.forwardRef((_a, ref) => {