@caweb/webpack 1.3.43 → 1.3.44

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 CHANGED
@@ -1,3 +1,6 @@
1
+ v1.3.44
2
+ - Updated npm packages
3
+
1
4
  v1.3.43
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.43",
3
+ "version": "1.3.44",
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.7.12",
40
+ "@caweb/html-webpack-plugin": "^1.7.13",
41
41
  "@caweb/jshint-webpack-plugin": "^2.0.1"
42
42
  }
43
43
  }
@@ -1,3 +1,6 @@
1
+ v1.7.13
2
+ - Added card-none styles
3
+
1
4
  v1.7.12
2
5
  - Added Link Description to sub navigation items
3
6
  - Fixed link description color
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@caweb/html-webpack-plugin",
3
- "version": "1.7.12",
3
+ "version": "1.7.13",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@caweb/html-webpack-plugin",
9
- "version": "1.7.12",
9
+ "version": "1.7.13",
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.7.12",
3
+ "version": "1.7.13",
4
4
  "description": "CAWebPublishing Sample Page and Configurations",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -2,6 +2,17 @@
2
2
  <h1>Panels &amp; Cards</h1>
3
3
 
4
4
  <h2>Panels</h2>
5
+ <div class="card card-none">
6
+ <div class="card-header center">
7
+ <h4 class="card-title"><span class="ca-gov-icon-share-twitter"></span>None</h4>
8
+ <div class="options">
9
+ <a href="http://adfa" class="btn btn-light" target="_blank">Read More</a>
10
+ </div>
11
+ </div>
12
+ <div class="card-body">
13
+ <p>Panel Body</p>
14
+ </div>
15
+ </div>
5
16
  <div class="card card-default">
6
17
  <div class="card-header">
7
18
  <h4 class="card-title"><span class="ca-gov-icon-share-twitter"></span>Default</h4>
@@ -44,37 +44,4 @@
44
44
  <a href="./components/typography.html" target="_blank">Typography</a>
45
45
  </li>
46
46
  </ul>
47
- <div class="card card-default">
48
- <div class="card-header">
49
- <h4 class="card-title"><span class="ca-gov-icon-share-twitter"></span>Default</h4>
50
- <div class="options">
51
- <a href="http://adfa" class="btn btn-secondary btn-light" target="_blank">Read More</a>
52
- </div>
53
- </div>
54
- <div class="card-body">
55
- <p>Panel Body</p>
56
- </div>
57
- </div>
58
- <div class="card card-standout">
59
- <div class="card-header centered">
60
- <h4 class="card-title"><span class="ca-gov-icon-share-twitter"></span>Standout</h4>
61
- <div class="options">
62
- <a href="http://adfa" class="btn btn-standout" target="_blank">Read More</a>
63
- </div>
64
- </div>
65
- <div class="card-body">
66
- <p>Panel Body</p>
67
- </div>
68
- </div>
69
- <div class="card card-standout highlight">
70
- <div class="card-header right">
71
- <h4 class="card-title"><span class="ca-gov-icon-share-twitter"></span>Standout Highlight</h4>
72
- <div class="options">
73
- <a href="http://adfa" class="btn btn-standout" target="_blank">Read More</a>
74
- </div>
75
- </div>
76
- <div class="card-body">
77
- <p>Panel Body</p>
78
- </div>
79
- </div>
80
47
  </div>