@instructure/ui-tag 11.0.2-snapshot-1 → 11.0.2-snapshot-3

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.0.2-snapshot-1](https://github.com/instructure/instructure-ui/compare/v11.0.1...v11.0.2-snapshot-1) (2025-10-17)
6
+ ## [11.0.2-snapshot-3](https://github.com/instructure/instructure-ui/compare/v11.0.1...v11.0.2-snapshot-3) (2025-10-21)
7
7
 
8
8
  **Note:** Version bump only for package @instructure/ui-tag
9
9
 
package/README.md CHANGED
@@ -10,7 +10,7 @@ A tag component.
10
10
 
11
11
  The `ui-tag` package contains the following:
12
12
 
13
- - [Tag](#Tag)
13
+ - [Tag](Tag)
14
14
 
15
15
  ### Installation
16
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/ui-tag",
3
- "version": "11.0.2-snapshot-1",
3
+ "version": "11.0.2-snapshot-3",
4
4
  "description": "A tag component",
5
5
  "author": "Instructure, Inc. Engineering and Product Design",
6
6
  "module": "./es/index.js",
@@ -24,19 +24,19 @@
24
24
  "license": "MIT",
25
25
  "dependencies": {
26
26
  "@babel/runtime": "^7.27.6",
27
- "@instructure/console": "11.0.2-snapshot-1",
28
- "@instructure/emotion": "11.0.2-snapshot-1",
29
- "@instructure/shared-types": "11.0.2-snapshot-1",
30
- "@instructure/ui-color-utils": "11.0.2-snapshot-1",
31
- "@instructure/ui-dom-utils": "11.0.2-snapshot-1",
32
- "@instructure/ui-icons": "11.0.2-snapshot-1",
33
- "@instructure/ui-react-utils": "11.0.2-snapshot-1",
34
- "@instructure/ui-view": "11.0.2-snapshot-1"
27
+ "@instructure/console": "11.0.2-snapshot-3",
28
+ "@instructure/emotion": "11.0.2-snapshot-3",
29
+ "@instructure/shared-types": "11.0.2-snapshot-3",
30
+ "@instructure/ui-color-utils": "11.0.2-snapshot-3",
31
+ "@instructure/ui-dom-utils": "11.0.2-snapshot-3",
32
+ "@instructure/ui-icons": "11.0.2-snapshot-3",
33
+ "@instructure/ui-react-utils": "11.0.2-snapshot-3",
34
+ "@instructure/ui-view": "11.0.2-snapshot-3"
35
35
  },
36
36
  "devDependencies": {
37
- "@instructure/ui-axe-check": "11.0.2-snapshot-1",
38
- "@instructure/ui-babel-preset": "11.0.2-snapshot-1",
39
- "@instructure/ui-themes": "11.0.2-snapshot-1",
37
+ "@instructure/ui-axe-check": "11.0.2-snapshot-3",
38
+ "@instructure/ui-babel-preset": "11.0.2-snapshot-3",
39
+ "@instructure/ui-themes": "11.0.2-snapshot-3",
40
40
  "@testing-library/jest-dom": "^6.6.3",
41
41
  "@testing-library/react": "15.0.7",
42
42
  "@testing-library/user-event": "^14.6.1",
package/src/Tag/README.md CHANGED
@@ -15,7 +15,7 @@ type: example
15
15
 
16
16
  When the `dismissible` prop is added to a clickable Tag, the button
17
17
  renders an X/close icon (the Tag should be dismissed via the `onClick`
18
- prop). When implementing dismissable tags, be sure to add [AccessibleContent](#AccessibleContent) to clarify that the tag is dismissible to screen readers.
18
+ prop). When implementing dismissable tags, be sure to add [AccessibleContent](AccessibleContent) to clarify that the tag is dismissible to screen readers.
19
19
 
20
20
  ```js
21
21
  ---