@bitrise/bitkit 13.157.1-alpha.0 → 13.159.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 +1 -1
- package/src/Components/Icons/16x16/index.ts +1 -3
- package/src/Components/Icons/24x24/index.ts +0 -2
- package/src/Components/LabeledData/LabeledData.tsx +3 -1
- package/src/Components/Icons/16x16/BuildstatusFailed.tsx +0 -14
- package/src/Components/Icons/16x16/BuildstatusFailedSolid.tsx +0 -14
- package/src/Components/Icons/24x24/BuildstatusFailed.tsx +0 -14
- package/src/Components/Icons/24x24/BuildstatusFailedSolid.tsx +0 -14
package/package.json
CHANGED
|
@@ -45,8 +45,7 @@ export { default as BuildCache } from './BuildCache';
|
|
|
45
45
|
export { default as BuildCacheSolid } from './BuildCacheSolid';
|
|
46
46
|
export { default as AbortCircle } from './AbortCircle';
|
|
47
47
|
export { default as AbortCircleFilled } from './AbortCircleFilled';
|
|
48
|
-
export { default as
|
|
49
|
-
export { default as BuildstatusFailedSolid } from './BuildstatusFailedSolid';
|
|
48
|
+
export { default as CrossCircleFilled } from './CrossCircleFilled';
|
|
50
49
|
export { default as DoubleCircle } from './DoubleCircle';
|
|
51
50
|
export { default as SpinnerPurpleDouble } from './SpinnerPurpleDouble';
|
|
52
51
|
export { default as Circle } from './Circle';
|
|
@@ -80,7 +79,6 @@ export { default as Cpu } from './Cpu';
|
|
|
80
79
|
export { default as Creditcard } from './Creditcard';
|
|
81
80
|
export { default as Credits } from './Credits';
|
|
82
81
|
export { default as CrossCircle } from './CrossCircle';
|
|
83
|
-
export { default as CrossCircleFilled } from './CrossCircleFilled';
|
|
84
82
|
export { default as Cycle } from './Cycle';
|
|
85
83
|
export { default as Dashboard } from './Dashboard';
|
|
86
84
|
export { default as DashboardFilled } from './DashboardFilled';
|
|
@@ -45,8 +45,6 @@ export { default as BuildCache } from './BuildCache';
|
|
|
45
45
|
export { default as BuildCacheSolid } from './BuildCacheSolid';
|
|
46
46
|
export { default as AbortCircle } from './AbortCircle';
|
|
47
47
|
export { default as AbortCircleFilled } from './AbortCircleFilled';
|
|
48
|
-
export { default as BuildstatusFailed } from './BuildstatusFailed';
|
|
49
|
-
export { default as BuildstatusFailedSolid } from './BuildstatusFailedSolid';
|
|
50
48
|
export { default as DoubleCircle } from './DoubleCircle';
|
|
51
49
|
export { default as SpinnerPurpleDouble } from './SpinnerPurpleDouble';
|
|
52
50
|
export { default as Circle } from './Circle';
|
|
@@ -8,6 +8,7 @@ import SkeletonBox from '../Skeleton/SkeletonBox';
|
|
|
8
8
|
|
|
9
9
|
type DataOrPlaceholder = { placeholder: string; data?: never } | { data: string; placeholder?: never };
|
|
10
10
|
export type LabeledDataProps = BoxProps & {
|
|
11
|
+
skeletonVariant?: 'single' | 'double';
|
|
11
12
|
as?: 'div' | 'dl';
|
|
12
13
|
isLoading?: boolean;
|
|
13
14
|
label: string;
|
|
@@ -22,6 +23,7 @@ export type LabeledDataProps = BoxProps & {
|
|
|
22
23
|
|
|
23
24
|
const LabeledData = ({
|
|
24
25
|
as = 'div',
|
|
26
|
+
skeletonVariant = 'double',
|
|
25
27
|
data,
|
|
26
28
|
placeholder,
|
|
27
29
|
isLoading = false,
|
|
@@ -97,7 +99,7 @@ const LabeledData = ({
|
|
|
97
99
|
{isLoading ? (
|
|
98
100
|
<Skeleton isActive display="flex" flexDirection="column" gap="4">
|
|
99
101
|
<SkeletonBox height={dataSkeletonHeight} width="120px" marginY={dataSkeletonPaddingY} />
|
|
100
|
-
<SkeletonBox height="14" width="120px" marginY="3" />
|
|
102
|
+
{skeletonVariant === 'double' && <SkeletonBox height="14" width="120px" marginY="3" />}
|
|
101
103
|
</Skeleton>
|
|
102
104
|
) : (
|
|
103
105
|
<>
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { forwardRef, Icon, IconProps } from '@chakra-ui/react';
|
|
2
|
-
|
|
3
|
-
const BuildstatusFailed = forwardRef<IconProps, 'svg'>((props, ref) => (
|
|
4
|
-
<Icon ref={ref} viewBox="0 0 16 16" {...props}>
|
|
5
|
-
<path
|
|
6
|
-
clipRule="evenodd"
|
|
7
|
-
d="M8 14.667c3.667 0 6.667-3 6.667-6.667s-3-6.667-6.667-6.667-6.667 3-6.667 6.667 3 6.667 6.667 6.667ZM8 16c-4.4 0-8-3.6-8-8s3.6-8 8-8 8 3.6 8 8-3.6 8-8 8Zm0-8.933L9.867 5.2l.933.933L8.933 8 10.8 9.867l-.933.933L8 8.933 6.133 10.8 5.2 9.867 7.067 8 5.2 6.133l.933-.933L8 7.067Z"
|
|
8
|
-
fill="currentColor"
|
|
9
|
-
fillRule="evenodd"
|
|
10
|
-
/>
|
|
11
|
-
</Icon>
|
|
12
|
-
));
|
|
13
|
-
|
|
14
|
-
export default BuildstatusFailed;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { forwardRef, Icon, IconProps } from '@chakra-ui/react';
|
|
2
|
-
|
|
3
|
-
const BuildstatusFailedSolid = forwardRef<IconProps, 'svg'>((props, ref) => (
|
|
4
|
-
<Icon ref={ref} viewBox="0 0 16 16" {...props}>
|
|
5
|
-
<path
|
|
6
|
-
clipRule="evenodd"
|
|
7
|
-
d="M0 8c0 4.4 3.6 8 8 8s8-3.6 8-8-3.6-8-8-8-8 3.6-8 8Zm6.133-2.8L8 7.067 9.867 5.2l.933.933L8.933 8 10.8 9.867l-.933.933L8 8.933 6.133 10.8 5.2 9.867 7.067 8 5.2 6.133l.933-.933Z"
|
|
8
|
-
fill="currentColor"
|
|
9
|
-
fillRule="evenodd"
|
|
10
|
-
/>
|
|
11
|
-
</Icon>
|
|
12
|
-
));
|
|
13
|
-
|
|
14
|
-
export default BuildstatusFailedSolid;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { forwardRef, Icon, IconProps } from '@chakra-ui/react';
|
|
2
|
-
|
|
3
|
-
const BuildstatusFailed = forwardRef<IconProps, 'svg'>((props, ref) => (
|
|
4
|
-
<Icon ref={ref} viewBox="0 0 24 24" {...props}>
|
|
5
|
-
<path
|
|
6
|
-
clipRule="evenodd"
|
|
7
|
-
d="M12 22c5.5 0 10-4.5 10-10S17.5 2 12 2 2 6.5 2 12s4.5 10 10 10Zm0 2C5.4 24 0 18.6 0 12S5.4 0 12 0s12 5.4 12 12-5.4 12-12 12Zm0-13.4 2.8-2.8 1.4 1.4-2.8 2.8 2.8 2.8-1.4 1.4-2.8-2.8-2.8 2.8-1.4-1.4 2.8-2.8-2.8-2.8 1.4-1.4 2.8 2.8Z"
|
|
8
|
-
fill="currentColor"
|
|
9
|
-
fillRule="evenodd"
|
|
10
|
-
/>
|
|
11
|
-
</Icon>
|
|
12
|
-
));
|
|
13
|
-
|
|
14
|
-
export default BuildstatusFailed;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { forwardRef, Icon, IconProps } from '@chakra-ui/react';
|
|
2
|
-
|
|
3
|
-
const BuildstatusFailedSolid = forwardRef<IconProps, 'svg'>((props, ref) => (
|
|
4
|
-
<Icon ref={ref} viewBox="0 0 24 24" {...props}>
|
|
5
|
-
<path
|
|
6
|
-
clipRule="evenodd"
|
|
7
|
-
d="M0 12c0 6.6 5.4 12 12 12s12-5.4 12-12S18.6 0 12 0 0 5.4 0 12Zm9.2-4.2 2.8 2.8 2.8-2.8 1.4 1.4-2.8 2.8 2.8 2.8-1.4 1.4-2.8-2.8-2.8 2.8-1.4-1.4 2.8-2.8-2.8-2.8 1.4-1.4Z"
|
|
8
|
-
fill="currentColor"
|
|
9
|
-
fillRule="evenodd"
|
|
10
|
-
/>
|
|
11
|
-
</Icon>
|
|
12
|
-
));
|
|
13
|
-
|
|
14
|
-
export default BuildstatusFailedSolid;
|