@atom-learning/components 2.12.1 → 2.12.2
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 -2
- package/dist/docs/NavigationMenu.mdx +2 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
## [2.12.
|
|
1
|
+
## [2.12.2](https://github.com/Atom-Learning/components/compare/v2.12.1...v2.12.2) (2022-11-10)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
### Bug Fixes
|
|
5
5
|
|
|
6
|
-
* navigation-menu
|
|
6
|
+
* navigation-menu mdx missing sign ([d8e2c9b](https://github.com/Atom-Learning/components/commit/d8e2c9b2d67cd6aa0cc77f664e4ef5c0bcbadb82))
|
|
7
7
|
|
|
8
8
|
# [1.4.0](https://github.com/Atom-Learning/components/compare/v1.3.0...v1.4.0) (2022-04-11)
|
|
9
9
|
|
|
@@ -89,10 +89,8 @@ In the below example the styling of `NavigationMenu.DropdownContent` has been ch
|
|
|
89
89
|
<NavigationMenu.DropdownItem href={`/theme/${item}`}>
|
|
90
90
|
<NavigationMenu.DropdownItemTitle>
|
|
91
91
|
{item}
|
|
92
|
-
</NavigationMenu.DropdownItemTitle
|
|
93
|
-
<Text>
|
|
94
|
-
This is some example text about {item}
|
|
95
|
-
</Text>
|
|
92
|
+
</NavigationMenu.DropdownItemTitle>
|
|
93
|
+
<Text>This is some example text about {item}</Text>
|
|
96
94
|
</NavigationMenu.DropdownItem>
|
|
97
95
|
))}
|
|
98
96
|
</NavigationMenu.DropdownContent>
|