@bitrise/bitkit 12.23.0 → 12.23.2

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": "12.23.0",
4
+ "version": "12.23.2",
5
5
  "repository": "git@github.com:bitrise-io/bitkit.git",
6
6
  "main": "src/index.ts",
7
7
  "license": "UNLICENSED",
@@ -36,7 +36,6 @@ export { default as BuildstatusLoading } from './BuildstatusLoading';
36
36
  export { default as BuildstatusNeverbuilt } from './BuildstatusNeverbuilt';
37
37
  export { default as BuildstatusProgressEggplant } from './BuildstatusProgressEggplant';
38
38
  export { default as BuildstatusProgressWhite } from './BuildstatusProgressWhite';
39
- export { default as BuildstatusSkipped } from './BuildStatusSkipped';
40
39
  export { default as BuildstatusSuccessfulSolid } from './BuildstatusSuccessfulSolid';
41
40
  export { default as BuildstatusSuccessful } from './BuildstatusSuccessful';
42
41
  export { default as Bulletpoint } from './Bulletpoint';
@@ -36,7 +36,6 @@ export { default as BuildstatusLoading } from './BuildstatusLoading';
36
36
  export { default as BuildstatusNeverbuilt } from './BuildstatusNeverbuilt';
37
37
  export { default as BuildstatusProgressEggplant } from './BuildstatusProgressEggplant';
38
38
  export { default as BuildstatusProgressWhite } from './BuildstatusProgressWhite';
39
- export { default as BuildstatusSkipped } from './BuildStatusSkipped';
40
39
  export { default as BuildstatusSuccessfulSolid } from './BuildstatusSuccessfulSolid';
41
40
  export { default as BuildstatusSuccessful } from './BuildstatusSuccessful';
42
41
  export { default as Bulletpoint } from './Bulletpoint';
@@ -34,6 +34,7 @@ export interface ToggleProps extends Omit<FormControlProps, 'label' | 'onBlur' |
34
34
  */
35
35
  const Toggle = forwardRef<ToggleProps, 'div'>((props, ref) => {
36
36
  const {
37
+ 'aria-label': ariaLabel,
37
38
  'data-testid': dataTestid,
38
39
  defaultChecked,
39
40
  errorText,
@@ -57,6 +58,7 @@ const Toggle = forwardRef<ToggleProps, 'div'>((props, ref) => {
57
58
  ref,
58
59
  };
59
60
  const switchProps = {
61
+ 'aria-label': ariaLabel,
60
62
  'data-testid': dataTestid,
61
63
  defaultChecked,
62
64
  id,
@@ -1,14 +0,0 @@
1
- import { Icon, IconProps, forwardRef } from '@chakra-ui/react';
2
-
3
- const BuildstatusSkipped = 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="M8.00011 14.6667C11.6667 14.6667 14.6667 11.6667 14.6667 8.00011C14.6667 4.33347 11.6667 1.3335 8.00011 1.3335C4.33347 1.3335 1.3335 4.33347 1.3335 8.00011C1.3335 11.6667 4.33347 14.6667 8.00011 14.6667ZM8.00011 16.0002C3.60005 16.0002 0 12.4002 0 8.00011C0 3.60005 3.60005 0 8.00011 0C12.4002 0 16.0002 3.60005 16.0002 8.00011C16.0002 12.4002 12.4002 16.0002 8.00011 16.0002ZM7.0573 8.00011L5.19537 6.13818L6.13818 5.19537L8.94292 8.00011L6.13818 10.8048L5.19537 9.86204L7.0573 8.00011ZM8.19537 6.13818L10.0573 8.00011L8.19537 9.86204L9.13818 10.8048L11.9429 8.00011L9.13818 5.19537L8.19537 6.13818Z"
9
- fill="currentColor"
10
- />
11
- </Icon>
12
- ));
13
-
14
- export default BuildstatusSkipped;
@@ -1,14 +0,0 @@
1
- import { Icon, IconProps, forwardRef } from '@chakra-ui/react';
2
-
3
- const BuildstatusSkipped = 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="M12.0002 22.0001C17.5001 22.0001 22.0001 17.5001 22.0001 12.0002C22.0001 6.50021 17.5001 2.00025 12.0002 2.00025C6.50021 2.00025 2.00025 6.50021 2.00025 12.0002C2.00025 17.5001 6.50021 22.0001 12.0002 22.0001ZM12.0002 24.0003C5.40007 24.0003 0 18.6003 0 12.0002C0 5.40007 5.40007 0 12.0002 0C18.6003 0 24.0003 5.40007 24.0003 12.0002C24.0003 18.6003 18.6003 24.0003 12.0002 24.0003ZM10.586 12.0002L7.79306 9.20727L9.20727 7.79306L13.4144 12.0002L9.20727 16.2073L7.79306 14.7931L10.586 12.0002ZM12.2931 9.20727L15.086 12.0002L12.2931 14.7931L13.7073 16.2073L17.9144 12.0002L13.7073 7.79306L12.2931 9.20727Z"
9
- fill="currentColor"
10
- />
11
- </Icon>
12
- ));
13
-
14
- export default BuildstatusSkipped;