@caweb/webpack 1.3.10 → 1.3.12
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.txt
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@caweb/webpack",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.12",
|
|
4
4
|
"description": "CAWebPublishing Webpack Configuration",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
},
|
|
33
33
|
"homepage": "https://github.com/CAWebPublishing/webpack#readme",
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"webpack": "^5.97.
|
|
35
|
+
"webpack": "^5.97.1"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@caweb/a11y-webpack-plugin": "^1.0.9",
|
|
39
39
|
"@caweb/css-audit-webpack-plugin": "^1.0.12",
|
|
40
|
-
"@caweb/html-webpack-plugin": "^1.5.
|
|
40
|
+
"@caweb/html-webpack-plugin": "^1.5.13",
|
|
41
41
|
"@caweb/jshint-webpack-plugin": "^1.0.9"
|
|
42
42
|
}
|
|
43
43
|
}
|
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
v1.5.13
|
|
2
|
+
- Fixed issue with dropdown menu not scrolling in desktop mode
|
|
3
|
+
|
|
4
|
+
v1.5.12
|
|
5
|
+
- Restructured mobile controls to allow for menu to be scrollable
|
|
6
|
+
|
|
1
7
|
v1.5.11
|
|
2
8
|
- Added aria-labels to mobile open/close buttons
|
|
3
9
|
- Fixed issue with Footer nav links being centered when in mobile mode
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@caweb/html-webpack-plugin",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.13",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@caweb/html-webpack-plugin",
|
|
9
|
-
"version": "1.5.
|
|
9
|
+
"version": "1.5.13",
|
|
10
10
|
"license": "ISC",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@caweb/a11y-webpack-plugin": "^1.0.9",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<!-- Navigation -->
|
|
2
|
-
<div class="navigation border-bottom
|
|
2
|
+
<div class="navigation border-bottom">
|
|
3
3
|
<div class="container">
|
|
4
4
|
{{#if nav.header }}
|
|
5
5
|
<ul class="nav" aria-label="Main navigation">
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
<ul class="dropdown-menu" data-popper-placement="bottom-start">
|
|
11
11
|
{{#each this.sub }}
|
|
12
12
|
<li>
|
|
13
|
-
<a class="dropdown-item" href="{{ this.url }}">{{ this.label }}</a>
|
|
13
|
+
<a class="dropdown-item nav-link" href="{{ this.url }}">{{ this.label }}</a>
|
|
14
14
|
</li>
|
|
15
15
|
{{/each}}
|
|
16
16
|
</ul>
|