@bitrise/bitkit 13.77.0 → 13.79.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
|
@@ -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
|
))}
|
|
@@ -30,7 +30,7 @@ const defaultComponents = (size: 'sm' | 'md' | 'lg', gap: GapType = '16'): Compo
|
|
|
30
30
|
</Box>
|
|
31
31
|
),
|
|
32
32
|
code: ({ node, ...props }) => (
|
|
33
|
-
<CodeSnippet variant="
|
|
33
|
+
<CodeSnippet variant="inline" {...props} size={codeSize}>
|
|
34
34
|
{props.children as string}
|
|
35
35
|
</CodeSnippet>
|
|
36
36
|
),
|
|
@@ -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
|
},
|