@wordpress/base-styles 5.4.0 → 5.5.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
+ ## 5.5.0 (2024-08-07)
6
+
5
7
  ## 5.4.0 (2024-07-24)
6
8
 
7
9
  ## 5.3.0 (2024-07-10)
package/_animations.scss CHANGED
@@ -3,3 +3,8 @@
3
3
  animation-fill-mode: forwards;
4
4
  @include reduce-motion("animation");
5
5
  }
6
+
7
+ @mixin editor-canvas-resize-animation() {
8
+ transition: all 0.5s cubic-bezier(0.65, 0, 0.45, 1);
9
+ @include reduce-motion("transition");
10
+ }
package/_mixins.scss CHANGED
@@ -162,22 +162,6 @@
162
162
  }
163
163
  }
164
164
 
165
- @mixin placeholder-style() {
166
- border-radius: $radius-block-ui;
167
-
168
- &::before {
169
- content: "";
170
- position: absolute;
171
- top: 0;
172
- right: 0;
173
- bottom: 0;
174
- left: 0;
175
- pointer-events: none;
176
- background: currentColor;
177
- opacity: 0.1;
178
- }
179
- }
180
-
181
165
  /**
182
166
  * Allows users to opt-out of animations via OS-level preferences.
183
167
  */
package/_variables.scss CHANGED
@@ -22,7 +22,6 @@ $text-editor-font-size: 15px;
22
22
  $editor-line-height: 1.8;
23
23
  $mobile-text-min-font-size: 16px; // Any font size below 16px will cause Mobile Safari to "zoom in".
24
24
 
25
-
26
25
  /**
27
26
  * Grid System.
28
27
  * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
@@ -40,6 +39,17 @@ $grid-unit-60: 6 * $grid-unit; // 48px
40
39
  $grid-unit-70: 7 * $grid-unit; // 56px
41
40
  $grid-unit-80: 8 * $grid-unit; // 64px
42
41
 
42
+ /**
43
+ * Radius scale.
44
+ */
45
+
46
+ $radius-x-small: 1px; // Applied to elements like buttons nested within primitives like inputs.
47
+ $radius-small: 2px; // Applied to most primitives.
48
+ $radius-medium: 4px; // Applied to containers with smaller padding.
49
+ $radius-large: 8px; // Applied to containers with larger padding.
50
+ $radius-full: 9999px; // For lozenges.
51
+ $radius-round: 50%; // For circles and ovals.
52
+
43
53
  /**
44
54
  * Dimensions.
45
55
  */
@@ -80,7 +90,7 @@ $sidebar-width: 280px;
80
90
  $content-width: 840px;
81
91
  $wide-content-width: 1100px;
82
92
  $widget-area-width: 700px;
83
-
93
+ $secondary-sidebar-width: 350px;
84
94
 
85
95
  /**
86
96
  * Block & Editor UI.
@@ -91,13 +101,12 @@ $border-width: 1px;
91
101
  $border-width-focus-fallback: 2px; // This exists as a fallback, and is ideally overridden by var(--wp-admin-border-width-focus) unless in some SASS math cases.
92
102
  $border-width-tab: 1.5px;
93
103
  $helptext-font-size: 12px;
94
- $radius-round: 50%;
95
- $radius-block-ui: 2px;
96
104
  $radio-input-size: 16px;
97
105
  $radio-input-size-sm: 24px; // Width & height for small viewports.
98
106
 
99
107
  // Deprecated, please avoid using these.
100
108
  $block-padding: 14px; // Used to define space between block footprint and surrouding borders.
109
+ $radius-block-ui: $radius-small;
101
110
 
102
111
 
103
112
  /**
package/_z-index.scss CHANGED
@@ -208,6 +208,9 @@ $z-layers: (
208
208
  // Ensure checkbox + actions don't overlap table header
209
209
  ".dataviews-view-table thead": 1,
210
210
 
211
+ // Ensure selection checkbox stays above the preview field.
212
+ ".dataviews-view-grid__card .dataviews-selection-checkbox": 1,
213
+
211
214
  // Ensure quick actions toolbar appear above pagination
212
215
  ".dataviews-bulk-actions-toolbar": 2,
213
216
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/base-styles",
3
- "version": "5.4.0",
3
+ "version": "5.5.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",
@@ -27,5 +27,5 @@
27
27
  "publishConfig": {
28
28
  "access": "public"
29
29
  },
30
- "gitHead": "363edb39b8dda8727f652e42cbb8497732693ed2"
30
+ "gitHead": "c3101ab024e2bfc85d525c6d247e0d57cafc9fd9"
31
31
  }