volto-dropdownmenu 2.4.3 → 3.0.0
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 +3 -3
- package/README.md +4 -2
- package/babel.config.js +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -4,11 +4,11 @@ All notable changes to this project will be documented in this file. Dates are d
|
|
|
4
4
|
|
|
5
5
|
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
6
6
|
|
|
7
|
-
#### [
|
|
8
|
-
|
|
9
|
-
> 31 August 2022
|
|
7
|
+
#### [v3.0.0](https://github.com/collective/volto-dropdownmenu/compare/v2.4.3...v3.0.0)
|
|
10
8
|
|
|
9
|
+
- refactor: upgraded dependencies and babel config for volto 16 [`#27`](https://github.com/collective/volto-dropdownmenu/pull/27)
|
|
11
10
|
- fix: a11y handle dropdown navigation [`67e97c1`](https://github.com/collective/volto-dropdownmenu/commit/67e97c1947e6a392e82c3104b5797a9c7680812f)
|
|
11
|
+
- Release 2.4.3 [`3e30ff8`](https://github.com/collective/volto-dropdownmenu/commit/3e30ff8c11ff10c3408c72c3a39728714e76f5ba)
|
|
12
12
|
- chore: rollback 2.4.3 release [`07b437b`](https://github.com/collective/volto-dropdownmenu/commit/07b437b365aaabc5a05e4d7adb7086f50186b3bc)
|
|
13
13
|
|
|
14
14
|
#### [v2.4.3](https://github.com/collective/volto-dropdownmenu/compare/v2.4.2...v2.4.3)
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# volto-dropdownmenu
|
|
2
2
|
|
|
3
|
-
Volto addon for a customizable dropdown menu.
|
|
3
|
+
Volto addon for a customizable dropdown menu.
|
|
4
4
|
Intended to be used with [collective.volto.dropdownmenu](https://github.com/collective/collective.volto.dropdownmenu)
|
|
5
5
|
|
|
6
6
|
To be used with mrs-developer, see [Volto docs](https://docs.voltocms.com/customizing/add-ons/) for further usage informations.
|
|
@@ -9,7 +9,9 @@ Created with [voltocli](https://github.com/nzambello/voltocli).
|
|
|
9
9
|
|
|
10
10
|
## Usage
|
|
11
11
|
|
|
12
|
-
> If you
|
|
12
|
+
> If you are using Volto < 16, then use [v2.4.3](https://github.com/collective/volto-dropdownmenu/tree/v2.4.3)
|
|
13
|
+
>
|
|
14
|
+
> If you are using Volto < 12, then use [v1.3.0](https://github.com/collective/volto-dropdownmenu/tree/v1.3.0)
|
|
13
15
|
|
|
14
16
|
Simply load the addon in your project, then edit the configuration in `/controlpanel/dropdown-menu-settings`.
|
|
15
17
|
Example configuration to be saved in Plone [here](./menuConfigurationExample.json).
|
package/babel.config.js
CHANGED
package/package.json
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "volto-dropdownmenu",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"description": "Volto addon for a customizable dropdown menu",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"repository": "https://github.com/collective/volto-dropdownmenu.git",
|
|
7
7
|
"author": "collective",
|
|
8
8
|
"license": "MIT",
|
|
9
9
|
"devDependencies": {
|
|
10
|
-
"
|
|
10
|
+
"@plone/scripts": "^2.0.0",
|
|
11
|
+
"release-it": "^14.10.1"
|
|
11
12
|
},
|
|
12
13
|
"scripts": {
|
|
13
14
|
"i18n": "rm -rf build/messages && NODE_ENV=production i18n --addon",
|
|
14
15
|
"release": "release-it"
|
|
15
16
|
},
|
|
16
17
|
"dependencies": {
|
|
17
|
-
"react-outside-click-handler": "1.3.0"
|
|
18
|
-
"@plone/scripts": "*"
|
|
18
|
+
"react-outside-click-handler": "1.3.0"
|
|
19
19
|
},
|
|
20
20
|
"peerDependencies": {
|
|
21
|
-
"@plone/volto": ">=
|
|
21
|
+
"@plone/volto": ">=16.0.0-alpha.38"
|
|
22
22
|
}
|
|
23
23
|
}
|