@blockquote-web-components/blockquote-dialog 1.4.0 → 1.4.2

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blockquote-web-components/blockquote-dialog",
3
- "version": "1.4.0",
3
+ "version": "1.4.2",
4
4
  "description": "Webcomponent blockquote-dialog following open-wc recommendations",
5
5
  "keywords": [
6
6
  "lit",
@@ -118,18 +118,18 @@
118
118
  ]
119
119
  },
120
120
  "dependencies": {
121
- "@blockquote-web-components/blockquote-directive-ariaidref-slot": "^1.3.0",
122
- "@blockquote/frontend-utilities": "^1.0.2",
121
+ "@blockquote-web-components/blockquote-directive-ariaidref-slot": "^1.3.2",
122
+ "@blockquote/frontend-utilities": "^1.1.0",
123
123
  "lit": "^3.3.0"
124
124
  },
125
125
  "devDependencies": {
126
- "@blockquote-web-components/blockquote-base-common-dev-dependencies": "^1.11.4",
127
- "@blockquote-web-components/blockquote-base-embedded-webview": "^1.13.0",
126
+ "@blockquote-web-components/blockquote-base-common-dev-dependencies": "^1.12.1",
127
+ "@blockquote-web-components/blockquote-base-embedded-webview": "^1.13.2",
128
128
  "@blockquote-web-components/blockquote-foundations-sass": "^1.1.6"
129
129
  },
130
130
  "publishConfig": {
131
131
  "access": "public"
132
132
  },
133
133
  "customElements": "custom-elements.json",
134
- "gitHead": "968fc2a0177a9f1ea3b55b124b007802f0b79aa3"
134
+ "gitHead": "e21572ce7ed04ce4de920cd60cf8d2fea027153a"
135
135
  }
@@ -32,7 +32,7 @@ export const styles = css`
32
32
 
33
33
  /* Transition the :backdrop when the dialog modal is promoted to the top layer */
34
34
  dialog::backdrop {
35
- background-color: rgba(120, 120, 120, 0);
35
+ background-color: rgb(120, 120, 120, 0);
36
36
  transition:
37
37
  display 190ms ease-in allow-discrete,
38
38
  overlay 190ms ease-in allow-discrete,
@@ -42,14 +42,14 @@ export const styles = css`
42
42
  }
43
43
 
44
44
  dialog[open]::backdrop {
45
- background-color: rgba(120, 120, 120, 0.25);
45
+ background-color: rgb(120, 120, 120, 0.25);
46
46
  }
47
47
 
48
48
  /* This starting-style rule cannot be nested inside the above selector
49
49
  because the nesting selector cannot represent pseudo-elements. */
50
50
  @starting-style {
51
51
  dialog[open]::backdrop {
52
- background-color: rgba(120, 120, 120, 0);
52
+ background-color: rgb(120, 120, 120, 0);
53
53
  }
54
54
  }
55
55
  `;