@bitrise/bitkit 13.331.0 → 13.333.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.331.0",
4
+ "version": "13.333.0",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+ssh://git@github.com/bitrise-io/bitkit.git"
@@ -0,0 +1,14 @@
1
+ import { forwardRef, Icon, IconProps } from 'chakra-ui-2--react';
2
+
3
+ const Container = forwardRef<IconProps, 'svg'>((props, ref) => (
4
+ <Icon ref={ref} viewBox="0 0 16 16" {...props}>
5
+ <path
6
+ fillRule="evenodd"
7
+ clipRule="evenodd"
8
+ d="M9.58887 2.18633C10.0498 1.92299 10.6161 1.92317 11.0771 2.18633L14.2441 3.9959C14.7114 4.26292 14.9999 4.76045 15 5.29863V8.89141L14.9863 9.09063C14.9247 9.54993 14.653 9.95948 14.2441 10.1932L6.41113 14.6697L6.2334 14.7557C5.87016 14.904 5.46283 14.9041 5.09961 14.7557L4.92285 14.6697L1.75586 12.8602C1.28855 12.5931 1 12.0957 1 11.5574V7.96563C1.00007 7.49472 1.22064 7.0546 1.58887 6.77324L1.75586 6.66289L9.58887 2.18633ZM6.41602 10.1863V12.9383L7.91602 12.0818V9.31133L6.41602 10.1863ZM2.5 11.5574L4.91602 12.9373V10.1785L2.5 8.7166V11.5574ZM9.41602 8.43633V11.2244L10.916 10.367V7.56133L9.41602 8.43633ZM12.416 6.68242V9.51055L13.5 8.89141V6.0418L12.416 6.68242ZM3.35059 7.47832L5.67285 8.88359L11.2842 5.61016L12.6406 4.80742L10.333 3.48906L3.35059 7.47832Z"
9
+ fill="currentColor"
10
+ />
11
+ </Icon>
12
+ ));
13
+
14
+ export default Container;
@@ -79,6 +79,7 @@ export { default as Commit } from './Commit';
79
79
  export { default as Conference } from './Conference';
80
80
  export { default as Configure } from './Configure';
81
81
  export { default as ConnectedAccounts } from './ConnectedAccounts';
82
+ export { default as Container } from './Container';
82
83
  export { default as Cordova } from './Cordova';
83
84
  export { default as Cpu } from './Cpu';
84
85
  export { default as Creditcard } from './Creditcard';
@@ -0,0 +1,14 @@
1
+ import { forwardRef, Icon, IconProps } from 'chakra-ui-2--react';
2
+
3
+ const Container = forwardRef<IconProps, 'svg'>((props, ref) => (
4
+ <Icon ref={ref} viewBox="0 0 24 24" {...props}>
5
+ <path
6
+ fillRule="evenodd"
7
+ clipRule="evenodd"
8
+ d="M14.3408 2.99845C14.9556 2.64713 15.7104 2.64719 16.3252 2.99845L20.9922 5.66447C21.6152 6.0205 21.9998 6.68329 22 7.4008V12.6987C21.9999 13.4163 21.6153 14.0799 20.9922 14.436L9.65918 20.9115L9.54199 20.9731C8.98955 21.2421 8.34343 21.2422 7.79102 20.9731L7.6748 20.9115L3.00781 18.2445C2.3848 17.8885 2.00007 17.2258 2 16.5082V11.2104C2.00013 10.5377 2.33801 9.91313 2.89355 9.54435L3.00781 9.47404L14.3408 2.99845ZM9.66602 14.433V18.6039L11.9521 17.2973V13.1L9.66602 14.433ZM4 16.5082L7.66602 18.6029V14.4252L4 12.225V16.5082ZM13.9521 11.933V16.1547L16.2373 14.8481V10.6L13.9521 11.933ZM18.2373 9.43302V13.7055L20 12.6987V8.40568L18.2373 9.43302ZM5.12402 10.5678L8.67188 12.6967L18.8643 6.75138L15.333 4.73478L5.12402 10.5678Z"
9
+ fill="currentColor"
10
+ />
11
+ </Icon>
12
+ ));
13
+
14
+ export default Container;
@@ -76,6 +76,7 @@ export { default as Commit } from './Commit';
76
76
  export { default as Conference } from './Conference';
77
77
  export { default as Configure } from './Configure';
78
78
  export { default as ConnectedAccounts } from './ConnectedAccounts';
79
+ export { default as Container } from './Container';
79
80
  export { default as Cordova } from './Cordova';
80
81
  export { default as Cpu } from './Cpu';
81
82
  export { default as Creditcard } from './Creditcard';
@@ -63,6 +63,9 @@ const baseStyle = definePartsStyle(({ variant, isEmpty }) => ({
63
63
  _active: {
64
64
  bgColor: 'background/tertiary',
65
65
  },
66
+ '&:has(.hover-actions button:active)': {
67
+ bgColor: 'background/secondary',
68
+ },
66
69
  _selected: {
67
70
  tabIndex: 0,
68
71
  bgColor: 'background/selected',
@@ -73,6 +76,9 @@ const baseStyle = definePartsStyle(({ variant, isEmpty }) => ({
73
76
  bgColor: 'background/selected-hover',
74
77
  },
75
78
  },
79
+ '&[data-selected]:has(.hover-actions button:active)': {
80
+ bgColor: 'background/selected-hover',
81
+ },
76
82
  '&.show-ancestor-connectors::before': {
77
83
  content: '""',
78
84
  position: 'absolute',