@caweb/webpack 1.3.8 → 1.3.9

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
@@ -1,3 +1,6 @@
1
+ v1.3.9
2
+ - Updated npm packages
3
+
1
4
  v1.3.8
2
5
  - Updated npm packages
3
6
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@caweb/webpack",
3
- "version": "1.3.8",
3
+ "version": "1.3.9",
4
4
  "description": "CAWebPublishing Webpack Configuration",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -37,7 +37,7 @@
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.9",
40
+ "@caweb/html-webpack-plugin": "^1.5.10",
41
41
  "@caweb/jshint-webpack-plugin": "^1.0.9"
42
42
  }
43
43
  }
@@ -1,3 +1,6 @@
1
+ v1.5.10
2
+ - Fixed font size for dropdown menu item
3
+
1
4
  v1.5.9
2
5
  - Fixed issue with navigation alignment when using Dropdown
3
6
 
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@caweb/html-webpack-plugin",
3
- "version": "1.5.9",
3
+ "version": "1.5.10",
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",
9
+ "version": "1.5.10",
10
10
  "license": "ISC",
11
11
  "dependencies": {
12
12
  "@caweb/a11y-webpack-plugin": "^1.0.9",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@caweb/html-webpack-plugin",
3
- "version": "1.5.9",
3
+ "version": "1.5.10",
4
4
  "description": "CAWebPublishing Sample Page and Configurations",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -9,8 +9,8 @@
9
9
  <a class="nav-link dropdown-toggle" data-bs-toggle="dropdown" href="#" role="button" aria-expanded="false">{{ this.label }}</a>
10
10
  <ul class="dropdown-menu">
11
11
  {{#each this.sub }}
12
- <li class="nav-item">
13
- <a class="nav-link" href="{{ this.url }}">{{ this.label }}</a>
12
+ <li>
13
+ <a class="dropdown-item" href="{{ this.url }}">{{ this.label }}</a>
14
14
  </li>
15
15
  {{/each}}
16
16
  </ul>