@instructure/emotion 11.7.2-snapshot-50 → 11.7.2-snapshot-52
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 +2 -1
- package/package.json +10 -10
- package/src/InstUISettingsProvider/README.md +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,12 +3,13 @@
|
|
|
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-
|
|
6
|
+
## [11.7.2-snapshot-52](https://github.com/instructure/instructure-ui/compare/v11.7.1...v11.7.2-snapshot-52) (2026-04-22)
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
### Bug Fixes
|
|
10
10
|
|
|
11
11
|
* **emotion:** fix getShortHandValue not trimming input string ([75eac6f](https://github.com/instructure/instructure-ui/commit/75eac6f122623fe4c7d750fde8739864402ecaaf))
|
|
12
|
+
* **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))
|
|
12
13
|
|
|
13
14
|
|
|
14
15
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/emotion",
|
|
3
|
-
"version": "11.7.2-snapshot-
|
|
3
|
+
"version": "11.7.2-snapshot-52",
|
|
4
4
|
"description": "A UI component library made by Instructure Inc.",
|
|
5
5
|
"author": "Instructure, Inc. Engineering and Product Design",
|
|
6
6
|
"module": "./es/index.js",
|
|
@@ -17,14 +17,14 @@
|
|
|
17
17
|
"@babel/runtime": "^7.27.6",
|
|
18
18
|
"@emotion/react": "^11",
|
|
19
19
|
"hoist-non-react-statics": "^3.3.2",
|
|
20
|
-
"@instructure/shared-types": "11.7.2-snapshot-
|
|
21
|
-
"@instructure/ui-color-utils": "11.7.2-snapshot-
|
|
22
|
-
"@instructure/ui-decorator": "11.7.2-snapshot-
|
|
23
|
-
"@instructure/
|
|
24
|
-
"@instructure/
|
|
25
|
-
"@instructure/ui-react-utils": "11.7.2-snapshot-
|
|
26
|
-
"@instructure/ui-
|
|
27
|
-
"@instructure/ui-
|
|
20
|
+
"@instructure/shared-types": "11.7.2-snapshot-52",
|
|
21
|
+
"@instructure/ui-color-utils": "11.7.2-snapshot-52",
|
|
22
|
+
"@instructure/ui-decorator": "11.7.2-snapshot-52",
|
|
23
|
+
"@instructure/ui-i18n": "11.7.2-snapshot-52",
|
|
24
|
+
"@instructure/console": "11.7.2-snapshot-52",
|
|
25
|
+
"@instructure/ui-react-utils": "11.7.2-snapshot-52",
|
|
26
|
+
"@instructure/ui-utils": "11.7.2-snapshot-52",
|
|
27
|
+
"@instructure/ui-themes": "11.7.2-snapshot-52"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@testing-library/jest-dom": "^6.6.3",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"@testing-library/user-event": "^14.6.1",
|
|
33
33
|
"react-dom": "18.3.1",
|
|
34
34
|
"vitest": "^3.2.2",
|
|
35
|
-
"@instructure/ui-babel-preset": "11.7.2-snapshot-
|
|
35
|
+
"@instructure/ui-babel-preset": "11.7.2-snapshot-52"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
38
|
"react": ">=18 <=19"
|
|
@@ -77,21 +77,21 @@ type: example
|
|
|
77
77
|
---
|
|
78
78
|
|
|
79
79
|
<InstUISettingsProvider dir="ltr">
|
|
80
|
-
<div>LTR text</div>
|
|
80
|
+
<div><Text>LTR text</Text></div>
|
|
81
81
|
<Badge count={105} countUntil={100} margin="small medium 0 0">
|
|
82
82
|
<Button>LTR Badge</Button>
|
|
83
83
|
</Badge>
|
|
84
84
|
|
|
85
85
|
<InstUISettingsProvider dir="rtl">
|
|
86
86
|
<View as="div">
|
|
87
|
-
<div>Nested RTL text</div>
|
|
87
|
+
<div><Text>Nested RTL text</Text></div>
|
|
88
88
|
<Badge count={105} countUntil={100} margin="small medium 0 0">
|
|
89
89
|
<Button>Nested RTL Badge</Button>
|
|
90
90
|
</Badge>
|
|
91
91
|
</View>
|
|
92
92
|
</InstUISettingsProvider>
|
|
93
93
|
|
|
94
|
-
<div>LTR text</div>
|
|
95
|
-
<div>LTR text</div>
|
|
94
|
+
<div><Text>LTR text</Text></div>
|
|
95
|
+
<div><Text>LTR text</Text></div>
|
|
96
96
|
</InstUISettingsProvider>
|
|
97
97
|
```
|