@instructure/ui-link 10.3.1-snapshot-11 → 10.4.1-snapshot-0
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 +9 -1
- package/package.json +16 -16
- package/src/Link/README.md +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,7 +3,15 @@
|
|
|
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
|
+
## [10.4.1-snapshot-0](https://github.com/instructure/instructure-ui/compare/v10.4.0...v10.4.1-snapshot-0) (2024-10-18)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @instructure/ui-link
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [10.4.0](https://github.com/instructure/instructure-ui/compare/v10.3.0...v10.4.0) (2024-10-16)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @instructure/ui-link
|
|
9
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui-link",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.4.1-snapshot-0",
|
|
4
4
|
"description": "A component for creating links",
|
|
5
5
|
"author": "Instructure, Inc. Engineering and Product Design",
|
|
6
6
|
"module": "./es/index.js",
|
|
@@ -24,24 +24,24 @@
|
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@babel/runtime": "^7.25.6",
|
|
27
|
-
"@instructure/console": "10.
|
|
28
|
-
"@instructure/emotion": "10.
|
|
29
|
-
"@instructure/shared-types": "10.
|
|
30
|
-
"@instructure/ui-a11y-utils": "10.
|
|
31
|
-
"@instructure/ui-color-utils": "10.
|
|
32
|
-
"@instructure/ui-dom-utils": "10.
|
|
33
|
-
"@instructure/ui-icons": "10.
|
|
34
|
-
"@instructure/ui-prop-types": "10.
|
|
35
|
-
"@instructure/ui-react-utils": "10.
|
|
36
|
-
"@instructure/ui-testable": "10.
|
|
37
|
-
"@instructure/ui-view": "10.
|
|
27
|
+
"@instructure/console": "10.4.1-snapshot-0",
|
|
28
|
+
"@instructure/emotion": "10.4.1-snapshot-0",
|
|
29
|
+
"@instructure/shared-types": "10.4.1-snapshot-0",
|
|
30
|
+
"@instructure/ui-a11y-utils": "10.4.1-snapshot-0",
|
|
31
|
+
"@instructure/ui-color-utils": "10.4.1-snapshot-0",
|
|
32
|
+
"@instructure/ui-dom-utils": "10.4.1-snapshot-0",
|
|
33
|
+
"@instructure/ui-icons": "10.4.1-snapshot-0",
|
|
34
|
+
"@instructure/ui-prop-types": "10.4.1-snapshot-0",
|
|
35
|
+
"@instructure/ui-react-utils": "10.4.1-snapshot-0",
|
|
36
|
+
"@instructure/ui-testable": "10.4.1-snapshot-0",
|
|
37
|
+
"@instructure/ui-view": "10.4.1-snapshot-0",
|
|
38
38
|
"prop-types": "^15.8.1"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@instructure/ui-axe-check": "10.
|
|
42
|
-
"@instructure/ui-babel-preset": "10.
|
|
43
|
-
"@instructure/ui-test-utils": "10.
|
|
44
|
-
"@instructure/ui-themes": "10.
|
|
41
|
+
"@instructure/ui-axe-check": "10.4.1-snapshot-0",
|
|
42
|
+
"@instructure/ui-babel-preset": "10.4.1-snapshot-0",
|
|
43
|
+
"@instructure/ui-test-utils": "10.4.1-snapshot-0",
|
|
44
|
+
"@instructure/ui-themes": "10.4.1-snapshot-0",
|
|
45
45
|
"@testing-library/jest-dom": "^6.4.5",
|
|
46
46
|
"@testing-library/react": "^16.0.1",
|
|
47
47
|
"@testing-library/user-event": "^14.5.2",
|
package/src/Link/README.md
CHANGED
|
@@ -72,7 +72,7 @@ type: example
|
|
|
72
72
|
|
|
73
73
|
### Using icons
|
|
74
74
|
|
|
75
|
-
Use the `renderIcon` property to put an [icon](#
|
|
75
|
+
Use the `renderIcon` property to put an [icon](#icons) inside a Link. To position the
|
|
76
76
|
icon _after_ the link text, change the `iconPlacement` property to `end`. You can also
|
|
77
77
|
render a Link with just an icon. Don't forget to add text for screen readers, though.
|
|
78
78
|
|