@atlaskit/progress-bar 2.0.0 → 2.0.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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @atlaskit/progress-bar
2
2
 
3
+ ## 2.0.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [#83116](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83116) [`8d4e99057fe0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8d4e99057fe0) - Upgrade Typescript from `4.9.5` to `5.4.2`
8
+
9
+ ## 2.0.1
10
+
11
+ ### Patch Changes
12
+
13
+ - [#69022](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/69022) [`395c74147990`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/395c74147990) - Migrate packages to use declarative entry points
14
+
3
15
  ## 2.0.0
4
16
 
5
17
  ### Major Changes
package/dist/cjs/types.js CHANGED
@@ -1,5 +1 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
1
+ "use strict";
@@ -1 +0,0 @@
1
- export {};
package/dist/esm/types.js CHANGED
@@ -1 +0,0 @@
1
- export {};
@@ -8,8 +8,8 @@ export interface CustomProgressBarProps {
8
8
  */
9
9
  isIndeterminate?: boolean;
10
10
  /**
11
- * Label associated with the progress bar,
12
- * read by screen readers.
11
+ * This is the descriptive label that's associated with the progress bar.
12
+ * Always include useful information on the current state of the progress bar so that people who use assistive technology can understand what the current state of the progress bar is.
13
13
  */
14
14
  ariaLabel?: string;
15
15
  /**
@@ -20,7 +20,7 @@ export interface CustomProgressBarProps {
20
20
  }
21
21
  export interface DefaultProgressBarProps extends CustomProgressBarProps {
22
22
  /**
23
- * Visual style of the progress bar.
23
+ * The visual style of the progress bar.
24
24
  */
25
25
  appearance?: 'default' | 'success' | 'inverse';
26
26
  }
@@ -8,8 +8,8 @@ export interface CustomProgressBarProps {
8
8
  */
9
9
  isIndeterminate?: boolean;
10
10
  /**
11
- * Label associated with the progress bar,
12
- * read by screen readers.
11
+ * This is the descriptive label that's associated with the progress bar.
12
+ * Always include useful information on the current state of the progress bar so that people who use assistive technology can understand what the current state of the progress bar is.
13
13
  */
14
14
  ariaLabel?: string;
15
15
  /**
@@ -20,7 +20,7 @@ export interface CustomProgressBarProps {
20
20
  }
21
21
  export interface DefaultProgressBarProps extends CustomProgressBarProps {
22
22
  /**
23
- * Visual style of the progress bar.
23
+ * The visual style of the progress bar.
24
24
  */
25
25
  appearance?: 'default' | 'success' | 'inverse';
26
26
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/progress-bar",
3
- "version": "2.0.0",
3
+ "version": "2.0.2",
4
4
  "description": "A progress bar communicates the status of a system process.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -14,9 +14,12 @@
14
14
  "types": "dist/types/index.d.ts",
15
15
  "sideEffects": false,
16
16
  "atlaskit:src": "src/index.tsx",
17
+ "af:exports": {
18
+ ".": "./src/index.tsx",
19
+ "./types": "./src/types.tsx"
20
+ },
17
21
  "atlassian": {
18
22
  "team": "Design System Team",
19
- "deprecatedAutoEntryPoints": true,
20
23
  "releaseModel": "continuous",
21
24
  "productPushConsumption": [
22
25
  "jira"
@@ -28,7 +31,7 @@
28
31
  },
29
32
  "dependencies": {
30
33
  "@atlaskit/theme": "^12.6.0",
31
- "@atlaskit/tokens": "^1.29.0",
34
+ "@atlaskit/tokens": "^1.42.0",
32
35
  "@babel/runtime": "^7.0.0",
33
36
  "@emotion/react": "^11.7.1"
34
37
  },
@@ -42,7 +45,7 @@
42
45
  "@atlassian/atlassian-frontend-prettier-config-1.0.1": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.1",
43
46
  "@testing-library/react": "^12.1.5",
44
47
  "react-dom": "^16.8.0",
45
- "typescript": "~4.9.5"
48
+ "typescript": "~5.4.2"
46
49
  },
47
50
  "keywords": [
48
51
  "atlaskit",
@@ -77,4 +80,4 @@
77
80
  },
78
81
  "homepage": "https://atlassian.design/components/progress-bar/",
79
82
  "prettier": "@atlassian/atlassian-frontend-prettier-config-1.0.1"
80
- }
83
+ }
@@ -6,7 +6,7 @@
6
6
  "sideEffects": false,
7
7
  "types": "../dist/types/types.d.ts",
8
8
  "typesVersions": {
9
- ">=4.5 <4.9": {
9
+ ">=4.5 <5.4": {
10
10
  "*": [
11
11
  "../dist/types-ts4.5/types.d.ts"
12
12
  ]