@instructure/ui-heading 10.16.3-snapshot--1 → 10.16.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 +1 -1
- package/package.json +12 -12
- package/src/Heading/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
|
-
## [10.16.3
|
|
6
|
+
## [10.16.3](https://github.com/instructure/instructure-ui/compare/v10.16.1...v10.16.3) (2025-04-30)
|
|
7
7
|
|
|
8
8
|
**Note:** Version bump only for package @instructure/ui-heading
|
|
9
9
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui-heading",
|
|
3
|
-
"version": "10.16.3
|
|
3
|
+
"version": "10.16.3",
|
|
4
4
|
"description": "A component for creating typographic headings",
|
|
5
5
|
"author": "Instructure, Inc. Engineering and Product Design",
|
|
6
6
|
"module": "./es/index.js",
|
|
@@ -24,20 +24,20 @@
|
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@babel/runtime": "^7.26.0",
|
|
27
|
-
"@instructure/console": "10.16.3
|
|
28
|
-
"@instructure/emotion": "10.16.3
|
|
29
|
-
"@instructure/shared-types": "10.16.3
|
|
30
|
-
"@instructure/ui-prop-types": "10.16.3
|
|
31
|
-
"@instructure/ui-react-utils": "10.16.3
|
|
32
|
-
"@instructure/ui-testable": "10.16.3
|
|
33
|
-
"@instructure/ui-view": "10.16.3
|
|
27
|
+
"@instructure/console": "10.16.3",
|
|
28
|
+
"@instructure/emotion": "10.16.3",
|
|
29
|
+
"@instructure/shared-types": "10.16.3",
|
|
30
|
+
"@instructure/ui-prop-types": "10.16.3",
|
|
31
|
+
"@instructure/ui-react-utils": "10.16.3",
|
|
32
|
+
"@instructure/ui-testable": "10.16.3",
|
|
33
|
+
"@instructure/ui-view": "10.16.3",
|
|
34
34
|
"prop-types": "^15.8.1"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@instructure/ui-axe-check": "10.16.3
|
|
38
|
-
"@instructure/ui-babel-preset": "10.16.3
|
|
39
|
-
"@instructure/ui-test-utils": "10.16.3
|
|
40
|
-
"@instructure/ui-themes": "10.16.3
|
|
37
|
+
"@instructure/ui-axe-check": "10.16.3",
|
|
38
|
+
"@instructure/ui-babel-preset": "10.16.3",
|
|
39
|
+
"@instructure/ui-test-utils": "10.16.3",
|
|
40
|
+
"@instructure/ui-themes": "10.16.3",
|
|
41
41
|
"@testing-library/jest-dom": "^6.6.3",
|
|
42
42
|
"@testing-library/react": "^16.0.1",
|
|
43
43
|
"vitest": "^2.1.8"
|
package/src/Heading/README.md
CHANGED
|
@@ -6,7 +6,7 @@ Heading is a component for creating typographic headings.
|
|
|
6
6
|
|
|
7
7
|
## Variant
|
|
8
8
|
|
|
9
|
-
Variant
|
|
9
|
+
Variant covers almost all use cases for headings on pages. Their name reflects the places they meant to be used. It sets the `level` prop and takes care of the style of the heading
|
|
10
10
|
We recommend using `variants` instead of the `level` (and `as`) props.
|
|
11
11
|
|
|
12
12
|
NOTE: when `variant` is set, `level` and `as` props are ignored
|