@atlaskit/progress-indicator 9.5.12 → 9.5.13

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @atlaskit/progress-indicator
2
2
 
3
+ ## 9.5.13
4
+
5
+ ### Patch Changes
6
+
7
+ - [`4ae083a7e66`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4ae083a7e66) - Use `@af/accessibility-testing` for default jest-axe config and jest-axe import in accessibility testing.
8
+
3
9
  ## 9.5.12
4
10
 
5
11
  ### Patch Changes
@@ -41,6 +41,8 @@ var buttonStyles = (0, _react.css)({
41
41
  * A presentational indicator with no interactivity
42
42
  */
43
43
  var PresentationalIndicator = function PresentationalIndicator(props
44
+ // TODO: Remove role="presentation", since div's have no semantics anyway
45
+ // (DSP-11587)
44
46
  // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
45
47
  ) {
46
48
  return (0, _react.jsx)("div", (0, _extends2.default)({}, props, {
@@ -24,7 +24,7 @@ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj &&
24
24
  /** @jsx jsx */
25
25
 
26
26
  var packageName = "@atlaskit/progress-indicator";
27
- var packageVersion = "9.5.12";
27
+ var packageVersion = "9.5.13";
28
28
 
29
29
  /**
30
30
  * __ProgressDots__
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/progress-indicator",
3
- "version": "9.5.12",
3
+ "version": "9.5.13",
4
4
  "sideEffects": false
5
5
  }
@@ -34,6 +34,8 @@ const buttonStyles = css({
34
34
  * A presentational indicator with no interactivity
35
35
  */
36
36
  export const PresentationalIndicator = (props
37
+ // TODO: Remove role="presentation", since div's have no semantics anyway
38
+ // (DSP-11587)
37
39
  // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
38
40
  ) => jsx("div", _extends({}, props, {
39
41
  css: commonStyles,
@@ -11,7 +11,7 @@ import { getBgColor } from './appearances';
11
11
  import { progressIndicatorGapMap, sizes, varDotsMargin, varDotsSize } from './constants';
12
12
  import { ButtonIndicator, PresentationalIndicator } from './indicator';
13
13
  const packageName = "@atlaskit/progress-indicator";
14
- const packageVersion = "9.5.12";
14
+ const packageVersion = "9.5.13";
15
15
 
16
16
  /**
17
17
  * __ProgressDots__
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/progress-indicator",
3
- "version": "9.5.12",
3
+ "version": "9.5.13",
4
4
  "sideEffects": false
5
5
  }
@@ -34,6 +34,8 @@ var buttonStyles = css({
34
34
  * A presentational indicator with no interactivity
35
35
  */
36
36
  export var PresentationalIndicator = function PresentationalIndicator(props
37
+ // TODO: Remove role="presentation", since div's have no semantics anyway
38
+ // (DSP-11587)
37
39
  // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
38
40
  ) {
39
41
  return jsx("div", _extends({}, props, {
@@ -13,7 +13,7 @@ import { getBgColor } from './appearances';
13
13
  import { progressIndicatorGapMap, sizes, varDotsMargin, varDotsSize } from './constants';
14
14
  import { ButtonIndicator, PresentationalIndicator } from './indicator';
15
15
  var packageName = "@atlaskit/progress-indicator";
16
- var packageVersion = "9.5.12";
16
+ var packageVersion = "9.5.13";
17
17
 
18
18
  /**
19
19
  * __ProgressDots__
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/progress-indicator",
3
- "version": "9.5.12",
3
+ "version": "9.5.13",
4
4
  "sideEffects": false
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/progress-indicator",
3
- "version": "9.5.12",
3
+ "version": "9.5.13",
4
4
  "description": "A progress indicator shows the user where they are along the steps of a journey.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -46,6 +46,7 @@
46
46
  "react": "^16.8.0"
47
47
  },
48
48
  "devDependencies": {
49
+ "@af/accessibility-testing": "*",
49
50
  "@atlaskit/ssr": "*",
50
51
  "@atlaskit/visual-regression": "*",
51
52
  "@atlassian/atlassian-frontend-prettier-config-1.0.1": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.1",
@@ -86,4 +87,4 @@
86
87
  },
87
88
  "homepage": "https://atlassian.design/components/progress-indicator/",
88
89
  "prettier": "@atlassian/atlassian-frontend-prettier-config-1.0.1"
89
- }
90
+ }
@@ -1,42 +0,0 @@
1
- ## API Report File for "@atlaskit/progress-indicator"
2
-
3
- > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
4
-
5
- ```ts
6
-
7
- /// <reference types="react" />
8
-
9
- import { FC } from 'react';
10
- import type { UIAnalyticsEvent } from '@atlaskit/analytics-next';
11
-
12
- // @public (undocumented)
13
- type DotsAppearance = 'default' | 'help' | 'inverted' | 'primary';
14
-
15
- // @public (undocumented)
16
- export interface ProgressDotsProps {
17
- appearance?: DotsAppearance;
18
- ariaControls?: string;
19
- ariaLabel?: string;
20
- onSelect?: (eventData: {
21
- event: React.MouseEvent<HTMLButtonElement>;
22
- index: number;
23
- }, analyticsEvent: UIAnalyticsEvent) => void;
24
- selectedIndex: number;
25
- size?: Size;
26
- spacing?: Spacing;
27
- testId?: string;
28
- values: any[];
29
- }
30
-
31
- // @public
32
- export const ProgressIndicator: FC<ProgressDotsProps>;
33
-
34
- // @public (undocumented)
35
- type Size = 'default' | 'large' | 'small';
36
-
37
- // @public (undocumented)
38
- type Spacing = 'comfortable' | 'compact' | 'cozy';
39
-
40
- // (No @packageDocumentation comment for this package)
41
-
42
- ```