@bitrise/bitkit 13.336.0 → 13.337.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.336.0",
4
+ "version": "13.337.0",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+ssh://git@github.com/bitrise-io/bitkit.git"
@@ -2,8 +2,6 @@ import { forwardRef, Icon, IconProps } from 'chakra-ui-2--react';
2
2
 
3
3
  const Folder = forwardRef<IconProps, 'svg'>((props, ref) => (
4
4
  <Icon ref={ref} viewBox="0 0 16 16" {...props}>
5
- <path d="M12 6.5V8H4V6.5H12Z" fill="currentColor" />
6
- <path d="M9 9H4V10.5H9V9Z" fill="currentColor" />
7
5
  <path
8
6
  fillRule="evenodd"
9
7
  clipRule="evenodd"
@@ -1,7 +1,9 @@
1
1
  import { forwardRef, Icon, IconProps } from 'chakra-ui-2--react';
2
2
 
3
- const FolderEmpty = forwardRef<IconProps, 'svg'>((props, ref) => (
3
+ const Project = forwardRef<IconProps, 'svg'>((props, ref) => (
4
4
  <Icon ref={ref} viewBox="0 0 16 16" {...props}>
5
+ <path d="M12 6.5V8H4V6.5H12Z" fill="currentColor" />
6
+ <path d="M9 9H4V10.5H9V9Z" fill="currentColor" />
5
7
  <path
6
8
  fillRule="evenodd"
7
9
  clipRule="evenodd"
@@ -11,4 +13,4 @@ const FolderEmpty = forwardRef<IconProps, 'svg'>((props, ref) => (
11
13
  </Icon>
12
14
  ));
13
15
 
14
- export default FolderEmpty;
16
+ export default Project;
@@ -109,8 +109,8 @@ export { default as FileZip } from './FileZip';
109
109
  export { default as Filter } from './Filter';
110
110
  export { default as Flag } from './Flag';
111
111
  export { default as Flutter } from './Flutter';
112
+ export { default as Project } from './Project';
112
113
  export { default as Folder } from './Folder';
113
- export { default as FolderEmpty } from './FolderEmpty';
114
114
  export { default as Fullscreen } from './Fullscreen';
115
115
  export { default as FullscreenExit } from './FullscreenExit';
116
116
  export { default as Gauge } from './Gauge';
@@ -2,8 +2,6 @@ import { forwardRef, Icon, IconProps } from 'chakra-ui-2--react';
2
2
 
3
3
  const Folder = forwardRef<IconProps, 'svg'>((props, ref) => (
4
4
  <Icon ref={ref} viewBox="0 0 24 24" {...props}>
5
- <path d="M6 12V10H18V12H6Z" fill="currentColor" />
6
- <path d="M6 15.5H13V13.5H6V15.5Z" fill="currentColor" />
7
5
  <path
8
6
  fillRule="evenodd"
9
7
  clipRule="evenodd"
@@ -1,7 +1,9 @@
1
1
  import { forwardRef, Icon, IconProps } from 'chakra-ui-2--react';
2
2
 
3
- const FolderEmpty = forwardRef<IconProps, 'svg'>((props, ref) => (
3
+ const Project = forwardRef<IconProps, 'svg'>((props, ref) => (
4
4
  <Icon ref={ref} viewBox="0 0 24 24" {...props}>
5
+ <path d="M6 12V10H18V12H6Z" fill="currentColor" />
6
+ <path d="M6 15.5H13V13.5H6V15.5Z" fill="currentColor" />
5
7
  <path
6
8
  fillRule="evenodd"
7
9
  clipRule="evenodd"
@@ -11,4 +13,4 @@ const FolderEmpty = forwardRef<IconProps, 'svg'>((props, ref) => (
11
13
  </Icon>
12
14
  ));
13
15
 
14
- export default FolderEmpty;
16
+ export default Project;
@@ -107,8 +107,8 @@ export { default as FileZip } from './FileZip';
107
107
  export { default as Filter } from './Filter';
108
108
  export { default as Flag } from './Flag';
109
109
  export { default as Flutter } from './Flutter';
110
+ export { default as Project } from './Project';
110
111
  export { default as Folder } from './Folder';
111
- export { default as FolderEmpty } from './FolderEmpty';
112
112
  export { default as Fullscreen } from './Fullscreen';
113
113
  export { default as FullscreenExit } from './FullscreenExit';
114
114
  export { default as Gauge } from './Gauge';
@@ -62,7 +62,7 @@ const TreeViewNodeContent = memo(
62
62
  });
63
63
 
64
64
  const chevronIcon = isExpanded ? 'ChevronDown' : 'ChevronRight';
65
- const primaryIconName = isFilesVariant ? 'FolderEmpty' : chevronIcon;
65
+ const primaryIconName = isFilesVariant ? 'Folder' : chevronIcon;
66
66
 
67
67
  const showAncestorConnectors = isFilesVariant && level > 1;
68
68
  const showOwnConnector = isFilesVariant && isBranch && isExpanded;