@instructure/ui-avatar 11.7.2-snapshot-51 → 11.7.2-snapshot-54

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,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
- ## [11.7.2-snapshot-51](https://github.com/instructure/instructure-ui/compare/v11.7.1...v11.7.2-snapshot-51) (2026-04-21)
6
+ ## [11.7.2-snapshot-54](https://github.com/instructure/instructure-ui/compare/v11.7.1...v11.7.2-snapshot-54) (2026-04-23)
7
7
 
8
- **Note:** Version bump only for package @instructure/ui-avatar
8
+
9
+ ### Bug Fixes
10
+
11
+ * **many:** fix doc component previews, update dark theme text and code block styles, and replace old icons ([d4e48d3](https://github.com/instructure/instructure-ui/commit/d4e48d3f739decb13b76c863c8f01685f0788dd6))
9
12
 
10
13
 
11
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/ui-avatar",
3
- "version": "11.7.2-snapshot-51",
3
+ "version": "11.7.2-snapshot-54",
4
4
  "description": "An image or letters that represents a user.",
5
5
  "author": "Instructure, Inc. Engineering and Product Design",
6
6
  "module": "./es/index.js",
@@ -15,20 +15,20 @@
15
15
  "license": "MIT",
16
16
  "dependencies": {
17
17
  "@babel/runtime": "^7.27.6",
18
- "@instructure/emotion": "11.7.2-snapshot-51",
19
- "@instructure/ui-react-utils": "11.7.2-snapshot-51",
20
- "@instructure/shared-types": "11.7.2-snapshot-51",
21
- "@instructure/ui-icons": "11.7.2-snapshot-51",
22
- "@instructure/ui-view": "11.7.2-snapshot-51"
18
+ "@instructure/emotion": "11.7.2-snapshot-54",
19
+ "@instructure/ui-icons": "11.7.2-snapshot-54",
20
+ "@instructure/shared-types": "11.7.2-snapshot-54",
21
+ "@instructure/ui-view": "11.7.2-snapshot-54",
22
+ "@instructure/ui-react-utils": "11.7.2-snapshot-54"
23
23
  },
24
24
  "devDependencies": {
25
25
  "@testing-library/jest-dom": "^6.6.3",
26
26
  "@testing-library/react": "15.0.7",
27
27
  "vitest": "^3.2.2",
28
- "@instructure/ui-axe-check": "11.7.2-snapshot-51",
29
- "@instructure/ui-babel-preset": "11.7.2-snapshot-51",
30
- "@instructure/ui-color-utils": "11.7.2-snapshot-51",
31
- "@instructure/ui-themes": "11.7.2-snapshot-51"
28
+ "@instructure/ui-axe-check": "11.7.2-snapshot-54",
29
+ "@instructure/ui-color-utils": "11.7.2-snapshot-54",
30
+ "@instructure/ui-babel-preset": "11.7.2-snapshot-54",
31
+ "@instructure/ui-themes": "11.7.2-snapshot-54"
32
32
  },
33
33
  "peerDependencies": {
34
34
  "react": ">=18 <=19"
@@ -46,13 +46,13 @@ type: example
46
46
  readonly: true
47
47
  ---
48
48
  <View display="block" padding="small medium" background="primary">
49
- <Avatar size="xx-small" color="ai" name="AI Assistant" renderIcon={IconAiSolid} />
50
- <Avatar size="x-small" color="ai" name="AI Assistant" renderIcon={IconAiSolid} />
51
- <Avatar size="small" color="ai" name="AI Assistant" renderIcon={IconAiSolid} />
52
- <Avatar size="medium" color="ai" name="AI Assistant" renderIcon={IconAiSolid} />
53
- <Avatar size="large" color="ai" name="AI Assistant" renderIcon={IconAiSolid} />
54
- <Avatar size="x-large" color="ai" name="AI Assistant" renderIcon={IconAiSolid} />
55
- <Avatar size="xx-large" color="ai" name="AI Assistant" renderIcon={IconAiSolid} />
49
+ <Avatar size="xx-small" color="ai" name="AI Assistant" renderIcon={IgniteaiLogoInstUIIcon} />
50
+ <Avatar size="x-small" color="ai" name="AI Assistant" renderIcon={IgniteaiLogoInstUIIcon} />
51
+ <Avatar size="small" color="ai" name="AI Assistant" renderIcon={IgniteaiLogoInstUIIcon} />
52
+ <Avatar size="medium" color="ai" name="AI Assistant" renderIcon={IgniteaiLogoInstUIIcon} />
53
+ <Avatar size="large" color="ai" name="AI Assistant" renderIcon={IgniteaiLogoInstUIIcon} />
54
+ <Avatar size="x-large" color="ai" name="AI Assistant" renderIcon={IgniteaiLogoInstUIIcon} />
55
+ <Avatar size="xx-large" color="ai" name="AI Assistant" renderIcon={IgniteaiLogoInstUIIcon} />
56
56
  </View>
57
57
  ```
58
58