@wordpress/style-engine 1.7.0 → 1.9.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 +4 -0
- package/LICENSE.md +1 -1
- package/class-wp-style-engine.php +11 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/LICENSE.md
CHANGED
|
@@ -136,6 +136,17 @@ final class WP_Style_Engine {
|
|
|
136
136
|
),
|
|
137
137
|
),
|
|
138
138
|
),
|
|
139
|
+
'shadow' => array(
|
|
140
|
+
'shadow' => array(
|
|
141
|
+
'property_keys' => array(
|
|
142
|
+
'default' => 'box-shadow',
|
|
143
|
+
),
|
|
144
|
+
'path' => array( 'shadow' ),
|
|
145
|
+
'css_vars' => array(
|
|
146
|
+
'shadow' => '--wp--preset--shadow--$slug',
|
|
147
|
+
),
|
|
148
|
+
),
|
|
149
|
+
),
|
|
139
150
|
'dimensions' => array(
|
|
140
151
|
'minHeight' => array(
|
|
141
152
|
'property_keys' => array(
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wordpress/style-engine",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.9.0",
|
|
4
4
|
"description": "A suite of parsers and compilers for WordPress styles.",
|
|
5
5
|
"author": "The WordPress Contributors",
|
|
6
6
|
"license": "GPL-2.0-or-later",
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "cab6ebe2b4c5dbacfd753dcae4a2406559c4813c"
|
|
39
39
|
}
|