@instructure/ui-view 8.36.1-snapshot-4 → 8.36.1-snapshot-8
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 +13 -13
- package/src/ContextView/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
|
-
## [8.36.1-snapshot-
|
|
6
|
+
## [8.36.1-snapshot-8](https://github.com/instructure/instructure-ui/compare/v8.36.0...v8.36.1-snapshot-8) (2023-04-14)
|
|
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": "8.36.1-snapshot-
|
|
3
|
+
"version": "8.36.1-snapshot-8",
|
|
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,21 +24,21 @@
|
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@babel/runtime": "^7.20.13",
|
|
27
|
-
"@instructure/console": "8.36.1-snapshot-
|
|
28
|
-
"@instructure/emotion": "8.36.1-snapshot-
|
|
29
|
-
"@instructure/shared-types": "8.36.1-snapshot-
|
|
30
|
-
"@instructure/ui-color-utils": "8.36.1-snapshot-
|
|
31
|
-
"@instructure/ui-dom-utils": "8.36.1-snapshot-
|
|
32
|
-
"@instructure/ui-i18n": "8.36.1-snapshot-
|
|
33
|
-
"@instructure/ui-position": "8.36.1-snapshot-
|
|
34
|
-
"@instructure/ui-prop-types": "8.36.1-snapshot-
|
|
35
|
-
"@instructure/ui-react-utils": "8.36.1-snapshot-
|
|
27
|
+
"@instructure/console": "8.36.1-snapshot-8",
|
|
28
|
+
"@instructure/emotion": "8.36.1-snapshot-8",
|
|
29
|
+
"@instructure/shared-types": "8.36.1-snapshot-8",
|
|
30
|
+
"@instructure/ui-color-utils": "8.36.1-snapshot-8",
|
|
31
|
+
"@instructure/ui-dom-utils": "8.36.1-snapshot-8",
|
|
32
|
+
"@instructure/ui-i18n": "8.36.1-snapshot-8",
|
|
33
|
+
"@instructure/ui-position": "8.36.1-snapshot-8",
|
|
34
|
+
"@instructure/ui-prop-types": "8.36.1-snapshot-8",
|
|
35
|
+
"@instructure/ui-react-utils": "8.36.1-snapshot-8",
|
|
36
36
|
"prop-types": "^15.8.1"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@instructure/ui-babel-preset": "8.36.1-snapshot-
|
|
40
|
-
"@instructure/ui-test-utils": "8.36.1-snapshot-
|
|
41
|
-
"@instructure/ui-themes": "8.36.1-snapshot-
|
|
39
|
+
"@instructure/ui-babel-preset": "8.36.1-snapshot-8",
|
|
40
|
+
"@instructure/ui-test-utils": "8.36.1-snapshot-8",
|
|
41
|
+
"@instructure/ui-themes": "8.36.1-snapshot-8"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
|
44
44
|
"react": ">=16.8 <=18"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
describes: ContextView
|
|
3
3
|
---
|
|
4
|
-
`<ContextView/>` is a container that can be rendered inline in the document flow (vs as a [Popover](#Popover)) but with an arrow pointing to something. See [RangeInput](#RangeInput) for an example of how ContextView can be used to display contextual information in
|
|
4
|
+
`<ContextView/>` is a container that can be rendered inline in the document flow (vs as a [Popover](#Popover)) but with an arrow pointing to something. See [RangeInput](#RangeInput) for an example of how ContextView can be used to display contextual information in conjunction with another component. It is used internally in [Popover](#Popover).
|
|
5
5
|
|
|
6
6
|
- Defaults to no padding around its content. To add padding, use the `padding` prop.
|
|
7
7
|
|