@instructure/ui-progress 10.6.1-snapshot-3 → 10.6.1-snapshot-5
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 +5 -2
- package/package.json +13 -13
- package/tsconfig.build.json +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,9 +3,12 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
## [10.6.1-snapshot-
|
|
6
|
+
## [10.6.1-snapshot-5](https://github.com/instructure/instructure-ui/compare/v10.6.0...v10.6.1-snapshot-5) (2024-11-21)
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **ui-progress,ui-tag:** remove onClick prop from Tag when callback is not provided. Fix Progress dependency mismatch (test-locator) ([de22f76](https://github.com/instructure/instructure-ui/commit/de22f76fd8fcdf6ef0a25788014da26f5fdfdd0e))
|
|
9
12
|
|
|
10
13
|
|
|
11
14
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui-progress",
|
|
3
|
-
"version": "10.6.1-snapshot-
|
|
3
|
+
"version": "10.6.1-snapshot-5",
|
|
4
4
|
"description": "Styled HTML <progress /> elements for showing completion of a task",
|
|
5
5
|
"author": "Instructure, Inc. Engineering and Product Design",
|
|
6
6
|
"module": "./es/index.js",
|
|
@@ -24,21 +24,21 @@
|
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@babel/runtime": "^7.25.6",
|
|
27
|
-
"@instructure/console": "10.6.1-snapshot-
|
|
28
|
-
"@instructure/emotion": "10.6.1-snapshot-
|
|
29
|
-
"@instructure/shared-types": "10.6.1-snapshot-
|
|
30
|
-
"@instructure/ui-a11y-content": "10.6.1-snapshot-
|
|
31
|
-
"@instructure/ui-color-utils": "10.6.1-snapshot-
|
|
32
|
-
"@instructure/ui-react-utils": "10.6.1-snapshot-
|
|
33
|
-
"@instructure/ui-testable": "10.6.1-snapshot-
|
|
34
|
-
"@instructure/ui-view": "10.6.1-snapshot-
|
|
27
|
+
"@instructure/console": "10.6.1-snapshot-5",
|
|
28
|
+
"@instructure/emotion": "10.6.1-snapshot-5",
|
|
29
|
+
"@instructure/shared-types": "10.6.1-snapshot-5",
|
|
30
|
+
"@instructure/ui-a11y-content": "10.6.1-snapshot-5",
|
|
31
|
+
"@instructure/ui-color-utils": "10.6.1-snapshot-5",
|
|
32
|
+
"@instructure/ui-react-utils": "10.6.1-snapshot-5",
|
|
33
|
+
"@instructure/ui-testable": "10.6.1-snapshot-5",
|
|
34
|
+
"@instructure/ui-view": "10.6.1-snapshot-5",
|
|
35
35
|
"prop-types": "^15.8.1"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@instructure/ui-axe-check": "10.6.1-snapshot-
|
|
39
|
-
"@instructure/ui-babel-preset": "10.6.1-snapshot-
|
|
40
|
-
"@instructure/ui-test-utils": "10.6.1-snapshot-
|
|
41
|
-
"@instructure/ui-themes": "10.6.1-snapshot-
|
|
38
|
+
"@instructure/ui-axe-check": "10.6.1-snapshot-5",
|
|
39
|
+
"@instructure/ui-babel-preset": "10.6.1-snapshot-5",
|
|
40
|
+
"@instructure/ui-test-utils": "10.6.1-snapshot-5",
|
|
41
|
+
"@instructure/ui-themes": "10.6.1-snapshot-5",
|
|
42
42
|
"@testing-library/jest-dom": "^6.4.6",
|
|
43
43
|
"@testing-library/react": "^16.0.1",
|
|
44
44
|
"vitest": "^2.1.1"
|
package/tsconfig.build.json
CHANGED
|
@@ -17,7 +17,6 @@
|
|
|
17
17
|
{ "path": "../ui-testable/tsconfig.build.json" },
|
|
18
18
|
{ "path": "../ui-view/tsconfig.build.json" },
|
|
19
19
|
{ "path": "../ui-babel-preset/tsconfig.build.json" },
|
|
20
|
-
{ "path": "../ui-test-locator/tsconfig.build.json" },
|
|
21
20
|
{ "path": "../ui-test-utils/tsconfig.build.json" },
|
|
22
21
|
{ "path": "../ui-themes/tsconfig.build.json" }
|
|
23
22
|
]
|