@atlaskit/progress-bar 4.0.11 → 4.0.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,17 @@
1
1
  # @atlaskit/progress-bar
2
2
 
3
+ ## 4.0.13
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 4.0.12
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+
3
15
  ## 4.0.11
4
16
 
5
17
  ### Patch Changes
@@ -563,7 +575,6 @@
563
575
 
564
576
  Remove namespace imports from React, ReactDom, and PropTypes- Updated dependencies
565
577
  [6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
566
-
567
578
  - @atlaskit/docs@8.3.2
568
579
  - @atlaskit/button@13.3.7
569
580
  - @atlaskit/theme@9.5.1
@@ -608,7 +619,6 @@
608
619
  - [patch][18dfac7332](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/18dfac7332):
609
620
 
610
621
  In this PR, we are:
611
-
612
622
  - Re-introducing dist build folders
613
623
  - Adding back cjs
614
624
  - Replacing es5 by cjs and es2015 by esm
@@ -629,11 +639,9 @@
629
639
  ## 0.2.0
630
640
 
631
641
  - [minor][06e6dd5731](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/06e6dd5731):
632
-
633
642
  - Initial release of Progress Bar component.
634
643
 
635
644
  ## 0.1.0
636
645
 
637
646
  - [minor][b2eb85b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b2eb85b):
638
-
639
647
  - Initial release of Progress Bar component.
@@ -1,4 +1,4 @@
1
- /* progress-bar.tsx generated by @compiled/babel-plugin v0.36.1 */
1
+ /* progress-bar.tsx generated by @compiled/babel-plugin v0.38.1 */
2
2
  "use strict";
3
3
 
4
4
  var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
@@ -1,4 +1,4 @@
1
- /* progress-bar.tsx generated by @compiled/babel-plugin v0.36.1 */
1
+ /* progress-bar.tsx generated by @compiled/babel-plugin v0.38.1 */
2
2
  import "./progress-bar.compiled.css";
3
3
  import { ax, ix } from "@compiled/react/runtime";
4
4
  import React from 'react';
@@ -1,4 +1,4 @@
1
- /* progress-bar.tsx generated by @compiled/babel-plugin v0.36.1 */
1
+ /* progress-bar.tsx generated by @compiled/babel-plugin v0.38.1 */
2
2
  import "./progress-bar.compiled.css";
3
3
  import { ax, ix } from "@compiled/react/runtime";
4
4
  import React from 'react';
package/offerings.json ADDED
@@ -0,0 +1,86 @@
1
+ [
2
+ {
3
+ "name": "ProgressBar",
4
+ "package": "@atlaskit/progress-bar",
5
+ "import": {
6
+ "name": "ProgressBar",
7
+ "package": "@atlaskit/progress-bar",
8
+ "type": "default"
9
+ },
10
+ "keywords": ["progress", "bar", "loading", "status", "completion", "indeterminate"],
11
+ "categories": ["loading"],
12
+ "shortDescription": "A progress bar communicates the status of a system process, showing completion percentage or indeterminate progress.",
13
+ "status": "general-availability",
14
+ "accessibilityGuidelines": [
15
+ "Provide appropriate ARIA labels for progress bars",
16
+ "Announce progress changes to screen readers",
17
+ "Use appropriate color contrast for visibility",
18
+ "Provide alternative text for progress status"
19
+ ],
20
+ "usageGuidelines": [
21
+ "Use for showing progress of known duration",
22
+ "Provide clear progress indicators",
23
+ "Use indeterminate state for unknown duration",
24
+ "Position progress bars prominently when active",
25
+ "Consider providing percentage or time estimates"
26
+ ],
27
+ "contentGuidelines": [
28
+ "Use clear, descriptive progress messages",
29
+ "Provide meaningful context for progress",
30
+ "Consider showing estimated time remaining",
31
+ "Use consistent progress terminology"
32
+ ],
33
+ "generativeInstructions": "./docs/ai/progress-bar-instructions.md",
34
+ "examples": ["./examples/ai/progress-bar.tsx"]
35
+ },
36
+ {
37
+ "name": "SuccessProgressBar",
38
+ "package": "@atlaskit/progress-bar",
39
+ "import": {
40
+ "name": "SuccessProgressBar",
41
+ "package": "@atlaskit/progress-bar",
42
+ "type": "named"
43
+ },
44
+ "keywords": ["progress", "bar", "success", "complete", "finished"],
45
+ "categories": ["loading"],
46
+ "shortDescription": "A progress bar variant that indicates successful completion of a process.",
47
+ "status": "general-availability",
48
+ "usageGuidelines": [
49
+ "Use to indicate successful completion",
50
+ "Show briefly before transitioning to next state",
51
+ "Use appropriate success styling",
52
+ "Consider providing success message"
53
+ ],
54
+ "contentGuidelines": [
55
+ "Use clear success messaging",
56
+ "Indicate what was completed successfully",
57
+ "Provide next steps if applicable"
58
+ ],
59
+ "examples": ["./examples/ai/success-progress-bar.tsx"]
60
+ },
61
+ {
62
+ "name": "TransparentProgressBar",
63
+ "package": "@atlaskit/progress-bar",
64
+ "import": {
65
+ "name": "TransparentProgressBar",
66
+ "package": "@atlaskit/progress-bar",
67
+ "type": "named"
68
+ },
69
+ "keywords": ["progress", "bar", "transparent", "overlay", "subtle"],
70
+ "categories": ["loading"],
71
+ "shortDescription": "A progress bar variant with transparent background for overlay contexts.",
72
+ "status": "general-availability",
73
+ "usageGuidelines": [
74
+ "Use in overlay or modal contexts",
75
+ "Ensure sufficient contrast with background",
76
+ "Use for subtle progress indication",
77
+ "Consider backdrop visibility"
78
+ ],
79
+ "contentGuidelines": [
80
+ "Ensure progress is visible against background",
81
+ "Use appropriate contrast for readability",
82
+ "Keep progress indication clear"
83
+ ],
84
+ "examples": ["./examples/ai/transparent-progress-bar.tsx"]
85
+ }
86
+ ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/progress-bar",
3
- "version": "4.0.11",
3
+ "version": "4.0.13",
4
4
  "description": "A progress bar communicates the status of a system process.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -24,10 +24,10 @@
24
24
  }
25
25
  },
26
26
  "dependencies": {
27
- "@atlaskit/theme": "^20.0.0",
28
- "@atlaskit/tokens": "^6.1.0",
27
+ "@atlaskit/theme": "^21.0.0",
28
+ "@atlaskit/tokens": "^7.0.0",
29
29
  "@babel/runtime": "^7.0.0",
30
- "@compiled/react": "^0.18.3"
30
+ "@compiled/react": "^0.18.6"
31
31
  },
32
32
  "peerDependencies": {
33
33
  "react": "^18.2.0"
@@ -36,7 +36,7 @@
36
36
  "@af/accessibility-testing": "workspace:^",
37
37
  "@af/integration-testing": "workspace:^",
38
38
  "@af/visual-regression": "workspace:^",
39
- "@atlaskit/docs": "^11.0.0",
39
+ "@atlaskit/docs": "^11.2.0",
40
40
  "@atlaskit/link": "^3.2.0",
41
41
  "@atlaskit/section-message": "^8.7.0",
42
42
  "@testing-library/react": "^13.4.0",