@progressive-development/pd-page 0.0.22 → 0.0.23

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/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Progressive development page helper, teaser, menu, footer.",
4
4
  "license": "SEE LICENSE IN LICENSE",
5
5
  "author": "PD Progressive Development",
6
- "version": "0.0.22",
6
+ "version": "0.0.23",
7
7
  "main": "index.js",
8
8
  "module": "index.js",
9
9
  "scripts": {
package/src/PdFooter.js CHANGED
@@ -27,9 +27,7 @@ export class PdFooter extends LitElement {
27
27
  --my-height: var(--squi-teaser-height, 130px);
28
28
 
29
29
  --my-header-background-color: var(--squi-test, #084c61);
30
- --my-header-text-color: var(--squi-test, white);
31
-
32
- --my-background: var(--squi-teaser-image, url('/images/hero_1.svg'));
30
+ --my-header-text-color: var(--squi-test, white);
33
31
 
34
32
  --my-footer-background-color: var(--squi-test, #2bcadb);
35
33
 
package/src/PdMenu.js CHANGED
@@ -26,9 +26,7 @@ export class PdMenu extends LitElement {
26
26
  --my-height: var(--squi-teaser-height, 80px);
27
27
 
28
28
  --my-bg-color: var(--squi-menu-bg-color, #177e89);
29
- --my-header-text-color: var(--squi-test, white);
30
-
31
- --my-background: var(--squi-teaser-image, url('/images/hero_1.svg'));
29
+ --my-header-text-color: var(--squi-test, white);
32
30
 
33
31
  display: flex;
34
32
  background-color: var(--my-bg-color);
package/src/PdTeaser.js CHANGED
@@ -23,14 +23,7 @@ export class PdTeaser extends LitElement {
23
23
  return css`
24
24
  :host {
25
25
 
26
- --my-height: var(--squi-teaser-height, 420px);
27
-
28
- --my-header-background-color: var(--squi-test, #084c61);
29
- --my-header-text-color: var(--squi-test, white);
30
-
31
- --my-footer-background-color: var(--squi-test, #177e89);
32
-
33
- --my-background: var(--squi-teaser-image, url('/images/hero_1.svg'));
26
+ --my-height: var(--squi-teaser-height, 420px);
34
27
 
35
28
  display: block;
36
29
  background-color: #084c61;
@@ -20,7 +20,7 @@ export class PdTeaserContent extends LitElement {
20
20
  static get styles() {
21
21
  return css`
22
22
  :host {
23
- --my-background: var(--squi-teaser-image, url('/images/hero_1.svg'));
23
+ --my-background: var(--squi-teaser-image);
24
24
  --my-background-size: var(--squi-teaser-image-size, auto);
25
25
  --my-background-position: var(--squi-teaser-image-position, 100% 50%);
26
26