@instructure/ui-view 11.0.2-snapshot-4 → 11.0.2-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 +1 -1
- package/package.json +12 -12
- package/src/View/README.md +1 -1
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-
|
|
6
|
+
## [11.0.2-snapshot-6](https://github.com/instructure/instructure-ui/compare/v11.0.1...v11.0.2-snapshot-6) (2025-10-31)
|
|
7
7
|
|
|
8
8
|
**Note:** Version bump only for package @instructure/ui-view
|
|
9
9
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui-view",
|
|
3
|
-
"version": "11.0.2-snapshot-
|
|
3
|
+
"version": "11.0.2-snapshot-6",
|
|
4
4
|
"description": "A component for basic styles including spacing, sizing, borders, display, positioning, and focus states.",
|
|
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-
|
|
28
|
-
"@instructure/emotion": "11.0.2-snapshot-
|
|
29
|
-
"@instructure/shared-types": "11.0.2-snapshot-
|
|
30
|
-
"@instructure/ui-color-utils": "11.0.2-snapshot-
|
|
31
|
-
"@instructure/ui-dom-utils": "11.0.2-snapshot-
|
|
32
|
-
"@instructure/ui-i18n": "11.0.2-snapshot-
|
|
33
|
-
"@instructure/ui-position": "11.0.2-snapshot-
|
|
34
|
-
"@instructure/ui-react-utils": "11.0.2-snapshot-
|
|
27
|
+
"@instructure/console": "11.0.2-snapshot-6",
|
|
28
|
+
"@instructure/emotion": "11.0.2-snapshot-6",
|
|
29
|
+
"@instructure/shared-types": "11.0.2-snapshot-6",
|
|
30
|
+
"@instructure/ui-color-utils": "11.0.2-snapshot-6",
|
|
31
|
+
"@instructure/ui-dom-utils": "11.0.2-snapshot-6",
|
|
32
|
+
"@instructure/ui-i18n": "11.0.2-snapshot-6",
|
|
33
|
+
"@instructure/ui-position": "11.0.2-snapshot-6",
|
|
34
|
+
"@instructure/ui-react-utils": "11.0.2-snapshot-6"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@instructure/ui-axe-check": "11.0.2-snapshot-
|
|
38
|
-
"@instructure/ui-babel-preset": "11.0.2-snapshot-
|
|
39
|
-
"@instructure/ui-themes": "11.0.2-snapshot-
|
|
37
|
+
"@instructure/ui-axe-check": "11.0.2-snapshot-6",
|
|
38
|
+
"@instructure/ui-babel-preset": "11.0.2-snapshot-6",
|
|
39
|
+
"@instructure/ui-themes": "11.0.2-snapshot-6",
|
|
40
40
|
"@testing-library/jest-dom": "^6.6.3",
|
|
41
41
|
"@testing-library/react": "15.0.7",
|
|
42
42
|
"vitest": "^3.2.2"
|
package/src/View/README.md
CHANGED
|
@@ -435,7 +435,7 @@ type: example
|
|
|
435
435
|
</View>
|
|
436
436
|
<View focusWithin>
|
|
437
437
|
if the <code>focusWithin</code> prop is <code>true</code>, the View will display the focus ring if any of its descendants receives focus
|
|
438
|
-
<div
|
|
438
|
+
<div tabIndex="0" role="button" style={{outline: 'none'}}>Tab here to see the focus outline</div>
|
|
439
439
|
</View>
|
|
440
440
|
</Flex>
|
|
441
441
|
```
|