@wordpress/base-styles 4.46.0 → 4.47.0

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
@@ -2,6 +2,8 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 4.47.0 (2024-04-19)
6
+
5
7
  ## 4.46.0 (2024-04-03)
6
8
 
7
9
  ## 4.45.0 (2024-03-21)
@@ -5,5 +5,7 @@
5
5
  @include admin-scheme(#007cba);
6
6
  --wp-block-synced-color: #7a00df;
7
7
  --wp-block-synced-color--rgb: #{hex-to-rgb(#7a00df)};
8
- --wp-bound-block-color: #9747ff;
8
+ // This CSS variable is not used in Gutenberg project,
9
+ // but is maintained for backwards compatibility.
10
+ --wp-bound-block-color: var(--wp-block-synced-color);
9
11
  }
package/_z-index.scss CHANGED
@@ -130,6 +130,7 @@ $z-layers: (
130
130
  ".block-editor-block-rename-modal": 1000001,
131
131
  ".edit-site-list__rename-modal": 1000001,
132
132
  ".dataviews-action-modal": 1000001,
133
+ ".editor-action-modal": 1000001,
133
134
  ".editor-post-template__swap-template-modal": 1000001,
134
135
  ".edit-site-template-panel__replace-template-modal": 1000001,
135
136
 
@@ -190,7 +191,6 @@ $z-layers: (
190
191
  // Site editor layout
191
192
  ".edit-site-layout__header-container": 4,
192
193
  ".edit-site-layout__hub": 3,
193
- ".edit-site-layout__header": 2,
194
194
  ".edit-site-page-header": 2,
195
195
  ".edit-site-page-content": 1,
196
196
  ".edit-site-patterns__header": 2,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/base-styles",
3
- "version": "4.46.0",
3
+ "version": "4.47.0",
4
4
  "description": "Base SCSS utilities and variables for WordPress.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -23,5 +23,5 @@
23
23
  "publishConfig": {
24
24
  "access": "public"
25
25
  },
26
- "gitHead": "ac2b13783c28f959770cf029a797a712f59e1958"
26
+ "gitHead": "280403b4c1cf6cc2c55a6c4d56f9ef91145e4191"
27
27
  }