@bitrise/bitkit 13.77.0 → 13.78.0

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bitrise/bitkit",
3
3
  "description": "Bitrise React component library",
4
- "version": "13.77.0",
4
+ "version": "13.78.0",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+ssh://git@github.com/bitrise-io/bitkit.git"
@@ -23,7 +23,7 @@ const FilterSwitchAdapter = (props: FilterSwitchAdapterProps) => {
23
23
  <FilterSwitchGroup onChange={(newValue) => onFilterChange(category, [newValue])} value={value}>
24
24
  {options.map((opt) => (
25
25
  <FilterSwitch key={opt} value={opt}>
26
- {iconsMap && iconsMap[opt] && <Icon name={iconsMap[opt]} size="16" />}
26
+ {iconsMap && iconsMap[opt] && <Icon color="icon/tertiary" name={iconsMap[opt]} size="16" />}
27
27
  {getOptionLabel(opt, optionsMap)}
28
28
  </FilterSwitch>
29
29
  ))}
@@ -54,8 +54,9 @@ const Tr = forwardRef<TableRowProps, 'tr'>((props, ref) => {
54
54
  iconName="ChevronDown"
55
55
  isTooltipDisabled
56
56
  onClick={onToggleClick}
57
+ className="row-expand-control"
57
58
  sx={{
58
- '> svg': {
59
+ '&.row-expand-control > svg': {
59
60
  transform: isOpen ? 'rotate(-180deg)' : 'rotate(0deg)',
60
61
  transition: '300ms',
61
62
  },