@instructure/ui-link 11.7.3-snapshot-3 → 11.7.3-snapshot-6

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
@@ -3,7 +3,7 @@
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
- ## [11.7.3-snapshot-3](https://github.com/instructure/instructure-ui/compare/v11.7.2...v11.7.3-snapshot-3) (2026-04-28)
6
+ ## [11.7.3-snapshot-6](https://github.com/instructure/instructure-ui/compare/v11.7.2...v11.7.3-snapshot-6) (2026-04-29)
7
7
 
8
8
  **Note:** Version bump only for package @instructure/ui-link
9
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/ui-link",
3
- "version": "11.7.3-snapshot-3",
3
+ "version": "11.7.3-snapshot-6",
4
4
  "description": "A component for creating links",
5
5
  "author": "Instructure, Inc. Engineering and Product Design",
6
6
  "module": "./es/index.js",
@@ -15,25 +15,25 @@
15
15
  "license": "MIT",
16
16
  "dependencies": {
17
17
  "@babel/runtime": "^7.27.6",
18
- "@instructure/emotion": "11.7.3-snapshot-3",
19
- "@instructure/shared-types": "11.7.3-snapshot-3",
20
- "@instructure/console": "11.7.3-snapshot-3",
21
- "@instructure/ui-color-utils": "11.7.3-snapshot-3",
22
- "@instructure/ui-a11y-utils": "11.7.3-snapshot-3",
23
- "@instructure/ui-dom-utils": "11.7.3-snapshot-3",
24
- "@instructure/ui-icons": "11.7.3-snapshot-3",
25
- "@instructure/ui-utils": "11.7.3-snapshot-3",
26
- "@instructure/ui-react-utils": "11.7.3-snapshot-3",
27
- "@instructure/ui-view": "11.7.3-snapshot-3"
18
+ "@instructure/console": "11.7.3-snapshot-6",
19
+ "@instructure/ui-a11y-utils": "11.7.3-snapshot-6",
20
+ "@instructure/emotion": "11.7.3-snapshot-6",
21
+ "@instructure/shared-types": "11.7.3-snapshot-6",
22
+ "@instructure/ui-color-utils": "11.7.3-snapshot-6",
23
+ "@instructure/ui-dom-utils": "11.7.3-snapshot-6",
24
+ "@instructure/ui-icons": "11.7.3-snapshot-6",
25
+ "@instructure/ui-react-utils": "11.7.3-snapshot-6",
26
+ "@instructure/ui-themes": "11.7.3-snapshot-6",
27
+ "@instructure/ui-utils": "11.7.3-snapshot-6",
28
+ "@instructure/ui-view": "11.7.3-snapshot-6"
28
29
  },
29
30
  "devDependencies": {
30
31
  "@testing-library/jest-dom": "^6.6.3",
31
32
  "@testing-library/react": "15.0.7",
32
33
  "@testing-library/user-event": "^14.6.1",
33
34
  "vitest": "^3.2.2",
34
- "@instructure/ui-axe-check": "11.7.3-snapshot-3",
35
- "@instructure/ui-babel-preset": "11.7.3-snapshot-3",
36
- "@instructure/ui-themes": "11.7.3-snapshot-3"
35
+ "@instructure/ui-axe-check": "11.7.3-snapshot-6",
36
+ "@instructure/ui-babel-preset": "11.7.3-snapshot-6"
37
37
  },
38
38
  "peerDependencies": {
39
39
  "react": ">=18 <=19"
@@ -26,7 +26,6 @@ import React from 'react'
26
26
  import type {
27
27
  ToProp,
28
28
  AsElementType,
29
- LinkTheme,
30
29
  OtherHTMLAttributes
31
30
  } from '@instructure/shared-types'
32
31
  import type {
@@ -34,6 +33,7 @@ import type {
34
33
  WithStyleProps,
35
34
  ComponentStyle
36
35
  } from '@instructure/emotion'
36
+ import type { NewComponentTypes } from '@instructure/ui-themes'
37
37
  import type { ViewOwnProps } from '@instructure/ui-view/latest'
38
38
  import { Renderable } from '@instructure/shared-types'
39
39
 
@@ -154,7 +154,7 @@ type LinkState = {
154
154
  }
155
155
 
156
156
  type LinkProps = LinkOwnProps &
157
- WithStyleProps<LinkTheme, LinkStyle> &
157
+ WithStyleProps<ReturnType<NewComponentTypes['Link']>, LinkStyle> &
158
158
  OtherHTMLAttributes<LinkOwnProps> &
159
159
  ToProp
160
160